summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-01-14 22:33:43 +0000
committerJabiertxof <jtx@jtx>2017-01-14 22:33:43 +0000
commitb9df198f666e6efc79a603d2d0bf276c8ab1d6b4 (patch)
tree82d31550313a81c746bf6cce75a87827911a3709
parentUpdate to trunk (diff)
parent[Bug #1654892] Few typos in Calligraphy tutorial. (diff)
downloadinkscape-b9df198f666e6efc79a603d2d0bf276c8ab1d6b4.tar.gz
inkscape-b9df198f666e6efc79a603d2d0bf276c8ab1d6b4.zip
Update to trunk
(bzr r15295.1.62)
-rw-r--r--CMakeLists.txt11
-rw-r--r--mingwenv.cmake3
-rw-r--r--po/inkscape.pot1448
-rw-r--r--share/examples/animated-clock.svg613
-rw-r--r--share/examples/blend_modes.svg5607
-rw-r--r--share/examples/car.svgzbin94796 -> 109486 bytes
-rw-r--r--share/examples/eastern-motive-P4G.svg1262
-rw-r--r--share/examples/flowsample.svg105
-rw-r--r--share/examples/gallardo.svgzbin57648 -> 63720 bytes
-rw-r--r--share/examples/gradient.svg2272
-rw-r--r--share/examples/lighting_filters.svg235
-rw-r--r--share/examples/live-path-effects-gears.svg295
-rw-r--r--share/examples/live-path-effects-pathalongpath.svg693
-rw-r--r--share/examples/markers.svg1169
-rw-r--r--share/examples/replace-hue.svg1063
-rw-r--r--share/examples/rope-3D.svg550
-rw-r--r--share/examples/stars.svgzbin29779 -> 34173 bytes
-rw-r--r--share/examples/tesselation-P3.svg2084
-rw-r--r--share/examples/text-on-path.svg417
-rwxr-xr-xshare/extensions/draw_from_triangle.py19
-rwxr-xr-xshare/extensions/interp.py4
-rwxr-xr-xshare/extensions/plotter.py2
-rw-r--r--share/tutorials/tutorial-calligraphy.be.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.de.svg522
-rw-r--r--share/tutorials/tutorial-calligraphy.el.svg392
-rw-r--r--share/tutorials/tutorial-calligraphy.es.svg426
-rw-r--r--share/tutorials/tutorial-calligraphy.eu.svg358
-rw-r--r--share/tutorials/tutorial-calligraphy.fa.svg308
-rw-r--r--share/tutorials/tutorial-calligraphy.fr.svg484
-rw-r--r--share/tutorials/tutorial-calligraphy.hu.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.id.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.ja.svg662
-rw-r--r--share/tutorials/tutorial-calligraphy.nl.svg598
-rw-r--r--share/tutorials/tutorial-calligraphy.pl.svg682
-rw-r--r--share/tutorials/tutorial-calligraphy.pt.svg550
-rw-r--r--share/tutorials/tutorial-calligraphy.pt_BR.svg682
-rw-r--r--share/tutorials/tutorial-calligraphy.ru.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.sk.svg530
-rw-r--r--share/tutorials/tutorial-calligraphy.sl.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.svg308
-rw-r--r--share/tutorials/tutorial-calligraphy.vi.svg624
-rw-r--r--share/tutorials/tutorial-calligraphy.zh_TW.svg654
-rw-r--r--src/color-profile.cpp2
-rw-r--r--src/display/cairo-utils.cpp2
-rw-r--r--src/display/snap-indicator.cpp4
-rw-r--r--src/file.cpp64
-rw-r--r--src/inkscape.cpp2
-rw-r--r--src/io/sys.cpp2
-rw-r--r--src/live_effects/lpe-transform_2pts.cpp14
-rw-r--r--src/live_effects/lpe-transform_2pts.h2
-rw-r--r--src/live_effects/parameter/originalpath.cpp2
-rw-r--r--src/live_effects/parameter/originalpatharray.cpp2
-rw-r--r--src/sp-image.cpp2
-rw-r--r--src/ui/dialog/align-and-distribute.cpp4
-rw-r--r--src/ui/dialog/filedialogimpl-gtkmm.cpp2
-rw-r--r--src/ui/widget/registered-widget.h2
56 files changed, 11608 insertions, 17250 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 612423ef0..92e650b26 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -76,8 +76,15 @@ include(CMakeScripts/ConfigPaths.cmake) # Installation Paths
# -----------------------------------------------------------------------------
# Test Harness
# -----------------------------------------------------------------------------
-set(GMOCK_DIR "${CMAKE_SOURCE_DIR}/gtest/gmock-1.7.0"
- CACHE PATH "The path to the GoogleMock test framework.")
+if(NOT GMOCK_DIR)
+ find_path(GMOCK_DIR
+ NAMES src/gmock.cc
+ PATHS "$ENV{GMOCK_DIR}"
+ "/usr/src/googletest/googlemock"
+ "/usr/src/gmock"
+ "${CMAKE_SOURCE_DIR}/gtest/gmock-1.7.0"
+ )
+endif(NOT GMOCK_DIR)
if(EXISTS "${GMOCK_DIR}" AND IS_DIRECTORY "${GMOCK_DIR}")
set(GMOCK_PRESENT ON)
diff --git a/mingwenv.cmake b/mingwenv.cmake
index df6131a16..99b50a6bf 100644
--- a/mingwenv.cmake
+++ b/mingwenv.cmake
@@ -101,6 +101,9 @@ set(HAVE_MINGW ON)
if(EXISTS "${MINGW_PATH}/mingw32")
set(HAVE_MINGW64 OFF)
set(MINGW_ARCH mingw32)
+elseif(EXISTS "${MINGW_PATH}/i686-w64-mingw32")
+ set(HAVE_MINGW64 OFF)
+ set(MINGW_ARCH i686-w64-mingw32)
elseif(EXISTS "${MINGW_PATH}/x86_64-w64-mingw32")
set(HAVE_MINGW64 ON)
set(MINGW_ARCH x86_64-w64-mingw32)
diff --git a/po/inkscape.pot b/po/inkscape.pot
index 596dedecc..7c30110c4 100644
--- a/po/inkscape.pot
+++ b/po/inkscape.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2016-12-30 20:28+0000\n"
+"POT-Creation-Date: 2017-01-10 09:57+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3331,1044 +3331,1044 @@ msgstr ""
msgid "Old paint (bitmap)"
msgstr ""
-#. Symbols: AigaSymbols.svg
+#. Symbols: LogicSymbols.svg
#: ../share/symbols/symbols.h:2
msgctxt "Symbol"
-msgid "AIGA Symbol Signs"
+msgid "Logic Symbols"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:3 ../share/symbols/symbols.h:4
-#: ../share/symbols/symbols.h:281 ../share/symbols/symbols.h:282
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:3
msgctxt "Symbol"
-msgid "Telephone"
+msgid "Xnor Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:5 ../share/symbols/symbols.h:6
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:4
msgctxt "Symbol"
-msgid "Mail"
+msgid "Xor Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:7 ../share/symbols/symbols.h:8
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:5
msgctxt "Symbol"
-msgid "Currency Exchange"
+msgid "Nor Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:9 ../share/symbols/symbols.h:10
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:6
msgctxt "Symbol"
-msgid "Currency Exchange - Euro"
+msgid "Or Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:11 ../share/symbols/symbols.h:12
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:7
msgctxt "Symbol"
-msgid "Cashier"
+msgid "Nand Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:13 ../share/symbols/symbols.h:14
-#: ../share/symbols/symbols.h:213 ../share/symbols/symbols.h:214
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:8
msgctxt "Symbol"
-msgid "First Aid"
+msgid "And Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:15 ../share/symbols/symbols.h:16
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:9
msgctxt "Symbol"
-msgid "Lost and Found"
+msgid "Buffer"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:17 ../share/symbols/symbols.h:18
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:10
msgctxt "Symbol"
-msgid "Coat Check"
+msgid "Not Gate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:19 ../share/symbols/symbols.h:20
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:11
msgctxt "Symbol"
-msgid "Baggage Lockers"
+msgid "Buffer Small"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:21 ../share/symbols/symbols.h:22
+#. Symbols: LogicSymbols.svg
+#: ../share/symbols/symbols.h:12
msgctxt "Symbol"
-msgid "Escalator"
+msgid "Not Gate Small"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:23 ../share/symbols/symbols.h:24
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:13
msgctxt "Symbol"
-msgid "Escalator Down"
+msgid "Flow Chart Shapes"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:25 ../share/symbols/symbols.h:26
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:14
msgctxt "Symbol"
-msgid "Escalator Up"
+msgid "Process"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:27 ../share/symbols/symbols.h:28
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:15
msgctxt "Symbol"
-msgid "Stairs"
+msgid "Input/Output"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:29 ../share/symbols/symbols.h:30
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:16
msgctxt "Symbol"
-msgid "Stairs Down"
+msgid "Document"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:31 ../share/symbols/symbols.h:32
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:17
msgctxt "Symbol"
-msgid "Stairs Up"
+msgid "Manual Operation"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:33 ../share/symbols/symbols.h:34
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:18
msgctxt "Symbol"
-msgid "Elevator"
+msgid "Preparation"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:35 ../share/symbols/symbols.h:36
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:19
msgctxt "Symbol"
-msgid "Toilets - Men"
+msgid "Merge"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:37 ../share/symbols/symbols.h:38
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:20
msgctxt "Symbol"
-msgid "Toilets - Women"
+msgid "Decision"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:39 ../share/symbols/symbols.h:40
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:21
msgctxt "Symbol"
-msgid "Toilets"
+msgid "Magnetic Tape"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:41 ../share/symbols/symbols.h:42
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:22
msgctxt "Symbol"
-msgid "Nursery"
+msgid "Display"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:43 ../share/symbols/symbols.h:44
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:23
msgctxt "Symbol"
-msgid "Drinking Fountain"
+msgid "Auxiliary Operation"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:45 ../share/symbols/symbols.h:46
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:24
msgctxt "Symbol"
-msgid "Waiting Room"
+msgid "Manual Input"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:47 ../share/symbols/symbols.h:48
-#: ../share/symbols/symbols.h:231 ../share/symbols/symbols.h:232
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:25
msgctxt "Symbol"
-msgid "Information"
+msgid "Extract"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:49 ../share/symbols/symbols.h:50
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:26
msgctxt "Symbol"
-msgid "Hotel Information"
+msgid "Terminal/Interrupt"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:51 ../share/symbols/symbols.h:52
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:27
msgctxt "Symbol"
-msgid "Air Transportation"
+msgid "Punched Card"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:53 ../share/symbols/symbols.h:54
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:28
msgctxt "Symbol"
-msgid "Heliport"
+msgid "Punch Tape"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:55 ../share/symbols/symbols.h:56
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:29
msgctxt "Symbol"
-msgid "Taxi"
+msgid "Online Storage"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:57 ../share/symbols/symbols.h:58
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:30
msgctxt "Symbol"
-msgid "Bus"
+msgid "Keying"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:59 ../share/symbols/symbols.h:60
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:31
msgctxt "Symbol"
-msgid "Ground Transportation"
+msgid "Sort"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:61 ../share/symbols/symbols.h:62
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:32
msgctxt "Symbol"
-msgid "Rail Transportation"
+msgid "Connector"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:63 ../share/symbols/symbols.h:64
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:33
msgctxt "Symbol"
-msgid "Water Transportation"
+msgid "Off-Page Connector"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:65 ../share/symbols/symbols.h:66
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:34
msgctxt "Symbol"
-msgid "Car Rental"
+msgid "Transmittal Tape"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:67 ../share/symbols/symbols.h:68
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:35
msgctxt "Symbol"
-msgid "Restaurant"
+msgid "Communication Link"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:69 ../share/symbols/symbols.h:70
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:36
msgctxt "Symbol"
-msgid "Coffeeshop"
+msgid "Collate"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:71 ../share/symbols/symbols.h:72
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:37
msgctxt "Symbol"
-msgid "Bar"
+msgid "Comment/Annotation"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:73 ../share/symbols/symbols.h:74
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:38
msgctxt "Symbol"
-msgid "Shops"
+msgid "Core"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:75 ../share/symbols/symbols.h:76
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:39
msgctxt "Symbol"
-msgid "Barber Shop - Beauty Salon"
+msgid "Predefined Process"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:77 ../share/symbols/symbols.h:78
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:40
msgctxt "Symbol"
-msgid "Barber Shop"
+msgid "Magnetic Disk (Database)"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:79 ../share/symbols/symbols.h:80
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:41
msgctxt "Symbol"
-msgid "Beauty Salon"
+msgid "Magnetic Drum (Direct Access)"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:81 ../share/symbols/symbols.h:82
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:42
msgctxt "Symbol"
-msgid "Ticket Purchase"
+msgid "Offline Storage"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:83 ../share/symbols/symbols.h:84
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:43
msgctxt "Symbol"
-msgid "Baggage Check In"
+msgid "Logical Or"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:85 ../share/symbols/symbols.h:86
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:44
msgctxt "Symbol"
-msgid "Baggage Claim"
+msgid "Logical And"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:87 ../share/symbols/symbols.h:88
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:45
msgctxt "Symbol"
-msgid "Customs"
+msgid "Delay"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:89 ../share/symbols/symbols.h:90
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:46
msgctxt "Symbol"
-msgid "Immigration"
+msgid "Loop Limit Begin"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:91 ../share/symbols/symbols.h:92
+#. Symbols: FlowSymbols.svg
+#: ../share/symbols/symbols.h:47
msgctxt "Symbol"
-msgid "Departing Flights"
+msgid "Loop Limit End"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:93 ../share/symbols/symbols.h:94
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:48
msgctxt "Symbol"
-msgid "Arriving Flights"
+msgid "Word Balloons"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:95 ../share/symbols/symbols.h:96
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:49
msgctxt "Symbol"
-msgid "Smoking"
+msgid "Thought Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:97 ../share/symbols/symbols.h:98
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:50
msgctxt "Symbol"
-msgid "No Smoking"
+msgid "Dream Speaking"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:99 ../share/symbols/symbols.h:100
-#: ../share/symbols/symbols.h:245 ../share/symbols/symbols.h:246
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:51
msgctxt "Symbol"
-msgid "Parking"
+msgid "Rounded Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:101 ../share/symbols/symbols.h:102
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:52
msgctxt "Symbol"
-msgid "No Parking"
+msgid "Squared Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:103 ../share/symbols/symbols.h:104
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:53
msgctxt "Symbol"
-msgid "No Dogs"
+msgid "Over the Phone"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:105 ../share/symbols/symbols.h:106
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:54
msgctxt "Symbol"
-msgid "No Entry"
+msgid "Hip Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:107 ../share/symbols/symbols.h:108
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:55
msgctxt "Symbol"
-msgid "Exit"
+msgid "Circle Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:109 ../share/symbols/symbols.h:110
+#. Symbols: BalloonSymbols.svg
+#: ../share/symbols/symbols.h:56
msgctxt "Symbol"
-msgid "Fire Extinguisher"
+msgid "Exclaim Balloon"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:111 ../share/symbols/symbols.h:112
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:57
msgctxt "Symbol"
-msgid "Right Arrow"
+msgid "United States National Park Service Map Symbols"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:113 ../share/symbols/symbols.h:114
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:58 ../share/symbols/symbols.h:59
msgctxt "Symbol"
-msgid "Forward and Right Arrow"
+msgid "Airport"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:115 ../share/symbols/symbols.h:116
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:60 ../share/symbols/symbols.h:61
msgctxt "Symbol"
-msgid "Up Arrow"
+msgid "Amphitheatre"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:117 ../share/symbols/symbols.h:118
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:62 ../share/symbols/symbols.h:63
msgctxt "Symbol"
-msgid "Forward and Left Arrow"
+msgid "Bicycle Trail"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:119 ../share/symbols/symbols.h:120
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:64 ../share/symbols/symbols.h:65
msgctxt "Symbol"
-msgid "Left Arrow"
+msgid "Boat Launch"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:121 ../share/symbols/symbols.h:122
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:66 ../share/symbols/symbols.h:67
msgctxt "Symbol"
-msgid "Left and Down Arrow"
+msgid "Boat Tour"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:123 ../share/symbols/symbols.h:124
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:68 ../share/symbols/symbols.h:69
msgctxt "Symbol"
-msgid "Down Arrow"
+msgid "Bus Stop"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:125 ../share/symbols/symbols.h:126
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:70 ../share/symbols/symbols.h:71
msgctxt "Symbol"
-msgid "Right and Down Arrow"
+msgid "Campfire"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:127 ../share/symbols/symbols.h:128
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:72 ../share/symbols/symbols.h:73
msgctxt "Symbol"
-msgid "NPS Wheelchair Accessible - 1996"
+msgid "Campground"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:129 ../share/symbols/symbols.h:130
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:74 ../share/symbols/symbols.h:75
msgctxt "Symbol"
-msgid "NPS Wheelchair Accessible"
+msgid "CanoeAccess"
msgstr ""
-#. Symbols: AigaSymbols.svg
-#: ../share/symbols/symbols.h:131 ../share/symbols/symbols.h:132
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:76 ../share/symbols/symbols.h:77
msgctxt "Symbol"
-msgid "New Wheelchair Accessible"
+msgid "Crosscountry Ski Trail"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:133
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:78 ../share/symbols/symbols.h:79
msgctxt "Symbol"
-msgid "Word Balloons"
+msgid "Downhill Skiing"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:134
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:80 ../share/symbols/symbols.h:81
msgctxt "Symbol"
-msgid "Thought Balloon"
+msgid "Drinking Water"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:135
+#. Symbols: MapSymbolsNPS.svg
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:82 ../share/symbols/symbols.h:83
+#: ../share/symbols/symbols.h:172 ../share/symbols/symbols.h:173
msgctxt "Symbol"
-msgid "Dream Speaking"
+msgid "First Aid"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:136
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:84 ../share/symbols/symbols.h:85
msgctxt "Symbol"
-msgid "Rounded Balloon"
+msgid "Fishing"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:137
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:86 ../share/symbols/symbols.h:87
msgctxt "Symbol"
-msgid "Squared Balloon"
+msgid "Food Service"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:138
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:88 ../share/symbols/symbols.h:89
msgctxt "Symbol"
-msgid "Over the Phone"
+msgid "Four Wheel Drive Road"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:139
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:90 ../share/symbols/symbols.h:91
msgctxt "Symbol"
-msgid "Hip Balloon"
+msgid "Gas Station"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:140
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:92 ../share/symbols/symbols.h:93
msgctxt "Symbol"
-msgid "Circle Balloon"
+msgid "Golfing"
msgstr ""
-#. Symbols: BalloonSymbols.svg
-#: ../share/symbols/symbols.h:141
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:94 ../share/symbols/symbols.h:95
msgctxt "Symbol"
-msgid "Exclaim Balloon"
+msgid "Horseback Riding"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:142
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:96 ../share/symbols/symbols.h:97
msgctxt "Symbol"
-msgid "Flow Chart Shapes"
+msgid "Hospital"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:143
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:98 ../share/symbols/symbols.h:99
msgctxt "Symbol"
-msgid "Process"
+msgid "Ice Skating"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:144
+#. Symbols: MapSymbolsNPS.svg
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:100 ../share/symbols/symbols.h:101
+#: ../share/symbols/symbols.h:206 ../share/symbols/symbols.h:207
msgctxt "Symbol"
-msgid "Input/Output"
+msgid "Information"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:145
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:102 ../share/symbols/symbols.h:103
msgctxt "Symbol"
-msgid "Document"
+msgid "Litter Receptacle"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:146
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:104 ../share/symbols/symbols.h:105
msgctxt "Symbol"
-msgid "Manual Operation"
+msgid "Lodging"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:147
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:106 ../share/symbols/symbols.h:107
msgctxt "Symbol"
-msgid "Preparation"
+msgid "Marina"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:148
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:108 ../share/symbols/symbols.h:109
msgctxt "Symbol"
-msgid "Merge"
+msgid "Motorbike Trail"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:149
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:110 ../share/symbols/symbols.h:111
msgctxt "Symbol"
-msgid "Decision"
+msgid "Radiator Water"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:150
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:112 ../share/symbols/symbols.h:113
msgctxt "Symbol"
-msgid "Magnetic Tape"
+msgid "Recycling"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:151
+#. Symbols: MapSymbolsNPS.svg
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:114 ../share/symbols/symbols.h:115
+#: ../share/symbols/symbols.h:258 ../share/symbols/symbols.h:259
msgctxt "Symbol"
-msgid "Display"
+msgid "Parking"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:152
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:116 ../share/symbols/symbols.h:117
msgctxt "Symbol"
-msgid "Auxiliary Operation"
+msgid "Pets On Leash"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:153
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:118 ../share/symbols/symbols.h:119
msgctxt "Symbol"
-msgid "Manual Input"
+msgid "Picnic Area"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:154
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:120 ../share/symbols/symbols.h:121
msgctxt "Symbol"
-msgid "Extract"
+msgid "Post Office"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:155
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:122 ../share/symbols/symbols.h:123
msgctxt "Symbol"
-msgid "Terminal/Interrupt"
+msgid "Ranger Station"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:156
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:124 ../share/symbols/symbols.h:125
msgctxt "Symbol"
-msgid "Punched Card"
+msgid "RV Campground"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:157
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:126 ../share/symbols/symbols.h:127
msgctxt "Symbol"
-msgid "Punch Tape"
+msgid "Restrooms"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:158
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:128 ../share/symbols/symbols.h:129
msgctxt "Symbol"
-msgid "Online Storage"
+msgid "Sailing"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:159
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:130 ../share/symbols/symbols.h:131
msgctxt "Symbol"
-msgid "Keying"
+msgid "Sanitary Disposal Station"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:160
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:132 ../share/symbols/symbols.h:133
msgctxt "Symbol"
-msgid "Sort"
+msgid "Scuba Diving"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:161
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:134 ../share/symbols/symbols.h:135
msgctxt "Symbol"
-msgid "Connector"
+msgid "Self Guided Trail"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:162
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:136 ../share/symbols/symbols.h:137
msgctxt "Symbol"
-msgid "Off-Page Connector"
+msgid "Shelter"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:163
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:138 ../share/symbols/symbols.h:139
msgctxt "Symbol"
-msgid "Transmittal Tape"
+msgid "Showers"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:164
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:140 ../share/symbols/symbols.h:141
msgctxt "Symbol"
-msgid "Communication Link"
+msgid "Sledding"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:165
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:142 ../share/symbols/symbols.h:143
msgctxt "Symbol"
-msgid "Collate"
+msgid "SnowmobileTrail"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:166
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:144 ../share/symbols/symbols.h:145
msgctxt "Symbol"
-msgid "Comment/Annotation"
+msgid "Stable"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:167
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:146 ../share/symbols/symbols.h:147
msgctxt "Symbol"
-msgid "Core"
+msgid "Store"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:168
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:148 ../share/symbols/symbols.h:149
msgctxt "Symbol"
-msgid "Predefined Process"
+msgid "Swimming"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:169
+#. Symbols: MapSymbolsNPS.svg
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:150 ../share/symbols/symbols.h:151
+#: ../share/symbols/symbols.h:162 ../share/symbols/symbols.h:163
msgctxt "Symbol"
-msgid "Magnetic Disk (Database)"
+msgid "Telephone"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:170
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:152 ../share/symbols/symbols.h:153
msgctxt "Symbol"
-msgid "Magnetic Drum (Direct Access)"
+msgid "Emergency Telephone"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:171
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:154 ../share/symbols/symbols.h:155
msgctxt "Symbol"
-msgid "Offline Storage"
+msgid "Trailhead"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:172
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:156 ../share/symbols/symbols.h:157
msgctxt "Symbol"
-msgid "Logical Or"
+msgid "Wheelchair Accessible"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:173
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:158 ../share/symbols/symbols.h:159
msgctxt "Symbol"
-msgid "Logical And"
+msgid "Wind Surfing"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:174
+#. Symbols: MapSymbolsNPS.svg
+#: ../share/symbols/symbols.h:160
msgctxt "Symbol"
-msgid "Delay"
+msgid "Blank"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:175
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:161
msgctxt "Symbol"
-msgid "Loop Limit Begin"
+msgid "AIGA Symbol Signs"
msgstr ""
-#. Symbols: FlowSymbols.svg
-#: ../share/symbols/symbols.h:176
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:164 ../share/symbols/symbols.h:165
msgctxt "Symbol"
-msgid "Loop Limit End"
+msgid "Mail"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:177
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:166 ../share/symbols/symbols.h:167
msgctxt "Symbol"
-msgid "Logic Symbols"
+msgid "Currency Exchange"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:178
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:168 ../share/symbols/symbols.h:169
msgctxt "Symbol"
-msgid "Xnor Gate"
+msgid "Currency Exchange - Euro"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:179
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:170 ../share/symbols/symbols.h:171
msgctxt "Symbol"
-msgid "Xor Gate"
+msgid "Cashier"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:180
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:174 ../share/symbols/symbols.h:175
msgctxt "Symbol"
-msgid "Nor Gate"
+msgid "Lost and Found"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:181
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:176 ../share/symbols/symbols.h:177
msgctxt "Symbol"
-msgid "Or Gate"
+msgid "Coat Check"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:182
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:178 ../share/symbols/symbols.h:179
msgctxt "Symbol"
-msgid "Nand Gate"
+msgid "Baggage Lockers"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:183
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:180 ../share/symbols/symbols.h:181
msgctxt "Symbol"
-msgid "And Gate"
+msgid "Escalator"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:184
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:182 ../share/symbols/symbols.h:183
msgctxt "Symbol"
-msgid "Buffer"
+msgid "Escalator Down"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:185
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:184 ../share/symbols/symbols.h:185
msgctxt "Symbol"
-msgid "Not Gate"
+msgid "Escalator Up"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:186
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:186 ../share/symbols/symbols.h:187
msgctxt "Symbol"
-msgid "Buffer Small"
+msgid "Stairs"
msgstr ""
-#. Symbols: LogicSymbols.svg
-#: ../share/symbols/symbols.h:187
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:188 ../share/symbols/symbols.h:189
msgctxt "Symbol"
-msgid "Not Gate Small"
+msgid "Stairs Down"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:188
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:190 ../share/symbols/symbols.h:191
msgctxt "Symbol"
-msgid "United States National Park Service Map Symbols"
+msgid "Stairs Up"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:189 ../share/symbols/symbols.h:190
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:192 ../share/symbols/symbols.h:193
msgctxt "Symbol"
-msgid "Airport"
+msgid "Elevator"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:191 ../share/symbols/symbols.h:192
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:194 ../share/symbols/symbols.h:195
msgctxt "Symbol"
-msgid "Amphitheatre"
+msgid "Toilets - Men"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:193 ../share/symbols/symbols.h:194
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:196 ../share/symbols/symbols.h:197
msgctxt "Symbol"
-msgid "Bicycle Trail"
+msgid "Toilets - Women"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:195 ../share/symbols/symbols.h:196
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:198 ../share/symbols/symbols.h:199
msgctxt "Symbol"
-msgid "Boat Launch"
+msgid "Toilets"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:197 ../share/symbols/symbols.h:198
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:200 ../share/symbols/symbols.h:201
msgctxt "Symbol"
-msgid "Boat Tour"
+msgid "Nursery"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:199 ../share/symbols/symbols.h:200
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:202 ../share/symbols/symbols.h:203
msgctxt "Symbol"
-msgid "Bus Stop"
+msgid "Drinking Fountain"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:201 ../share/symbols/symbols.h:202
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:204 ../share/symbols/symbols.h:205
msgctxt "Symbol"
-msgid "Campfire"
+msgid "Waiting Room"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:203 ../share/symbols/symbols.h:204
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:208 ../share/symbols/symbols.h:209
msgctxt "Symbol"
-msgid "Campground"
+msgid "Hotel Information"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:205 ../share/symbols/symbols.h:206
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:210 ../share/symbols/symbols.h:211
msgctxt "Symbol"
-msgid "CanoeAccess"
+msgid "Air Transportation"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:207 ../share/symbols/symbols.h:208
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:212 ../share/symbols/symbols.h:213
msgctxt "Symbol"
-msgid "Crosscountry Ski Trail"
+msgid "Heliport"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:209 ../share/symbols/symbols.h:210
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:214 ../share/symbols/symbols.h:215
msgctxt "Symbol"
-msgid "Downhill Skiing"
+msgid "Taxi"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:211 ../share/symbols/symbols.h:212
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:216 ../share/symbols/symbols.h:217
msgctxt "Symbol"
-msgid "Drinking Water"
+msgid "Bus"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:215 ../share/symbols/symbols.h:216
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:218 ../share/symbols/symbols.h:219
msgctxt "Symbol"
-msgid "Fishing"
+msgid "Ground Transportation"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:217 ../share/symbols/symbols.h:218
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:220 ../share/symbols/symbols.h:221
msgctxt "Symbol"
-msgid "Food Service"
+msgid "Rail Transportation"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:219 ../share/symbols/symbols.h:220
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:222 ../share/symbols/symbols.h:223
msgctxt "Symbol"
-msgid "Four Wheel Drive Road"
+msgid "Water Transportation"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:221 ../share/symbols/symbols.h:222
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:224 ../share/symbols/symbols.h:225
msgctxt "Symbol"
-msgid "Gas Station"
+msgid "Car Rental"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:223 ../share/symbols/symbols.h:224
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:226 ../share/symbols/symbols.h:227
msgctxt "Symbol"
-msgid "Golfing"
+msgid "Restaurant"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:225 ../share/symbols/symbols.h:226
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:228 ../share/symbols/symbols.h:229
msgctxt "Symbol"
-msgid "Horseback Riding"
+msgid "Coffeeshop"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:227 ../share/symbols/symbols.h:228
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:230 ../share/symbols/symbols.h:231
msgctxt "Symbol"
-msgid "Hospital"
+msgid "Bar"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:229 ../share/symbols/symbols.h:230
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:232 ../share/symbols/symbols.h:233
msgctxt "Symbol"
-msgid "Ice Skating"
+msgid "Shops"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:233 ../share/symbols/symbols.h:234
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:234 ../share/symbols/symbols.h:235
msgctxt "Symbol"
-msgid "Litter Receptacle"
+msgid "Barber Shop - Beauty Salon"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:235 ../share/symbols/symbols.h:236
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:236 ../share/symbols/symbols.h:237
msgctxt "Symbol"
-msgid "Lodging"
+msgid "Barber Shop"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:237 ../share/symbols/symbols.h:238
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:238 ../share/symbols/symbols.h:239
msgctxt "Symbol"
-msgid "Marina"
+msgid "Beauty Salon"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:239 ../share/symbols/symbols.h:240
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:240 ../share/symbols/symbols.h:241
msgctxt "Symbol"
-msgid "Motorbike Trail"
+msgid "Ticket Purchase"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:241 ../share/symbols/symbols.h:242
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:242 ../share/symbols/symbols.h:243
msgctxt "Symbol"
-msgid "Radiator Water"
+msgid "Baggage Check In"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:243 ../share/symbols/symbols.h:244
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:244 ../share/symbols/symbols.h:245
msgctxt "Symbol"
-msgid "Recycling"
+msgid "Baggage Claim"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:247 ../share/symbols/symbols.h:248
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:246 ../share/symbols/symbols.h:247
msgctxt "Symbol"
-msgid "Pets On Leash"
+msgid "Customs"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:249 ../share/symbols/symbols.h:250
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:248 ../share/symbols/symbols.h:249
msgctxt "Symbol"
-msgid "Picnic Area"
+msgid "Immigration"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:251 ../share/symbols/symbols.h:252
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:250 ../share/symbols/symbols.h:251
msgctxt "Symbol"
-msgid "Post Office"
+msgid "Departing Flights"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:253 ../share/symbols/symbols.h:254
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:252 ../share/symbols/symbols.h:253
msgctxt "Symbol"
-msgid "Ranger Station"
+msgid "Arriving Flights"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:255 ../share/symbols/symbols.h:256
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:254 ../share/symbols/symbols.h:255
msgctxt "Symbol"
-msgid "RV Campground"
+msgid "Smoking"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:257 ../share/symbols/symbols.h:258
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:256 ../share/symbols/symbols.h:257
msgctxt "Symbol"
-msgid "Restrooms"
+msgid "No Smoking"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:259 ../share/symbols/symbols.h:260
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:260 ../share/symbols/symbols.h:261
msgctxt "Symbol"
-msgid "Sailing"
+msgid "No Parking"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:261 ../share/symbols/symbols.h:262
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:262 ../share/symbols/symbols.h:263
msgctxt "Symbol"
-msgid "Sanitary Disposal Station"
+msgid "No Dogs"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:263 ../share/symbols/symbols.h:264
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:264 ../share/symbols/symbols.h:265
msgctxt "Symbol"
-msgid "Scuba Diving"
+msgid "No Entry"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:265 ../share/symbols/symbols.h:266
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:266 ../share/symbols/symbols.h:267
msgctxt "Symbol"
-msgid "Self Guided Trail"
+msgid "Exit"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:267 ../share/symbols/symbols.h:268
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:268 ../share/symbols/symbols.h:269
msgctxt "Symbol"
-msgid "Shelter"
+msgid "Fire Extinguisher"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:269 ../share/symbols/symbols.h:270
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:270 ../share/symbols/symbols.h:271
msgctxt "Symbol"
-msgid "Showers"
+msgid "Right Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:271 ../share/symbols/symbols.h:272
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:272 ../share/symbols/symbols.h:273
msgctxt "Symbol"
-msgid "Sledding"
+msgid "Forward and Right Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:273 ../share/symbols/symbols.h:274
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:274 ../share/symbols/symbols.h:275
msgctxt "Symbol"
-msgid "SnowmobileTrail"
+msgid "Up Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:275 ../share/symbols/symbols.h:276
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:276 ../share/symbols/symbols.h:277
msgctxt "Symbol"
-msgid "Stable"
+msgid "Forward and Left Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:277 ../share/symbols/symbols.h:278
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:278 ../share/symbols/symbols.h:279
msgctxt "Symbol"
-msgid "Store"
+msgid "Left Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:279 ../share/symbols/symbols.h:280
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:280 ../share/symbols/symbols.h:281
msgctxt "Symbol"
-msgid "Swimming"
+msgid "Left and Down Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:283 ../share/symbols/symbols.h:284
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:282 ../share/symbols/symbols.h:283
msgctxt "Symbol"
-msgid "Emergency Telephone"
+msgid "Down Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:285 ../share/symbols/symbols.h:286
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:284 ../share/symbols/symbols.h:285
msgctxt "Symbol"
-msgid "Trailhead"
+msgid "Right and Down Arrow"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:287 ../share/symbols/symbols.h:288
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:286 ../share/symbols/symbols.h:287
msgctxt "Symbol"
-msgid "Wheelchair Accessible"
+msgid "NPS Wheelchair Accessible - 1996"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:289 ../share/symbols/symbols.h:290
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:288 ../share/symbols/symbols.h:289
msgctxt "Symbol"
-msgid "Wind Surfing"
+msgid "NPS Wheelchair Accessible"
msgstr ""
-#. Symbols: MapSymbolsNPS.svg
-#: ../share/symbols/symbols.h:291
+#. Symbols: AigaSymbols.svg
+#: ../share/symbols/symbols.h:290 ../share/symbols/symbols.h:291
msgctxt "Symbol"
-msgid "Blank"
+msgid "New Wheelchair Accessible"
msgstr ""
#: ../share/templates/templates.h:1
-msgid "CD Label 120mmx120mm "
+msgid "No Layers"
msgstr ""
#: ../share/templates/templates.h:1
-msgid "Simple CD Label template with disc's pattern."
+msgid "Empty sheet with no layers"
msgstr ""
#: ../share/templates/templates.h:1
-msgid "CD label 120x120 disc disk"
+msgid "no layers empty"
msgstr ""
#: ../share/templates/templates.h:1
@@ -4396,15 +4396,15 @@ msgid "guidelines typography canvas"
msgstr ""
#: ../share/templates/templates.h:1
-msgid "No Layers"
+msgid "CD Label 120mmx120mm "
msgstr ""
#: ../share/templates/templates.h:1
-msgid "Empty sheet with no layers"
+msgid "Simple CD Label template with disc's pattern."
msgstr ""
#: ../share/templates/templates.h:1
-msgid "no layers empty"
+msgid "CD label 120x120 disc disk"
msgstr ""
#. 3D box
@@ -5011,7 +5011,7 @@ msgstr ""
#: ../src/ui/dialog/object-attributes.cpp:74
#: ../src/ui/widget/page-sizer.cpp:232
#: ../src/widgets/calligraphy-toolbar.cpp:430
-#: ../src/widgets/eraser-toolbar.cpp:185 ../src/widgets/spray-toolbar.cpp:297
+#: ../src/widgets/eraser-toolbar.cpp:187 ../src/widgets/spray-toolbar.cpp:297
#: ../src/widgets/tweak-toolbar.cpp:128 ../share/extensions/foldablebox.inx.h:2
msgid "Width:"
msgstr ""
@@ -5771,7 +5771,7 @@ msgstr ""
#: ../src/extension/internal/vsd-input.cpp:121
#: ../src/extension/prefdialog.cpp:73
#: ../src/ui/dialog/calligraphic-profile-rename.cpp:49
-#: ../src/ui/dialog/export.cpp:904 ../src/ui/dialog/export.cpp:1287
+#: ../src/ui/dialog/export.cpp:912 ../src/ui/dialog/export.cpp:1296
#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:737
#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1052
#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1599
@@ -7168,6 +7168,7 @@ msgstr ""
#: ../src/extension/internal/filter/morphology.h:69
#: ../src/extension/internal/filter/morphology.h:190
+#: ../src/ui/dialog/export.cpp:154
msgid "Antialiasing"
msgstr ""
@@ -7687,7 +7688,7 @@ msgstr ""
#: ../src/extension/internal/filter/transparency.h:59
#: ../src/ui/dialog/filter-effects-dialog.cpp:2739
-#: ../src/ui/dialog/input.cpp:959 ../src/widgets/eraser-toolbar.cpp:163
+#: ../src/ui/dialog/input.cpp:959 ../src/widgets/eraser-toolbar.cpp:165
#: ../src/widgets/pencil-toolbar.cpp:138 ../src/widgets/spray-toolbar.cpp:389
#: ../src/widgets/tweak-toolbar.cpp:254 ../share/extensions/extrude.inx.h:2
#: ../share/extensions/triangle.inx.h:8
@@ -7895,7 +7896,7 @@ msgstr ""
#: ../src/extension/internal/grid.cpp:210
#: ../src/ui/dialog/document-properties.cpp:148
#: ../src/ui/dialog/inkscape-preferences.cpp:820
-#: ../src/widgets/toolbox.cpp:1865
+#: ../src/widgets/toolbox.cpp:1864
msgid "Grids"
msgstr ""
@@ -9146,7 +9147,7 @@ msgstr ""
#: ../src/live_effects/lpe-bendpath.cpp:56
#: ../src/live_effects/lpe-patternalongpath.cpp:67
-#: ../src/ui/dialog/export.cpp:254 ../src/ui/dialog/transformation.cpp:68
+#: ../src/ui/dialog/export.cpp:256 ../src/ui/dialog/transformation.cpp:68
#: ../src/ui/widget/page-sizer.cpp:220
msgid "_Width:"
msgstr ""
@@ -9276,66 +9277,73 @@ msgstr ""
msgid "The size of the grid in Y direction."
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:42
+#: ../src/live_effects/lpe-copy_rotate.cpp:43
msgid "Origin"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:42
+#: ../src/live_effects/lpe-copy_rotate.cpp:43
msgid "Adjust origin of the rotation"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:43
+#: ../src/live_effects/lpe-copy_rotate.cpp:44
#: ../src/live_effects/lpe-transform_2pts.cpp:35
msgid "Start point"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:43
+#: ../src/live_effects/lpe-copy_rotate.cpp:44
msgid "Starting point to define start angle"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:43
+#: ../src/live_effects/lpe-copy_rotate.cpp:44
msgid "Adjust starting point to define start angle"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:44
+#: ../src/live_effects/lpe-copy_rotate.cpp:45
msgid "Starting angle"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:44
+#: ../src/live_effects/lpe-copy_rotate.cpp:45
msgid "Angle of the first copy"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:45
+#: ../src/live_effects/lpe-copy_rotate.cpp:46
msgid "Rotation angle"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:45
+#: ../src/live_effects/lpe-copy_rotate.cpp:46
msgid "Angle between two successive copies"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:46
+#: ../src/live_effects/lpe-copy_rotate.cpp:47
msgid "Number of copies"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:46
+#: ../src/live_effects/lpe-copy_rotate.cpp:47
msgid "Number of copies of the original path"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:47
+#: ../src/live_effects/lpe-copy_rotate.cpp:48
msgid "360º Copies"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:47
+#: ../src/live_effects/lpe-copy_rotate.cpp:48
msgid "No rotation angle, fixed to 360º"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:48
-#: ../src/live_effects/lpe-mirror_symmetry.cpp:44
-msgid "Fuse paths"
+#: ../src/live_effects/lpe-copy_rotate.cpp:49
+msgid "Kaleidoskope"
msgstr ""
-#: ../src/live_effects/lpe-copy_rotate.cpp:48
-msgid "Fuse paths by helper line, use fill-rule: evenodd for best result"
+#: ../src/live_effects/lpe-copy_rotate.cpp:49
+msgid "Kaleidoskope by helper line, use fill-rule: evenodd for best result"
+msgstr ""
+
+#: ../src/live_effects/lpe-copy_rotate.cpp:50
+msgid "Join paths"
+msgstr ""
+
+#: ../src/live_effects/lpe-copy_rotate.cpp:50
+msgid "Join paths, use fill-rule: evenodd for best result"
msgstr ""
#: ../src/live_effects/lpe-curvestitch.cpp:34
@@ -9628,7 +9636,7 @@ msgid "Min Radius:"
msgstr ""
#: ../src/live_effects/lpe-gears.cpp:210
-msgid "Minimun radius, low balues can slow"
+msgid "Minimum radius, low values can be slow"
msgstr ""
#: ../src/live_effects/lpe-interpolate.cpp:27
@@ -10102,7 +10110,7 @@ msgid "Unit*"
msgstr ""
#: ../src/live_effects/lpe-measure-line.cpp:50
-#: ../src/live_effects/lpe-ruler.cpp:39 ../src/widgets/gimp/ruler.cpp:193
+#: ../src/live_effects/lpe-ruler.cpp:39 ../src/widgets/gimp/ruler.cpp:195
msgid "Unit"
msgstr ""
@@ -10115,7 +10123,7 @@ msgid "Font Selector"
msgstr ""
#: ../src/live_effects/lpe-measure-line.cpp:52
-#: ../src/widgets/gimp/ruler.cpp:183
+#: ../src/widgets/gimp/ruler.cpp:185
#: ../share/extensions/gcodetools_graffiti.inx.h:9
#: ../share/extensions/gcodetools_orientation_points.inx.h:2
msgid "Orientation"
@@ -10138,11 +10146,12 @@ msgid "Precision*"
msgstr ""
#: ../src/live_effects/lpe-measure-line.cpp:55
-msgid "Positon*"
+msgid "Position*"
msgstr ""
#: ../src/live_effects/lpe-measure-line.cpp:55
-msgid "Positon"
+#: ../src/widgets/gimp/ruler.cpp:223
+msgid "Position"
msgstr ""
#: ../src/live_effects/lpe-measure-line.cpp:56
@@ -10332,6 +10341,10 @@ msgid "Check this to only keep the mirrored part of the path"
msgstr ""
#: ../src/live_effects/lpe-mirror_symmetry.cpp:44
+msgid "Fuse paths"
+msgstr ""
+
+#: ../src/live_effects/lpe-mirror_symmetry.cpp:44
msgid "Fuse original and the reflection into a single path"
msgstr ""
@@ -12202,7 +12215,7 @@ msgid "<b>Nothing</b> was deleted."
msgstr ""
#: ../src/selection-chemistry.cpp:408 ../src/ui/dialog/swatches.cpp:268
-#: ../src/ui/tools/text-tool.cpp:961 ../src/widgets/eraser-toolbar.cpp:143
+#: ../src/ui/tools/text-tool.cpp:961 ../src/widgets/eraser-toolbar.cpp:145
#: ../src/widgets/gradient-toolbar.cpp:1182
#: ../src/widgets/gradient-toolbar.cpp:1196
#: ../src/widgets/gradient-toolbar.cpp:1210 ../src/widgets/node-toolbar.cpp:399
@@ -12785,8 +12798,8 @@ msgstr ""
msgid "Keyboard directory (%s) is unavailable."
msgstr ""
-#: ../src/shortcuts.cpp:335 ../src/ui/dialog/export.cpp:1284
-#: ../src/ui/dialog/export.cpp:1318
+#: ../src/shortcuts.cpp:335 ../src/ui/dialog/export.cpp:1293
+#: ../src/ui/dialog/export.cpp:1327
msgid "Select a filename for exporting"
msgstr ""
@@ -13496,7 +13509,7 @@ msgid "Rearrange"
msgstr ""
#: ../src/ui/dialog/align-and-distribute.cpp:919
-#: ../src/widgets/toolbox.cpp:1767
+#: ../src/widgets/toolbox.cpp:1766
msgid "Nodes"
msgstr ""
@@ -13714,7 +13727,7 @@ msgid "_Delete"
msgstr ""
#: ../src/ui/dialog/calligraphic-profile-rename.cpp:58
-#: ../src/ui/dialog/export.cpp:1288
+#: ../src/ui/dialog/export.cpp:1297
#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1053
#: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1600
#: ../src/ui/dialog/input.cpp:953 ../src/verbs.cpp:2467
@@ -14720,7 +14733,7 @@ msgstr ""
msgid "Remove selected grid."
msgstr ""
-#: ../src/ui/dialog/document-properties.cpp:147 ../src/widgets/toolbox.cpp:1874
+#: ../src/ui/dialog/document-properties.cpp:147 ../src/widgets/toolbox.cpp:1873
msgid "Guides"
msgstr ""
@@ -14977,172 +14990,172 @@ msgstr ""
msgid "pHYs dpi"
msgstr ""
-#: ../src/ui/dialog/export.cpp:155
-msgid "Hide a_ll except selected"
+#: ../src/ui/dialog/export.cpp:157
+msgid "Hide all except selected"
msgstr ""
-#: ../src/ui/dialog/export.cpp:155
+#: ../src/ui/dialog/export.cpp:157
msgid "In the exported image, hide all objects except those that are selected"
msgstr ""
-#: ../src/ui/dialog/export.cpp:156
+#: ../src/ui/dialog/export.cpp:158
msgid "Close when complete"
msgstr ""
-#: ../src/ui/dialog/export.cpp:156
+#: ../src/ui/dialog/export.cpp:158
msgid "Once the export completes, close this dialog"
msgstr ""
-#: ../src/ui/dialog/export.cpp:174
+#: ../src/ui/dialog/export.cpp:176
msgid "<b>Export area</b>"
msgstr ""
-#: ../src/ui/dialog/export.cpp:207
+#: ../src/ui/dialog/export.cpp:209
msgid "_x0:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:211
+#: ../src/ui/dialog/export.cpp:213
msgid "x_1:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:215
+#: ../src/ui/dialog/export.cpp:217
msgid "Wid_th:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:219
+#: ../src/ui/dialog/export.cpp:221
msgid "_y0:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:223
+#: ../src/ui/dialog/export.cpp:225
msgid "y_1:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:227
+#: ../src/ui/dialog/export.cpp:229
msgid "Hei_ght:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:242
+#: ../src/ui/dialog/export.cpp:244
msgid "<b>Image size</b>"
msgstr ""
-#: ../src/ui/dialog/export.cpp:254 ../src/ui/dialog/export.cpp:265
+#: ../src/ui/dialog/export.cpp:256 ../src/ui/dialog/export.cpp:267
msgid "pixels at"
msgstr ""
-#: ../src/ui/dialog/export.cpp:260
+#: ../src/ui/dialog/export.cpp:262
msgid "dp_i"
msgstr ""
-#: ../src/ui/dialog/export.cpp:265 ../src/ui/dialog/transformation.cpp:70
+#: ../src/ui/dialog/export.cpp:267 ../src/ui/dialog/transformation.cpp:70
#: ../src/ui/widget/page-sizer.cpp:221
msgid "_Height:"
msgstr ""
-#: ../src/ui/dialog/export.cpp:273
+#: ../src/ui/dialog/export.cpp:275
#: ../src/ui/dialog/inkscape-preferences.cpp:1474
#: ../src/ui/dialog/inkscape-preferences.cpp:1478
#: ../src/ui/dialog/inkscape-preferences.cpp:1502
msgid "dpi"
msgstr ""
-#: ../src/ui/dialog/export.cpp:281
+#: ../src/ui/dialog/export.cpp:283
msgid "<b>_Filename</b>"
msgstr ""
-#: ../src/ui/dialog/export.cpp:319
+#: ../src/ui/dialog/export.cpp:321
msgid "_Export"
msgstr ""
-#: ../src/ui/dialog/export.cpp:321
+#: ../src/ui/dialog/export.cpp:323
msgid "Export the bitmap file with these settings"
msgstr ""
#. Advanced
-#: ../src/ui/dialog/export.cpp:327
+#: ../src/ui/dialog/export.cpp:329
msgid "Advanced"
msgstr ""
-#: ../src/ui/dialog/export.cpp:341
+#: ../src/ui/dialog/export.cpp:343
msgid ""
"Will force-set the physical dpi for the png file. Set this to 72 if you're "
"planning to work on your png with Photoshop"
msgstr ""
-#: ../src/ui/dialog/export.cpp:475
+#: ../src/ui/dialog/export.cpp:483
msgid "bitmap"
msgstr ""
-#: ../src/ui/dialog/export.cpp:580
+#: ../src/ui/dialog/export.cpp:588
#, c-format
msgid "B_atch export %d selected object"
msgid_plural "B_atch export %d selected objects"
msgstr[0] ""
msgstr[1] ""
-#: ../src/ui/dialog/export.cpp:896
+#: ../src/ui/dialog/export.cpp:904
msgid "Export in progress"
msgstr ""
-#: ../src/ui/dialog/export.cpp:996
+#: ../src/ui/dialog/export.cpp:1005
msgid "No items selected."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1000 ../src/ui/dialog/export.cpp:1002
+#: ../src/ui/dialog/export.cpp:1009 ../src/ui/dialog/export.cpp:1011
msgid "Exporting %1 files"
msgstr ""
-#: ../src/ui/dialog/export.cpp:1044 ../src/ui/dialog/export.cpp:1046
+#: ../src/ui/dialog/export.cpp:1053 ../src/ui/dialog/export.cpp:1055
#, c-format
msgid "Exporting file <b>%s</b>..."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1057 ../src/ui/dialog/export.cpp:1152
+#: ../src/ui/dialog/export.cpp:1066 ../src/ui/dialog/export.cpp:1161
#, c-format
msgid "Could not export to filename %s.\n"
msgstr ""
-#: ../src/ui/dialog/export.cpp:1060
+#: ../src/ui/dialog/export.cpp:1069
#, c-format
msgid "Could not export to filename <b>%s</b>."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1075
+#: ../src/ui/dialog/export.cpp:1084
#, c-format
msgid "Successfully exported <b>%d</b> files from <b>%d</b> selected items."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1086
+#: ../src/ui/dialog/export.cpp:1095
msgid "You have to enter a filename."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1087
+#: ../src/ui/dialog/export.cpp:1096
msgid "You have to enter a filename"
msgstr ""
-#: ../src/ui/dialog/export.cpp:1102
+#: ../src/ui/dialog/export.cpp:1111
msgid "The chosen area to be exported is invalid."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1103
+#: ../src/ui/dialog/export.cpp:1112
msgid "The chosen area to be exported is invalid"
msgstr ""
-#: ../src/ui/dialog/export.cpp:1118
+#: ../src/ui/dialog/export.cpp:1127
#, c-format
msgid "Directory %s does not exist or is not a directory.\n"
msgstr ""
#. TRANSLATORS: %1 will be the filename, %2 the width, and %3 the height of the image
-#: ../src/ui/dialog/export.cpp:1132 ../src/ui/dialog/export.cpp:1134
+#: ../src/ui/dialog/export.cpp:1141 ../src/ui/dialog/export.cpp:1143
msgid "Exporting %1 (%2 x %3)"
msgstr ""
-#: ../src/ui/dialog/export.cpp:1163
+#: ../src/ui/dialog/export.cpp:1172
#, c-format
msgid "Drawing exported to <b>%s</b>."
msgstr ""
-#: ../src/ui/dialog/export.cpp:1167
+#: ../src/ui/dialog/export.cpp:1176
msgid "Export aborted."
msgstr ""
@@ -16182,7 +16195,7 @@ msgstr ""
msgid "Search spirals"
msgstr ""
-#: ../src/ui/dialog/find.cpp:96 ../src/widgets/toolbox.cpp:1775
+#: ../src/ui/dialog/find.cpp:96 ../src/widgets/toolbox.cpp:1774
msgid "Paths"
msgstr ""
@@ -27549,7 +27562,7 @@ msgstr ""
#. Width
#: ../src/widgets/calligraphy-toolbar.cpp:427
-#: ../src/widgets/eraser-toolbar.cpp:182
+#: ../src/widgets/eraser-toolbar.cpp:184
msgid "(hairline)"
msgstr ""
@@ -27558,7 +27571,7 @@ msgstr ""
#. Scale
#: ../src/widgets/calligraphy-toolbar.cpp:427
#: ../src/widgets/calligraphy-toolbar.cpp:460
-#: ../src/widgets/eraser-toolbar.cpp:182 ../src/widgets/pencil-toolbar.cpp:374
+#: ../src/widgets/eraser-toolbar.cpp:184 ../src/widgets/pencil-toolbar.cpp:374
#: ../src/widgets/spray-toolbar.cpp:294 ../src/widgets/spray-toolbar.cpp:323
#: ../src/widgets/spray-toolbar.cpp:339 ../src/widgets/spray-toolbar.cpp:408
#: ../src/widgets/spray-toolbar.cpp:438 ../src/widgets/spray-toolbar.cpp:456
@@ -27568,12 +27581,12 @@ msgid "(default)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:427
-#: ../src/widgets/eraser-toolbar.cpp:182
+#: ../src/widgets/eraser-toolbar.cpp:184
msgid "(broad stroke)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:430
-#: ../src/widgets/eraser-toolbar.cpp:185
+#: ../src/widgets/eraser-toolbar.cpp:187
msgid "Pen Width"
msgstr ""
@@ -27583,27 +27596,27 @@ msgstr ""
#. Thinning
#: ../src/widgets/calligraphy-toolbar.cpp:444
-#: ../src/widgets/eraser-toolbar.cpp:212
+#: ../src/widgets/eraser-toolbar.cpp:214
msgid "(speed blows up stroke)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:444
-#: ../src/widgets/eraser-toolbar.cpp:212
+#: ../src/widgets/eraser-toolbar.cpp:214
msgid "(slight widening)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:444
-#: ../src/widgets/eraser-toolbar.cpp:212
+#: ../src/widgets/eraser-toolbar.cpp:214
msgid "(constant width)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:444
-#: ../src/widgets/eraser-toolbar.cpp:212
+#: ../src/widgets/eraser-toolbar.cpp:214
msgid "(slight thinning, default)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:444
-#: ../src/widgets/eraser-toolbar.cpp:212
+#: ../src/widgets/eraser-toolbar.cpp:214
msgid "(speed deflates stroke)"
msgstr ""
@@ -27612,12 +27625,12 @@ msgid "Stroke Thinning"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:447
-#: ../src/widgets/eraser-toolbar.cpp:215
+#: ../src/widgets/eraser-toolbar.cpp:217
msgid "Thinning:"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:448
-#: ../src/widgets/eraser-toolbar.cpp:216
+#: ../src/widgets/eraser-toolbar.cpp:218
msgid ""
"How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 "
"makes them broader, 0 makes width independent of velocity)"
@@ -27680,22 +27693,22 @@ msgstr ""
#. Cap Rounding
#: ../src/widgets/calligraphy-toolbar.cpp:494
-#: ../src/widgets/eraser-toolbar.cpp:228
+#: ../src/widgets/eraser-toolbar.cpp:230
msgid "(blunt caps, default)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:494
-#: ../src/widgets/eraser-toolbar.cpp:228
+#: ../src/widgets/eraser-toolbar.cpp:230
msgid "(slightly bulging)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:494
-#: ../src/widgets/eraser-toolbar.cpp:228
+#: ../src/widgets/eraser-toolbar.cpp:230
msgid "(approximately round)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:494
-#: ../src/widgets/eraser-toolbar.cpp:228
+#: ../src/widgets/eraser-toolbar.cpp:230
msgid "(long protruding caps)"
msgstr ""
@@ -27704,12 +27717,12 @@ msgid "Cap rounding"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:498
-#: ../src/widgets/eraser-toolbar.cpp:232
+#: ../src/widgets/eraser-toolbar.cpp:234
msgid "Caps:"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:499
-#: ../src/widgets/eraser-toolbar.cpp:233
+#: ../src/widgets/eraser-toolbar.cpp:235
msgid ""
"Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = "
"round caps)"
@@ -27717,22 +27730,22 @@ msgstr ""
#. Tremor
#: ../src/widgets/calligraphy-toolbar.cpp:511
-#: ../src/widgets/eraser-toolbar.cpp:246
+#: ../src/widgets/eraser-toolbar.cpp:248
msgid "(smooth line)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:511
-#: ../src/widgets/eraser-toolbar.cpp:246
+#: ../src/widgets/eraser-toolbar.cpp:248
msgid "(slight tremor)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:511
-#: ../src/widgets/eraser-toolbar.cpp:246
+#: ../src/widgets/eraser-toolbar.cpp:248
msgid "(noticeable tremor)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:511
-#: ../src/widgets/eraser-toolbar.cpp:246
+#: ../src/widgets/eraser-toolbar.cpp:248
msgid "(maximum tremor)"
msgstr ""
@@ -27741,12 +27754,12 @@ msgid "Stroke Tremor"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:514
-#: ../src/widgets/eraser-toolbar.cpp:249
+#: ../src/widgets/eraser-toolbar.cpp:251
msgid "Tremor:"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:515
-#: ../src/widgets/eraser-toolbar.cpp:250
+#: ../src/widgets/eraser-toolbar.cpp:252
msgid "Increase to make strokes rugged and trembling"
msgstr ""
@@ -27777,22 +27790,22 @@ msgstr ""
#. Mass
#: ../src/widgets/calligraphy-toolbar.cpp:546
-#: ../src/widgets/eraser-toolbar.cpp:264
+#: ../src/widgets/eraser-toolbar.cpp:266
msgid "(no inertia)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:546
-#: ../src/widgets/eraser-toolbar.cpp:264
+#: ../src/widgets/eraser-toolbar.cpp:266
msgid "(slight smoothing, default)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:546
-#: ../src/widgets/eraser-toolbar.cpp:264
+#: ../src/widgets/eraser-toolbar.cpp:266
msgid "(noticeable lagging)"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:546
-#: ../src/widgets/eraser-toolbar.cpp:264
+#: ../src/widgets/eraser-toolbar.cpp:266
msgid "(maximum inertia)"
msgstr ""
@@ -27801,7 +27814,7 @@ msgid "Pen Mass"
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:549
-#: ../src/widgets/eraser-toolbar.cpp:267
+#: ../src/widgets/eraser-toolbar.cpp:269
msgid "Mass:"
msgstr ""
@@ -27820,7 +27833,7 @@ msgid ""
msgstr ""
#: ../src/widgets/calligraphy-toolbar.cpp:579
-#: ../src/widgets/eraser-toolbar.cpp:201
+#: ../src/widgets/eraser-toolbar.cpp:203
msgid "Use the pressure of the input device to alter the width of the pen"
msgstr ""
@@ -28083,60 +28096,60 @@ msgstr ""
msgid "remove"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:144
+#: ../src/widgets/eraser-toolbar.cpp:146
msgid "Delete objects touched by the eraser"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:150
+#: ../src/widgets/eraser-toolbar.cpp:152
msgid "Cut"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:151
+#: ../src/widgets/eraser-toolbar.cpp:153
msgid "Cut out from paths and shapes"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:157
+#: ../src/widgets/eraser-toolbar.cpp:159
msgid "Clip"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:158
+#: ../src/widgets/eraser-toolbar.cpp:160
msgid "Clip from objects"
msgstr ""
#. Width
-#: ../src/widgets/eraser-toolbar.cpp:182
+#: ../src/widgets/eraser-toolbar.cpp:184
msgid "(no width)"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:186
+#: ../src/widgets/eraser-toolbar.cpp:188
msgid "The width of the eraser pen (relative to the visible canvas area)"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:200
+#: ../src/widgets/eraser-toolbar.cpp:202
msgid "Eraser Pressure"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:215
+#: ../src/widgets/eraser-toolbar.cpp:217
msgid "Eraser Stroke Thinning"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:232
+#: ../src/widgets/eraser-toolbar.cpp:234
msgid "Eraser Cap rounding"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:249
+#: ../src/widgets/eraser-toolbar.cpp:251
msgid "EraserStroke Tremor"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:267
+#: ../src/widgets/eraser-toolbar.cpp:269
msgid "Eraser Mass"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:268
+#: ../src/widgets/eraser-toolbar.cpp:270
msgid "Increase to make the eraser drag behind, as if slowed by inertia"
msgstr ""
-#: ../src/widgets/eraser-toolbar.cpp:282 ../src/widgets/eraser-toolbar.cpp:283
+#: ../src/widgets/eraser-toolbar.cpp:284 ../src/widgets/eraser-toolbar.cpp:285
msgid "Break apart cut items"
msgstr ""
@@ -28203,43 +28216,39 @@ msgstr ""
msgid "Font size:"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:184
+#: ../src/widgets/gimp/ruler.cpp:186
msgid "The orientation of the ruler"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:194
+#: ../src/widgets/gimp/ruler.cpp:196
msgid "Unit of the ruler"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:201
+#: ../src/widgets/gimp/ruler.cpp:203
msgid "Lower"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:202
+#: ../src/widgets/gimp/ruler.cpp:204
msgid "Lower limit of ruler"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:211
+#: ../src/widgets/gimp/ruler.cpp:213
msgid "Upper"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:212
+#: ../src/widgets/gimp/ruler.cpp:214
msgid "Upper limit of ruler"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:221
-msgid "Position"
-msgstr ""
-
-#: ../src/widgets/gimp/ruler.cpp:222
+#: ../src/widgets/gimp/ruler.cpp:224
msgid "Position of mark on the ruler"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:231
+#: ../src/widgets/gimp/ruler.cpp:233
msgid "Max Size"
msgstr ""
-#: ../src/widgets/gimp/ruler.cpp:232
+#: ../src/widgets/gimp/ruler.cpp:234
msgid "Maximum size of the ruler"
msgstr ""
@@ -28605,7 +28614,7 @@ msgid "Scale the results"
msgstr ""
#: ../src/widgets/measure-toolbar.cpp:329
-msgid "The offset size"
+msgid "Mark dimension offset"
msgstr ""
#: ../src/widgets/measure-toolbar.cpp:341
@@ -28743,65 +28752,66 @@ msgstr ""
msgid "Bicubic"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:542
+#. TRANSLATORS: Type of Smoothing. See https://en.wikipedia.org/wiki/Coons_patch
+#: ../src/widgets/mesh-toolbar.cpp:543
msgid "Coons"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:543
+#: ../src/widgets/mesh-toolbar.cpp:544
msgid "Coons: no smoothing. Bicubic: smoothing across patch boundaries."
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:545 ../src/widgets/pencil-toolbar.cpp:377
+#: ../src/widgets/mesh-toolbar.cpp:546 ../src/widgets/pencil-toolbar.cpp:377
msgid "Smoothing:"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:555
+#: ../src/widgets/mesh-toolbar.cpp:556
msgid "Toggle Sides"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:556
+#: ../src/widgets/mesh-toolbar.cpp:557
msgid "Toggle selected sides between Beziers and lines."
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:559
+#: ../src/widgets/mesh-toolbar.cpp:560
msgid "Toggle side:"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:566
+#: ../src/widgets/mesh-toolbar.cpp:567
msgid "Make elliptical"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:567
+#: ../src/widgets/mesh-toolbar.cpp:568
msgid ""
"Make selected sides elliptical by changing length of handles. Works best if "
"handles already approximate ellipse."
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:570
+#: ../src/widgets/mesh-toolbar.cpp:571
msgid "Make elliptical:"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:577
+#: ../src/widgets/mesh-toolbar.cpp:578
msgid "Pick colors:"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:578
+#: ../src/widgets/mesh-toolbar.cpp:579
msgid "Pick colors for selected corner nodes from underneath mesh."
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:581
+#: ../src/widgets/mesh-toolbar.cpp:582
msgid "Pick Color"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:589
+#: ../src/widgets/mesh-toolbar.cpp:590
msgid "Scale mesh to bounding box:"
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:590
+#: ../src/widgets/mesh-toolbar.cpp:591
msgid "Scale mesh to fit inside bounding box."
msgstr ""
-#: ../src/widgets/mesh-toolbar.cpp:593
+#: ../src/widgets/mesh-toolbar.cpp:594
msgid "Fit mesh"
msgstr ""
@@ -30395,131 +30405,131 @@ msgstr ""
msgid "Style of Paint Bucket fill objects"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1721
+#: ../src/widgets/toolbox.cpp:1720
msgid "Bounding box"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1721
+#: ../src/widgets/toolbox.cpp:1720
msgid "Snap bounding boxes"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1730
+#: ../src/widgets/toolbox.cpp:1729
msgid "Bounding box edges"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1730
+#: ../src/widgets/toolbox.cpp:1729
msgid "Snap to edges of a bounding box"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1739
+#: ../src/widgets/toolbox.cpp:1738
msgid "Bounding box corners"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1739
+#: ../src/widgets/toolbox.cpp:1738
msgid "Snap bounding box corners"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1748
+#: ../src/widgets/toolbox.cpp:1747
msgid "BBox Edge Midpoints"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1748
+#: ../src/widgets/toolbox.cpp:1747
msgid "Snap midpoints of bounding box edges"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1758
+#: ../src/widgets/toolbox.cpp:1757
msgid "BBox Centers"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1758
+#: ../src/widgets/toolbox.cpp:1757
msgid "Snapping centers of bounding boxes"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1767
+#: ../src/widgets/toolbox.cpp:1766
msgid "Snap nodes, paths, and handles"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1775
+#: ../src/widgets/toolbox.cpp:1774
msgid "Snap to paths"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1784
+#: ../src/widgets/toolbox.cpp:1783
msgid "Path intersections"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1784
+#: ../src/widgets/toolbox.cpp:1783
msgid "Snap to path intersections"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1793
+#: ../src/widgets/toolbox.cpp:1792
msgid "To nodes"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1793
+#: ../src/widgets/toolbox.cpp:1792
msgid "Snap cusp nodes, incl. rectangle corners"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1802
+#: ../src/widgets/toolbox.cpp:1801
msgid "Smooth nodes"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1802
+#: ../src/widgets/toolbox.cpp:1801
msgid "Snap smooth nodes, incl. quadrant points of ellipses"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1811
+#: ../src/widgets/toolbox.cpp:1810
msgid "Line Midpoints"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1811
+#: ../src/widgets/toolbox.cpp:1810
msgid "Snap midpoints of line segments"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1820
+#: ../src/widgets/toolbox.cpp:1819
msgid "Others"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1820
+#: ../src/widgets/toolbox.cpp:1819
msgid "Snap other points (centers, guide origins, gradient handles, etc.)"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1828
+#: ../src/widgets/toolbox.cpp:1827
msgid "Object Centers"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1828
+#: ../src/widgets/toolbox.cpp:1827
msgid "Snap centers of objects"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1837
+#: ../src/widgets/toolbox.cpp:1836
msgid "Rotation Centers"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1837
+#: ../src/widgets/toolbox.cpp:1836
msgid "Snap an item's rotation center"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1846
+#: ../src/widgets/toolbox.cpp:1845
msgid "Text baseline"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1846
+#: ../src/widgets/toolbox.cpp:1845
msgid "Snap text anchors and baselines"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1856
+#: ../src/widgets/toolbox.cpp:1855
msgid "Page border"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1856
+#: ../src/widgets/toolbox.cpp:1855
msgid "Snap to the page border"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1865
+#: ../src/widgets/toolbox.cpp:1864
msgid "Snap to grids"
msgstr ""
-#: ../src/widgets/toolbox.cpp:1874
+#: ../src/widgets/toolbox.cpp:1873
msgid "Snap guides"
msgstr ""
@@ -30744,36 +30754,40 @@ msgstr ""
msgid "Unable to process this object. Try changing it into a path first."
msgstr ""
-#: ../share/extensions/draw_from_triangle.py:179
-msgid "Side Length 'a' ("
-msgstr ""
-
#: ../share/extensions/draw_from_triangle.py:180
-msgid "Side Length 'b' ("
+#, python-brace-format
+msgid "Side Length 'a' ({0}): {1}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:181
-msgid "Side Length 'c' ("
+#, python-brace-format
+msgid "Side Length 'b' ({0}): {1}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:182
-msgid "Angle 'A' (radians): "
+#, python-brace-format
+msgid "Side Length 'c' ({0}): {1}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:183
-msgid "Angle 'B' (radians): "
+msgid "Angle 'A' (radians): {}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:184
-msgid "Angle 'C' (radians): "
+msgid "Angle 'B' (radians): {}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:185
-msgid "Semiperimeter (px): "
+msgid "Angle 'C' (radians): {}"
msgstr ""
#: ../share/extensions/draw_from_triangle.py:186
-msgid "Area ("
+msgid "Semiperimeter (px): {}"
+msgstr ""
+
+#: ../share/extensions/draw_from_triangle.py:187
+#, python-brace-format
+msgid "Area ({0}^2): {1}"
msgstr ""
#: ../share/extensions/dxf_input.py:530
@@ -32789,7 +32803,7 @@ msgstr ""
msgid ""
"Gcodetools was developed to make simple Gcode from Inkscape's paths. Gcode "
"is a special format which is used in most of CNC machines. So Gcodetools "
-"allows you to use Inkscape as CAM program. It can be use with a lot of "
+"allows you to use Inkscape as CAM program. It can be used with a lot of "
"machine types: Mills Lathes Laser and Plasma cutters and engravers Mill "
"engravers Plotters etc. To get more info visit developers page at http://www."
"cnc-club.ru/gcodetools"
@@ -32939,7 +32953,7 @@ msgstr ""
#: ../share/extensions/gcodetools_area.inx.h:24
#: ../share/extensions/gcodetools_lathe.inx.h:17
#: ../share/extensions/gcodetools_path_to_gcode.inx.h:6
-msgid "Sort paths to reduse rapid distance"
+msgid "Sort paths to reduce rapid distance"
msgstr ""
#: ../share/extensions/gcodetools_area.inx.h:25
@@ -33350,7 +33364,7 @@ msgstr ""
#: ../share/extensions/gcodetools_lathe.inx.h:11
msgid ""
-"This function modifies path so it will be able to be cut with the "
+"This function modifies path so it will be possible to be cut it with a "
"rectangular cutter."
msgstr ""
@@ -33363,7 +33377,7 @@ msgid "Prepare path for plasma"
msgstr ""
#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:2
-msgid "Prepare path for plasma or laser cuters"
+msgid "Prepare path for plasma or laser cutters"
msgstr ""
#: ../share/extensions/gcodetools_prepare_path_for_plasma.inx.h:3
diff --git a/share/examples/animated-clock.svg b/share/examples/animated-clock.svg
index 6ef16240c..bc25197c8 100644
--- a/share/examples/animated-clock.svg
+++ b/share/examples/animated-clock.svg
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
@@ -11,14 +10,15 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
- width="800"
- height="373.33334"
+ width="750"
+ height="350"
onload="Start(evt)"
id="svg2707"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
+ inkscape:version="0.92"
sodipodi:docname="animated-clock.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ sodipodi:docbase="/home/d/ink/inkscape/share/examples"
sodipodi:modified="true">
<metadata
id="metadata11358">
@@ -78,14 +78,12 @@
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
- inkscape:zoom="1.1225"
- inkscape:cx="400"
- inkscape:cy="186.66667"
- inkscape:window-x="549"
- inkscape:window-y="52"
- inkscape:current-layer="svg2707"
- showgrid="false"
- inkscape:window-maximized="0" />
+ inkscape:zoom="1.2725744"
+ inkscape:cx="367.54579"
+ inkscape:cy="163.99964"
+ inkscape:window-x="198"
+ inkscape:window-y="25"
+ inkscape:current-layer="svg2707" />
<defs
id="defs2806" />
<script
@@ -164,145 +162,132 @@
window.Run = Run
</script>
<g
- transform="translate(640,160)"
- style="fill:#bfbfbf;stroke:#000000"
+ transform="translate(600,150)"
+ style="fill:#bfbfbf;stroke:black"
id="Seconds">
<g
id="RotSeconds">
<path
- d="m 9.9594707,-2.1358452 2.5189833,-0.5402055 0.841808,0.026485 3.631404,1.73114563 V 0.91841924 L 13.320262,2.6495649 12.478454,2.6760507 9.9594707,2.1358452 8.5526799,5.5321387 10.715854,6.9313466 11.292373,7.5453226 12.636059,11.337217 11.337217,12.636059 7.5453226,11.292373 6.9313466,10.715854 5.5321387,8.5526799 2.1358452,9.9594707 2.6760507,12.478454 2.6495649,13.320262 0.91841924,16.951666 h -1.83683848 l -1.73114566,-3.631404 -0.026486,-0.841808 0.5402055,-2.5189833 -3.3962935,-1.4067908 -1.3992079,2.1631741 -0.613976,0.576519 -3.7918942,1.343686 -1.298842,-1.298842 1.343686,-3.7918944 0.576519,-0.613976 2.1631739,-1.3992079 -1.4067908,-3.3962935 -2.5189831,0.5402055 -0.841808,-0.026485 -3.631404,-1.73114563 v -1.83683849 l 3.631404,-1.73114568 0.841808,-0.026485 2.5189831,0.5402054 1.4067908,-3.3962934 -2.1631739,-1.3992079 -0.576519,-0.613976 -1.343686,-3.791894 1.298842,-1.298842 3.7918942,1.343686 0.613976,0.576519 1.3992079,2.1631737 3.3962935,-1.4067909 -0.5402055,-2.5189828 0.026485,-0.841808 1.73114563,-3.631404 h 1.83683849 l 1.73114568,3.631404 0.026485,0.841808 -0.5402054,2.5189828 3.3962934,1.4067909 1.3992079,-2.1631737 0.613976,-0.576519 3.7918942,-1.343686 1.298842,1.298842 -1.343686,3.791894 -0.576519,0.613976 -2.1631739,1.3992079 z"
- id="path2719"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 9.3370038,-2.0023549 L 11.698551,-2.5087975 L 12.487746,-2.4839671 L 15.892187,-0.86101804 L 15.892187,0.86101804 L 12.487746,2.4839671 L 11.698551,2.5087975 L 9.3370038,2.0023549 L 8.0181374,5.18638 L 10.046113,6.4981374 L 10.5866,7.0737399 L 11.846305,10.628641 L 10.628641,11.846305 L 7.0737399,10.5866 L 6.4981374,10.046113 L 5.18638,8.0181374 L 2.0023549,9.3370038 L 2.5087975,11.698551 L 2.4839671,12.487746 L 0.86101804,15.892187 L -0.86101804,15.892187 L -2.4839671,12.487746 L -2.5087975,11.698551 L -2.0023549,9.3370038 L -5.18638,8.0181374 L -6.4981374,10.046113 L -7.0737399,10.5866 L -10.628641,11.846305 L -11.846305,10.628641 L -10.5866,7.0737399 L -10.046113,6.4981374 L -8.0181374,5.18638 L -9.3370038,2.0023549 L -11.698551,2.5087975 L -12.487746,2.4839671 L -15.892187,0.86101804 L -15.892187,-0.86101804 L -12.487746,-2.4839671 L -11.698551,-2.5087975 L -9.3370038,-2.0023549 L -8.0181374,-5.18638 L -10.046113,-6.4981374 L -10.5866,-7.0737399 L -11.846305,-10.628641 L -10.628641,-11.846305 L -7.0737399,-10.5866 L -6.4981374,-10.046113 L -5.18638,-8.0181374 L -2.0023549,-9.3370038 L -2.5087975,-11.698551 L -2.4839671,-12.487746 L -0.86101804,-15.892187 L 0.86101804,-15.892187 L 2.4839671,-12.487746 L 2.5087975,-11.698551 L 2.0023549,-9.3370038 L 5.18638,-8.0181374 L 6.4981374,-10.046113 L 7.0737399,-10.5866 L 10.628641,-11.846305 L 11.846305,-10.628641 L 10.5866,-7.0737399 L 10.046113,-6.4981374 L 8.0181374,-5.18638 L 9.3370038,-2.0023549 z "
+ id="path2719" />
</g>
</g>
<g
- transform="translate(522.79556,154.3958)"
- style="fill:#bfbfbf;stroke:#000000"
+ transform="translate(490.12084,144.74606)"
+ style="fill:#bfbfbf;stroke:black"
id="Gear7_5">
<g
id="RotGear7_5">
<path
- d="m -1.328896,-105.26246 -1.3333333,3.43333 -0.9333334,3.433333 -3.1,0.166666 -1.3,-3.299999 -1.6666666,-3.26667 -2.6666667,0.26667 -0.966667,3.53333 -0.566666,3.500003 -3.066667,0.5 -1.633333,-3.166663 -2,-3.06667 -2.633334,0.56667 -0.566666,3.633329 -0.2,3.533334 -3.033334,0.8 -1.933333,-2.966667 -2.333333,-2.833336 -2.533334,0.800003 -0.2,3.666666 0.166667,3.566667 -2.9,1.1 -2.266667,-2.733333 -2.6,-2.6 -2.433333,1.1 0.166667,3.666666 0.566666,3.5 -2.8,1.4 -2.5,-2.5 -2.866666,-2.3 -2.3,1.366667 0.533333,3.6 0.9,3.433333 -2.6,1.7 -2.766667,-2.2 -3.1,-2 -2.133333,1.566667 0.933333,3.566667 1.233334,3.3 -2.4,1.966666 -3,-1.933333 -3.266667,-1.633333 -2,1.766666 1.3,3.433334 1.6,3.166666 -2.2,2.2 -3.166667,-1.6 -3.433333,-1.3 -1.766667,2 1.633334,3.266667 1.933333,3 -1.966667,2.4 -3.3,-1.233333 -3.566666,-0.933334 -1.566667,2.133334 2,3.1 2.2,2.766666 -1.7,2.6 -3.433333,-0.9 -3.6,-0.533333 -1.366667,2.3 2.3,2.866667 2.5,2.5 -1.4,2.8 -3.5,-0.566667 -3.666667,-0.166667 -1.1,2.433334 2.6,2.6 2.733334,2.266666 -1.1,2.9 -3.566667,-0.166666 -3.666667,0.2 -0.799997,2.533333 2.833331,2.333333 2.966666,1.933334 -0.8,3.033333 -3.533333,0.2 -3.633334,0.566667 -0.56667,2.633333 3.06667,2 3.166667,1.633333 -0.5,3.066667 -3.499997,0.566667 -3.53334,0.966666 -0.26666,2.666667 3.26666,1.6666667 3.300004,1.3 -0.166667,3.1 -3.433337,0.9333333 -3.43333,1.3333333 V 1.337536 l 3.43333,1.3333333 3.433337,0.9333334 0.166667,3.1 -3.300004,1.3 -3.26666,1.6666666 0.26666,2.6666667 3.53334,0.966667 3.499997,0.566666 0.5,3.066667 -3.166667,1.633333 -3.06667,2 0.56667,2.6 3.633334,0.6 3.533333,0.2 0.8,3 -2.966666,1.966667 -2.833331,2.333333 0.799997,2.533334 3.666667,0.2 3.566667,-0.166667 1.1,2.9 -2.733334,2.233333 -2.6,2.633334 1.1,2.433333 3.666667,-0.2 3.5,-0.533333 1.4,2.766666 -2.5,2.533334 -2.3,2.866666 1.366667,2.3 3.6,-0.533333 3.433333,-0.933333 1.7,2.633333 -2.2,2.766667 -2,3.066666 1.566667,2.166667 3.566666,-0.933333 3.3,-1.266667 1.966667,2.433333 -1.933333,2.966667 -1.633334,3.3 1.766667,1.966667 3.433333,-1.3 3.166667,-1.6 2.2,2.2 -1.6,3.166666 -1.3,3.433334 2,1.8 3.266667,-1.633334 3,-1.933333 2.4,1.966667 -1.233334,3.3 -0.933333,3.566666 2.133333,1.566667 3.1,-2 2.766667,-2.2 2.6,1.666667 -0.9,3.433333 -0.533333,3.633333 2.3,1.333334 2.866666,-2.3 2.5,-2.5 2.8,1.433333 -0.566666,3.5 -0.166667,3.666667 2.433333,1.1 2.6,-2.6 2.266667,-2.733334 2.9,1.1 -0.166667,3.533334 0.2,3.666666 2.533334,0.833331 2.333333,-2.833331 1.933333,-2.966666 3.033334,0.8 0.2,3.533333 0.566666,3.633334 2.633334,0.56667 2,-3.1 1.633333,-3.133337 3.066667,0.466666 0.566666,3.533331 0.966667,3.53334 2.6666667,0.26666 1.6666666,-3.26666 1.3,-3.300004 3.1,0.166667 0.9333334,3.433337 1.3333333,3.4 h 2.6666667 l 1.3333333,-3.4 0.9333333,-3.433337 3.1,-0.166667 1.3,3.300004 1.6666667,3.26666 2.666667,-0.26666 0.966666,-3.53334 0.566667,-3.533331 3.066667,-0.466666 1.633333,3.133337 2,3.1 2.6,-0.56667 0.6,-3.633334 0.2,-3.533333 3,-0.8 1.966667,2.966666 2.3,2.833331 2.566666,-0.833331 0.2,-3.666666 -0.166666,-3.533334 2.9,-1.1 2.233333,2.733334 2.633333,2.6 2.433334,-1.1 -0.2,-3.666667 -0.533334,-3.5 2.766667,-1.433333 2.533333,2.5 2.866667,2.3 2.3,-1.333334 -0.533333,-3.633333 -0.933334,-3.433333 2.633334,-1.666667 2.766666,2.2 3.066667,2 2.166667,-1.566667 -0.933334,-3.566666 -1.266666,-3.3 2.433333,-1.966667 2.966667,1.933333 3.3,1.633334 1.966666,-1.8 -1.3,-3.433334 -1.6,-3.166666 2.2,-2.2 3.166667,1.6 3.433333,1.3 1.8,-1.966667 -1.666666,-3.3 -1.9,-2.966667 1.966666,-2.433333 3.3,1.266667 3.566667,0.933333 1.566667,-2.166667 -2,-3.066666 -2.233334,-2.766667 1.7,-2.633333 3.433334,0.933333 3.633333,0.533333 1.333333,-2.3 -2.3,-2.866666 -2.5,-2.533334 1.433334,-2.766666 3.5,0.533333 3.666666,0.2 1.1,-2.433333 -2.6,-2.633334 -2.733333,-2.233333 1.1,-2.9 3.533333,0.166667 3.666667,-0.2 0.833336,-2.533334 -2.833336,-2.333333 -2.966667,-1.966667 0.8,-3 3.533334,-0.2 3.633329,-0.6 0.56667,-2.6 -3.1,-2 -3.133333,-1.633333 0.466667,-3.066667 3.533336,-0.566666 3.53333,-0.966667 0.26667,-2.6666667 -3.26667,-1.6666666 -3.299999,-1.3 0.166666,-3.1 3.433333,-0.9333334 3.4,-1.3333333 v -2.6666667 l -3.4,-1.3333333 -3.433333,-0.9333333 -0.166666,-3.1 3.299999,-1.3 3.26667,-1.6666667 -0.26667,-2.666667 -3.53333,-0.966666 -3.533336,-0.566667 -0.466667,-3.066667 3.133333,-1.633333 3.1,-2 -0.56667,-2.633333 -3.633329,-0.566667 -3.533334,-0.2 -0.8,-3.033333 2.966667,-1.933334 2.833336,-2.333333 -0.833336,-2.533333 -3.666667,-0.2 -3.533333,0.166666 -1.1,-2.9 2.733333,-2.266666 2.6,-2.6 -1.1,-2.433334 -3.666666,0.166667 -3.5,0.566667 -1.433334,-2.8 2.5,-2.5 2.3,-2.866667 -1.333333,-2.3 -3.633333,0.533333 -3.433334,0.9 -1.7,-2.6 2.233334,-2.766666 2,-3.1 -1.566667,-2.133334 -3.566667,0.933334 -3.3,1.233333 -1.966666,-2.4 1.9,-3 1.666666,-3.266667 -1.8,-2 -3.433333,1.3 -3.166667,1.6 -2.2,-2.2 1.6,-3.166666 1.3,-3.433334 -1.966666,-1.766666 -3.3,1.633333 -2.966667,1.933333 -2.433333,-1.966666 1.266666,-3.3 0.933334,-3.566667 -2.166667,-1.566667 -3.066667,2 -2.766666,2.2 -2.633334,-1.7 0.933334,-3.433333 0.533333,-3.6 -2.3,-1.366667 -2.866667,2.3 -2.533333,2.5 -2.766667,-1.4 0.533334,-3.5 0.2,-3.666666 -2.433334,-1.1 -2.633333,2.6 -2.233333,2.733333 -2.9,-1.1 0.166666,-3.566667 -0.2,-3.666666 -2.566666,-0.800003 -2.3,2.833336 -1.966667,2.966667 -3,-0.8 -0.2,-3.533334 -0.6,-3.633329 -2.6,-0.56667 -2,3.06667 -1.633333,3.166663 -3.066667,-0.5 -0.566667,-3.500003 -0.966666,-3.53333 -2.666667,-0.26667 -1.6666667,3.26667 -1.3,3.299999 -3.1,-0.166666 -0.9333333,-3.433333 -1.3333333,-3.43333 z m -9.333333,20.866663 v 57.733333 c 0,8.832 -7.168,16 -16,16 h -58.1 c 4.929258,-38.502809 35.542314,-68.981263 74.1,-73.733333 z m 21.333333,0.03333 c 38.431968,4.859679 68.915467,35.286112 73.833333,73.7 H 26.671104 c -8.832,0 -16,-7.168 -16,-16 z m -95.5,95.033333 h 58.166667 c 8.832,0 16,7.168 16,16 v 58.26667 C -49.39792,80.163531 -80.115584,49.425237 -84.828896,10.670869 Z m 111.5,0 h 57.9 c -4.702475,38.66528 -35.290187,69.351168 -73.9,74.233334 V 26.670869 c 0,-8.832 7.168,-16 16,-16 z"
- id="path2731"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 488.875,46.0625 L 487.625,49.28125 L 486.75,52.5 L 483.84375,52.65625 L 482.625,49.5625 L 481.0625,46.5 L 478.5625,46.75 L 477.65625,50.0625 L 477.125,53.34375 L 474.25,53.8125 L 472.71875,50.84375 L 470.84375,47.96875 L 468.375,48.5 L 467.84375,51.90625 L 467.65625,55.21875 L 464.8125,55.96875 L 463,53.1875 L 460.8125,50.53125 L 458.4375,51.28125 L 458.25,54.71875 L 458.40625,58.0625 L 455.6875,59.09375 L 453.5625,56.53125 L 451.125,54.09375 L 448.84375,55.125 L 449,58.5625 L 449.53125,61.84375 L 446.90625,63.15625 L 444.5625,60.8125 L 441.875,58.65625 L 439.71875,59.9375 L 440.21875,63.3125 L 441.0625,66.53125 L 438.625,68.125 L 436.03125,66.0625 L 433.125,64.1875 L 431.125,65.65625 L 432,69 L 433.15625,72.09375 L 430.90625,73.9375 L 428.09375,72.125 L 425.03125,70.59375 L 423.15625,72.25 L 424.375,75.46875 L 425.875,78.4375 L 423.8125,80.5 L 420.84375,79 L 417.625,77.78125 L 415.96875,79.65625 L 417.5,82.71875 L 419.3125,85.53125 L 417.46875,87.78125 L 414.375,86.625 L 411.03125,85.75 L 409.5625,87.75 L 411.4375,90.65625 L 413.5,93.25 L 411.90625,95.6875 L 408.6875,94.84375 L 405.3125,94.34375 L 404.03125,96.5 L 406.1875,99.1875 L 408.53125,101.53125 L 407.21875,104.15625 L 403.9375,103.625 L 400.5,103.46875 L 399.46875,105.75 L 401.90625,108.1875 L 404.46875,110.3125 L 403.4375,113.03125 L 400.09375,112.875 L 396.65625,113.0625 L 395.90625,115.4375 L 398.5625,117.625 L 401.34375,119.4375 L 400.59375,122.28125 L 397.28125,122.46875 L 393.875,123 L 393.34375,125.46875 L 396.21875,127.34375 L 399.1875,128.875 L 398.71875,131.75 L 395.4375,132.28125 L 392.125,133.1875 L 391.875,135.6875 L 394.9375,137.25 L 398.03125,138.46875 L 397.875,141.375 L 394.65625,142.25 L 391.4375,143.5 L 391.4375,146 L 394.65625,147.25 L 397.875,148.125 L 398.03125,151.03125 L 394.9375,152.25 L 391.875,153.8125 L 392.125,156.3125 L 395.4375,157.21875 L 398.71875,157.75 L 399.1875,160.625 L 396.21875,162.15625 L 393.34375,164.03125 L 393.875,166.46875 L 397.28125,167.03125 L 400.59375,167.21875 L 401.34375,170.03125 L 398.5625,171.875 L 395.90625,174.0625 L 396.65625,176.4375 L 400.09375,176.625 L 403.4375,176.46875 L 404.46875,179.1875 L 401.90625,181.28125 L 399.46875,183.75 L 400.5,186.03125 L 403.9375,185.84375 L 407.21875,185.34375 L 408.53125,187.9375 L 406.1875,190.3125 L 404.03125,193 L 405.3125,195.15625 L 408.6875,194.65625 L 411.90625,193.78125 L 413.5,196.25 L 411.4375,198.84375 L 409.5625,201.71875 L 411.03125,203.75 L 414.375,202.875 L 417.46875,201.6875 L 419.3125,203.96875 L 417.5,206.75 L 415.96875,209.84375 L 417.625,211.6875 L 420.84375,210.46875 L 423.8125,208.96875 L 425.875,211.03125 L 424.375,214 L 423.15625,217.21875 L 425.03125,218.90625 L 428.09375,217.375 L 430.90625,215.5625 L 433.15625,217.40625 L 432,220.5 L 431.125,223.84375 L 433.125,225.3125 L 436.03125,223.4375 L 438.625,221.375 L 441.0625,222.9375 L 440.21875,226.15625 L 439.71875,229.5625 L 441.875,230.8125 L 444.5625,228.65625 L 446.90625,226.3125 L 449.53125,227.65625 L 449,230.9375 L 448.84375,234.375 L 451.125,235.40625 L 453.5625,232.96875 L 455.6875,230.40625 L 458.40625,231.4375 L 458.25,234.75 L 458.4375,238.1875 L 460.8125,238.96875 L 463,236.3125 L 464.8125,233.53125 L 467.65625,234.28125 L 467.84375,237.59375 L 468.375,241 L 470.84375,241.53125 L 472.71875,238.625 L 474.25,235.6875 L 477.125,236.125 L 477.65625,239.4375 L 478.5625,242.75 L 481.0625,243 L 482.625,239.9375 L 483.84375,236.84375 L 486.75,237 L 487.625,240.21875 L 488.875,243.40625 L 491.375,243.40625 L 492.625,240.21875 L 493.5,237 L 496.40625,236.84375 L 497.625,239.9375 L 499.1875,243 L 501.6875,242.75 L 502.59375,239.4375 L 503.125,236.125 L 506,235.6875 L 507.53125,238.625 L 509.40625,241.53125 L 511.84375,241 L 512.40625,237.59375 L 512.59375,234.28125 L 515.40625,233.53125 L 517.25,236.3125 L 519.40625,238.96875 L 521.8125,238.1875 L 522,234.75 L 521.84375,231.4375 L 524.5625,230.40625 L 526.65625,232.96875 L 529.125,235.40625 L 531.40625,234.375 L 531.21875,230.9375 L 530.71875,227.65625 L 533.3125,226.3125 L 535.6875,228.65625 L 538.375,230.8125 L 540.53125,229.5625 L 540.03125,226.15625 L 539.15625,222.9375 L 541.625,221.375 L 544.21875,223.4375 L 547.09375,225.3125 L 549.125,223.84375 L 548.25,220.5 L 547.0625,217.40625 L 549.34375,215.5625 L 552.125,217.375 L 555.21875,218.90625 L 557.0625,217.21875 L 555.84375,214 L 554.34375,211.03125 L 556.40625,208.96875 L 559.375,210.46875 L 562.59375,211.6875 L 564.28125,209.84375 L 562.71875,206.75 L 560.9375,203.96875 L 562.78125,201.6875 L 565.875,202.875 L 569.21875,203.75 L 570.6875,201.71875 L 568.8125,198.84375 L 566.71875,196.25 L 568.3125,193.78125 L 571.53125,194.65625 L 574.9375,195.15625 L 576.1875,193 L 574.03125,190.3125 L 571.6875,187.9375 L 573.03125,185.34375 L 576.3125,185.84375 L 579.75,186.03125 L 580.78125,183.75 L 578.34375,181.28125 L 575.78125,179.1875 L 576.8125,176.46875 L 580.125,176.625 L 583.5625,176.4375 L 584.34375,174.0625 L 581.6875,171.875 L 578.90625,170.03125 L 579.65625,167.21875 L 582.96875,167.03125 L 586.375,166.46875 L 586.90625,164.03125 L 584,162.15625 L 581.0625,160.625 L 581.5,157.75 L 584.8125,157.21875 L 588.125,156.3125 L 588.375,153.8125 L 585.3125,152.25 L 582.21875,151.03125 L 582.375,148.125 L 585.59375,147.25 L 588.78125,146 L 588.78125,143.5 L 585.59375,142.25 L 582.375,141.375 L 582.21875,138.46875 L 585.3125,137.25 L 588.375,135.6875 L 588.125,133.1875 L 584.8125,132.28125 L 581.5,131.75 L 581.0625,128.875 L 584,127.34375 L 586.90625,125.46875 L 586.375,123 L 582.96875,122.46875 L 579.65625,122.28125 L 578.90625,119.4375 L 581.6875,117.625 L 584.34375,115.4375 L 583.5625,113.0625 L 580.125,112.875 L 576.8125,113.03125 L 575.78125,110.3125 L 578.34375,108.1875 L 580.78125,105.75 L 579.75,103.46875 L 576.3125,103.625 L 573.03125,104.15625 L 571.6875,101.53125 L 574.03125,99.1875 L 576.1875,96.5 L 574.9375,94.34375 L 571.53125,94.84375 L 568.3125,95.6875 L 566.71875,93.25 L 568.8125,90.65625 L 570.6875,87.75 L 569.21875,85.75 L 565.875,86.625 L 562.78125,87.78125 L 560.9375,85.53125 L 562.71875,82.71875 L 564.28125,79.65625 L 562.59375,77.78125 L 559.375,79 L 556.40625,80.5 L 554.34375,78.4375 L 555.84375,75.46875 L 557.0625,72.25 L 555.21875,70.59375 L 552.125,72.125 L 549.34375,73.9375 L 547.0625,72.09375 L 548.25,69 L 549.125,65.65625 L 547.09375,64.1875 L 544.21875,66.0625 L 541.625,68.125 L 539.15625,66.53125 L 540.03125,63.3125 L 540.53125,59.9375 L 538.375,58.65625 L 535.6875,60.8125 L 533.3125,63.15625 L 530.71875,61.84375 L 531.21875,58.5625 L 531.40625,55.125 L 529.125,54.09375 L 526.65625,56.53125 L 524.5625,59.09375 L 521.84375,58.0625 L 522,54.71875 L 521.8125,51.28125 L 519.40625,50.53125 L 517.25,53.1875 L 515.40625,55.96875 L 512.59375,55.21875 L 512.40625,51.90625 L 511.84375,48.5 L 509.40625,47.96875 L 507.53125,50.84375 L 506,53.8125 L 503.125,53.34375 L 502.59375,50.0625 L 501.6875,46.75 L 499.1875,46.5 L 497.625,49.5625 L 496.40625,52.65625 L 493.5,52.5 L 492.625,49.28125 L 491.375,46.0625 L 488.875,46.0625 z M 480.125,65.625 L 480.125,119.75 C 480.125,128.03 473.405,134.75 465.125,134.75 L 410.65625,134.75 C 415.27743,98.653617 443.97717,70.080066 480.125,65.625 z M 500.125,65.65625 C 536.15497,70.212199 564.73325,98.73698 569.34375,134.75 L 515.125,134.75 C 506.845,134.75 500.125,128.03 500.125,119.75 L 500.125,65.65625 z M 410.59375,154.75 L 465.125,154.75 C 473.405,154.75 480.125,161.47 480.125,169.75 L 480.125,224.375 C 443.81029,219.89937 415.01248,191.08222 410.59375,154.75 z M 515.125,154.75 L 569.40625,154.75 C 564.99768,190.9987 536.3217,219.76672 500.125,224.34375 L 500.125,169.75 C 500.125,161.47 506.845,154.75 515.125,154.75 z "
+ transform="translate(-490.12084,-144.74606)"
+ id="path2731" />
<path
- d="m 9.9594707,-2.1358452 2.5189833,-0.5402055 0.841808,0.026485 3.631404,1.73114563 V 0.91841924 L 13.320262,2.6495649 12.478454,2.6760507 9.9594707,2.1358452 8.5526799,5.5321387 10.715854,6.9313466 11.292373,7.5453226 12.636059,11.337217 11.337217,12.636059 7.5453226,11.292373 6.9313466,10.715854 5.5321387,8.5526799 2.1358452,9.9594707 2.6760507,12.478454 2.6495649,13.320262 0.91841924,16.951666 h -1.83683848 l -1.73114566,-3.631404 -0.026486,-0.841808 0.5402055,-2.5189833 -3.3962935,-1.4067908 -1.3992079,2.1631741 -0.613976,0.576519 -3.7918942,1.343686 -1.298842,-1.298842 1.343686,-3.7918944 0.576519,-0.613976 2.1631739,-1.3992079 -1.4067908,-3.3962935 -2.5189831,0.5402055 -0.841808,-0.026485 -3.631404,-1.73114563 v -1.83683849 l 3.631404,-1.73114568 0.841808,-0.026485 2.5189831,0.5402054 1.4067908,-3.3962934 -2.1631739,-1.3992079 -0.576519,-0.613976 -1.343686,-3.791894 1.298842,-1.298842 3.7918942,1.343686 0.613976,0.576519 1.3992079,2.1631737 3.3962935,-1.4067909 -0.5402055,-2.5189828 0.026485,-0.841808 1.73114563,-3.631404 h 1.83683849 l 1.73114568,3.631404 0.026485,0.841808 -0.5402054,2.5189828 3.3962934,1.4067909 1.3992079,-2.1631737 0.613976,-0.576519 3.7918942,-1.343686 1.298842,1.298842 -1.343686,3.791894 -0.576519,0.613976 -2.1631739,1.3992079 z"
- id="path2743"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 9.3370038,-2.0023549 L 11.698551,-2.5087975 L 12.487746,-2.4839671 L 15.892187,-0.86101804 L 15.892187,0.86101804 L 12.487746,2.4839671 L 11.698551,2.5087975 L 9.3370038,2.0023549 L 8.0181374,5.18638 L 10.046113,6.4981374 L 10.5866,7.0737399 L 11.846305,10.628641 L 10.628641,11.846305 L 7.0737399,10.5866 L 6.4981374,10.046113 L 5.18638,8.0181374 L 2.0023549,9.3370038 L 2.5087975,11.698551 L 2.4839671,12.487746 L 0.86101804,15.892187 L -0.86101804,15.892187 L -2.4839671,12.487746 L -2.5087975,11.698551 L -2.0023549,9.3370038 L -5.18638,8.0181374 L -6.4981374,10.046113 L -7.0737399,10.5866 L -10.628641,11.846305 L -11.846305,10.628641 L -10.5866,7.0737399 L -10.046113,6.4981374 L -8.0181374,5.18638 L -9.3370038,2.0023549 L -11.698551,2.5087975 L -12.487746,2.4839671 L -15.892187,0.86101804 L -15.892187,-0.86101804 L -12.487746,-2.4839671 L -11.698551,-2.5087975 L -9.3370038,-2.0023549 L -8.0181374,-5.18638 L -10.046113,-6.4981374 L -10.5866,-7.0737399 L -11.846305,-10.628641 L -10.628641,-11.846305 L -7.0737399,-10.5866 L -6.4981374,-10.046113 L -5.18638,-8.0181374 L -2.0023549,-9.3370038 L -2.5087975,-11.698551 L -2.4839671,-12.487746 L -0.86101804,-15.892187 L 0.86101804,-15.892187 L 2.4839671,-12.487746 L 2.5087975,-11.698551 L 2.0023549,-9.3370038 L 5.18638,-8.0181374 L 6.4981374,-10.046113 L 7.0737399,-10.5866 L 10.628641,-11.846305 L 11.846305,-10.628641 L 10.5866,-7.0737399 L 10.046113,-6.4981374 L 8.0181374,-5.18638 L 9.3370038,-2.0023549 z "
+ id="path2743" />
<g
id="Nut">
<path
id="path2503"
- style="opacity:1;fill:#666666;stroke:#000000;stroke-width:1.60000002"
- d="m -0.128896,-6.1291307 5.54256,3.2 v 6.4 l -5.54256,3.2 -5.54256,-3.2 v -6.4 z"
- inkscape:connector-curvature="0" />
+ style="opacity:1;fill:#666666;stroke:black"
+ transform="matrix(1.5,0,0,1.5,-735.12084,-217.24606)"
+ d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
<rect
id="rect2509"
- style="opacity:1;fill:#333333;stroke:none;stroke-width:1.06666672"
- y="-6.1291308"
- x="-1.1955627"
- height="12.8"
- width="2.1333334" />
+ style="opacity:1;fill:#333333;stroke:none"
+ transform="translate(-490.12084,-144.74606)"
+ y="139"
+ x="489"
+ height="12"
+ width="2" />
<path
id="path2511"
- style="opacity:1;fill:none;stroke:#000000;stroke-width:1.60000002"
- d="m -0.128896,-6.1291307 5.54256,3.2 v 6.4 l -5.54256,3.2 -5.54256,-3.2 v -6.4 z"
- inkscape:connector-curvature="0" />
+ style="opacity:1;fill:none;stroke:black"
+ transform="matrix(1.5,0,0,1.5,-735.12084,-217.24606)"
+ d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
</g>
</g>
</g>
<g
- transform="translate(400,160)"
- style="fill:#bfbfbf;stroke:#000000"
+ transform="translate(375,150)"
+ style="fill:#bfbfbf;stroke:black"
id="Minutes">
<g
id="RotMinutes">
<path
- d="m -1.3333333,-112.03333 -1.3333334,3.4 -0.9666666,3.43333 -3.0666667,0.16667 -1.3,-3.33334 -1.6333333,-3.26666 -2.6666667,0.26666 -1,3.53334 -0.6,3.5 -3.066667,0.46666 -1.6,-3.2 -1.966666,-3.06666 -2.633334,0.5 L -23.8,-106 l -0.266667,3.53333 -3,0.76667 -1.9,-3 -2.266666,-2.9 -2.566667,0.76667 -0.266667,3.66666 L -34,-99.6 l -2.9,1.033333 -2.2,-2.800003 -2.533333,-2.66666 L -44.1,-103 -44.03333,-99.333333 -43.6,-95.8 l -2.8,1.333333 -2.466667,-2.566666 -2.766666,-2.4 -2.366667,1.266666 0.433333,3.633334 0.8,3.466666 -2.666666,1.6 -2.7,-2.333333 -3,-2.1 -2.233334,1.5 0.8,3.566667 1.1,3.366666 -2.466666,1.866667 -2.9,-2.066667 -3.2,-1.8 -2.066667,1.7 1.133333,3.5 1.433334,3.233334 -2.3,2.1 -3.1,-1.766667 -3.333334,-1.466667 -1.9,1.9 1.466667,3.333334 1.766667,3.1 -2.1,2.3 -3.233334,-1.433334 -3.5,-1.133333 -1.7,2.066667 1.8,3.2 2.066667,2.9 -1.866667,2.466666 -3.366666,-1.1 -3.566667,-0.8 -1.5,2.233334 2.1,3 2.333333,2.7 -1.6,2.666666 -3.466666,-0.8 L -98.166667,-54 l -1.266666,2.366667 2.4,2.766666 L -94.466667,-46.4 -95.8,-43.6 -99.333333,-44.033333 -103,-44.1 l -1.03333,2.466667 2.66666,2.533333 2.800003,2.2 -1.033333,2.9 -3.56667,-0.06667 -3.66666,0.266667 -0.76667,2.566667 2.9,2.266666 3,1.9 -0.76667,3 L -106,-23.8 l -3.63333,0.633333 -0.5,2.633334 3.06666,1.966666 3.2,1.6 -0.46666,3.066667 -3.5,0.6 -3.53334,1 -0.26666,2.6666667 3.26666,1.6333333 3.33334,1.3 -0.16667,3.0666667 -3.43333,0.9666666 -3.4,1.3333334 v 2.6666666 l 3.4,1.3333334 3.43333,0.9666666 0.16667,3.0666667 -3.33334,1.3 -3.26666,1.6333333 0.26666,2.6666667 3.53334,1 3.5,0.6 0.46666,3.066667 -3.2,1.6 -3.06666,1.966666 0.5,2.633334 L -106,23.8 l 3.53333,0.266667 0.76667,3 -3,1.9 -2.9,2.266666 0.76667,2.566667 3.66666,0.266667 L -99.6,34 l 1.033333,2.9 -2.800003,2.2 -2.66666,2.533333 L -103,44.1 -99.333333,44.033333 -95.8,43.6 l 1.333333,2.8 -2.566666,2.466667 -2.4,2.766666 1.266666,2.366667 3.633334,-0.433333 3.466666,-0.8 1.6,2.666666 -2.333333,2.7 -2.1,3 1.5,2.233334 3.566667,-0.8 3.366666,-1.1 1.866667,2.466666 -2.066667,2.9 -1.8,3.2 1.7,2.066667 3.5,-1.133333 3.233334,-1.433334 2.1,2.3 -1.766667,3.1 -1.466667,3.333334 1.9,1.9 3.333334,-1.466667 3.1,-1.766667 2.3,2.1 -1.433334,3.233334 -1.133333,3.5 2.066667,1.7 3.2,-1.8 2.9,-2.066667 2.466666,1.866667 -1.1,3.366666 -0.8,3.566667 2.233334,1.5 3,-2.1 2.7,-2.333333 2.666666,1.6 -0.8,3.466666 L -54,98.166667 l 2.366667,1.266666 2.766666,-2.4 L -46.4,94.466667 -43.6,95.8 -44.033333,99.333333 -44.1,103 l 2.466667,1.03333 2.533333,-2.66666 2.2,-2.800003 2.9,1.033333 -0.06667,3.56667 0.266667,3.66666 2.566667,0.76667 2.266666,-2.9 1.9,-3 3,0.76667 L -23.8,106 l 0.633333,3.63333 2.633334,0.5 1.966666,-3.06666 1.6,-3.2 3.066667,0.46666 0.6,3.5 1,3.53334 2.6666667,0.26666 L -8,108.36667 l 1.3,-3.33334 3.0666667,0.16667 0.9666666,3.43333 1.3333334,3.4 h 2.6666666 l 1.3333334,-3.4 L 3.6333333,105.2 6.7,105.03333 8,108.36667 9.6333333,111.63333 12.3,111.36667 l 1,-3.53334 0.6,-3.5 3.066667,-0.46666 1.6,3.2 1.966666,3.06666 2.633334,-0.5 L 23.8,106 l 0.266667,-3.53333 3,-0.76667 1.9,3 2.266666,2.9 L 33.8,106.83333 34.066667,103.16667 34,99.6 l 2.9,-1.033333 2.2,2.800003 2.533333,2.66666 L 44.1,103 44.033333,99.333333 43.6,95.8 l 2.8,-1.333333 2.466667,2.566666 2.766666,2.4 L 54,98.166667 l -0.433333,-3.633334 -0.8,-3.466666 2.666666,-1.6 2.7,2.333333 3,2.1 2.233334,-1.5 -0.8,-3.566667 -1.1,-3.366666 2.466666,-1.866667 2.9,2.066667 3.2,1.8 2.066667,-1.7 -1.133333,-3.5 -1.433334,-3.233334 2.3,-2.1 3.1,1.766667 3.333334,1.466667 1.9,-1.9 L 78.7,74.933333 l -1.766667,-3.1 2.1,-2.3 3.233334,1.433334 3.5,1.133333 1.7,-2.066667 -1.8,-3.2 -2.066667,-2.9 1.866667,-2.466666 3.366666,1.1 3.566667,0.8 1.5,-2.233334 -2.1,-3 -2.333333,-2.7 1.6,-2.666666 3.466666,0.8 L 98.166667,54 l 1.266666,-2.366667 -2.4,-2.766666 L 94.466667,46.4 95.8,43.6 99.333333,44.033333 103,44.1 104.03333,41.633333 101.36667,39.1 98.566667,36.9 99.6,34 103.16667,34.066667 106.83333,33.8 107.6,31.233333 l -2.9,-2.266666 -3,-1.9 0.76667,-3 L 106,23.8 l 3.63333,-0.633333 0.5,-2.633334 -3.06666,-1.966666 -3.2,-1.6 0.46666,-3.066667 3.5,-0.6 3.53334,-1 0.26666,-2.6666667 L 108.36667,8 105.03333,6.7 105.2,3.6333333 l 3.43333,-0.9666666 3.4,-1.3333334 v -2.6666666 l -3.4,-1.3333334 L 105.2,-3.6333333 105.03333,-6.7 108.36667,-8 111.63333,-9.6333333 111.36667,-12.3 l -3.53334,-1 -3.5,-0.6 -0.46666,-3.066667 3.2,-1.6 3.06666,-1.966666 -0.5,-2.633334 L 106,-23.8 l -3.53333,-0.266667 -0.76667,-3 3,-1.9 2.9,-2.266666 L 106.83333,-33.8 103.16667,-34.066667 99.6,-34 l -1.033333,-2.9 2.800003,-2.2 2.66666,-2.533333 L 103,-44.1 99.333333,-44.033333 95.8,-43.6 l -1.333333,-2.8 2.566666,-2.466667 2.4,-2.766666 L 98.166667,-54 l -3.633334,0.433333 -3.466666,0.8 -1.6,-2.666666 2.333333,-2.7 2.1,-3 -1.5,-2.233334 -3.566667,0.8 -3.366666,1.1 -1.866667,-2.466666 2.066667,-2.9 1.8,-3.2 -1.7,-2.066667 -3.5,1.133333 -3.233334,1.433334 -2.1,-2.3 1.766667,-3.1 1.466667,-3.333334 -1.9,-1.9 -3.333334,1.466667 -3.1,1.766667 -2.3,-2.1 1.433334,-3.233334 1.133333,-3.5 -2.066667,-1.7 -3.2,1.8 -2.9,2.066667 -2.466666,-1.866667 1.1,-3.366666 0.8,-3.566667 -2.233334,-1.5 -3,2.1 -2.7,2.333333 -2.666666,-1.6 0.8,-3.466666 L 54,-98.166667 l -2.366667,-1.266666 -2.766666,2.4 L 46.4,-94.466667 43.6,-95.8 44.033333,-99.333333 44.1,-103 41.633333,-104.03333 39.1,-101.36667 36.9,-98.566667 34,-99.6 34.066667,-103.16667 33.8,-106.83333 31.233333,-107.6 l -2.266666,2.9 -1.9,3 -3,-0.76667 L 23.8,-106 l -0.633333,-3.63333 -2.633334,-0.5 -1.966666,3.06666 -1.6,3.2 -3.066667,-0.46666 -0.6,-3.5 -1,-3.53334 -2.6666667,-0.26666 L 8,-108.36667 6.7,-105.03333 3.6333333,-105.2 l -0.9666666,-3.43333 -1.3333334,-3.4 z M 0,-90.666667 c 21.178688,0 40.661781,7.282869 56.1,19.466667 l -44.8,44.8 c -6.2451627,6.245163 -16.3548373,6.245163 -22.6,0 L -56.1,-71.2 C -40.661781,-83.383798 -21.178688,-90.666667 0,-90.666667 Z M -71.2,-56.1 l 44.8,44.8 c 6.245163,6.2451627 6.245163,16.3548373 0,22.6 L -71.2,56.1 C -83.383798,40.661781 -90.666667,21.178688 -90.666667,0 c 0,-21.178688 7.282869,-40.661781 19.466667,-56.1 z m 142.4,0 c 12.183797,15.438219 19.466667,34.921312 19.466667,56.1 0,21.178688 -7.28287,40.661781 -19.466667,56.1 L 26.4,11.3 c -6.245163,-6.2451627 -6.245163,-16.3548373 0,-22.6 z M 0,21.7 c 4.0955627,0 8.1774187,1.577419 11.3,4.7 L 56.1,71.2 C 40.661781,83.383797 21.178688,90.666667 0,90.666667 c -21.178688,0 -40.661781,-7.28287 -56.1,-19.466667 L -11.3,26.4 C -8.1774187,23.277419 -4.0955627,21.7 0,21.7 Z"
- id="path2471"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M -1.25,-105.03125 L -2.5,-101.84375 L -3.40625,-98.625 L -6.28125,-98.46875 L -7.5,-101.59375 L -9.03125,-104.65625 L -11.53125,-104.40625 L -12.46875,-101.09375 L -13.03125,-97.8125 L -15.90625,-97.375 L -17.40625,-100.375 L -19.25,-103.25 L -21.71875,-102.78125 L -22.3125,-99.375 L -22.5625,-96.0625 L -25.375,-95.34375 L -27.15625,-98.15625 L -29.28125,-100.875 L -31.6875,-100.15625 L -31.9375,-96.71875 L -31.875,-93.375 L -34.59375,-92.40625 L -36.65625,-95.03125 L -39.03125,-97.53125 L -41.34375,-96.5625 L -41.28125,-93.125 L -40.875,-89.8125 L -43.5,-88.5625 L -45.8125,-90.96875 L -48.40625,-93.21875 L -50.625,-92.03125 L -50.21875,-88.625 L -49.46875,-85.375 L -51.96875,-83.875 L -54.5,-86.0625 L -57.3125,-88.03125 L -59.40625,-86.625 L -58.65625,-83.28125 L -57.625,-80.125 L -59.9375,-78.375 L -62.65625,-80.3125 L -65.65625,-82 L -67.59375,-80.40625 L -66.53125,-77.125 L -65.1875,-74.09375 L -67.34375,-72.125 L -70.25,-73.78125 L -73.375,-75.15625 L -75.15625,-73.375 L -73.78125,-70.25 L -72.125,-67.34375 L -74.09375,-65.1875 L -77.125,-66.53125 L -80.40625,-67.59375 L -82,-65.65625 L -80.3125,-62.65625 L -78.375,-59.9375 L -80.125,-57.625 L -83.28125,-58.65625 L -86.625,-59.40625 L -88.03125,-57.3125 L -86.0625,-54.5 L -83.875,-51.96875 L -85.375,-49.46875 L -88.625,-50.21875 L -92.03125,-50.625 L -93.21875,-48.40625 L -90.96875,-45.8125 L -88.5625,-43.5 L -89.8125,-40.875 L -93.125,-41.28125 L -96.5625,-41.34375 L -97.53125,-39.03125 L -95.03125,-36.65625 L -92.40625,-34.59375 L -93.375,-31.875 L -96.71875,-31.9375 L -100.15625,-31.6875 L -100.875,-29.28125 L -98.15625,-27.15625 L -95.34375,-25.375 L -96.0625,-22.5625 L -99.375,-22.3125 L -102.78125,-21.71875 L -103.25,-19.25 L -100.375,-17.40625 L -97.375,-15.90625 L -97.8125,-13.03125 L -101.09375,-12.46875 L -104.40625,-11.53125 L -104.65625,-9.03125 L -101.59375,-7.5 L -98.46875,-6.28125 L -98.625,-3.40625 L -101.84375,-2.5 L -105.03125,-1.25 L -105.03125,1.25 L -101.84375,2.5 L -98.625,3.40625 L -98.46875,6.28125 L -101.59375,7.5 L -104.65625,9.03125 L -104.40625,11.53125 L -101.09375,12.46875 L -97.8125,13.03125 L -97.375,15.90625 L -100.375,17.40625 L -103.25,19.25 L -102.78125,21.71875 L -99.375,22.3125 L -96.0625,22.5625 L -95.34375,25.375 L -98.15625,27.15625 L -100.875,29.28125 L -100.15625,31.6875 L -96.71875,31.9375 L -93.375,31.875 L -92.40625,34.59375 L -95.03125,36.65625 L -97.53125,39.03125 L -96.5625,41.34375 L -93.125,41.28125 L -89.8125,40.875 L -88.5625,43.5 L -90.96875,45.8125 L -93.21875,48.40625 L -92.03125,50.625 L -88.625,50.21875 L -85.375,49.46875 L -83.875,51.96875 L -86.0625,54.5 L -88.03125,57.3125 L -86.625,59.40625 L -83.28125,58.65625 L -80.125,57.625 L -78.375,59.9375 L -80.3125,62.65625 L -82,65.65625 L -80.40625,67.59375 L -77.125,66.53125 L -74.09375,65.1875 L -72.125,67.34375 L -73.78125,70.25 L -75.15625,73.375 L -73.375,75.15625 L -70.25,73.78125 L -67.34375,72.125 L -65.1875,74.09375 L -66.53125,77.125 L -67.59375,80.40625 L -65.65625,82 L -62.65625,80.3125 L -59.9375,78.375 L -57.625,80.125 L -58.65625,83.28125 L -59.40625,86.625 L -57.3125,88.03125 L -54.5,86.0625 L -51.96875,83.875 L -49.46875,85.375 L -50.21875,88.625 L -50.625,92.03125 L -48.40625,93.21875 L -45.8125,90.96875 L -43.5,88.5625 L -40.875,89.8125 L -41.28125,93.125 L -41.34375,96.5625 L -39.03125,97.53125 L -36.65625,95.03125 L -34.59375,92.40625 L -31.875,93.375 L -31.9375,96.71875 L -31.6875,100.15625 L -29.28125,100.875 L -27.15625,98.15625 L -25.375,95.34375 L -22.5625,96.0625 L -22.3125,99.375 L -21.71875,102.78125 L -19.25,103.25 L -17.40625,100.375 L -15.90625,97.375 L -13.03125,97.8125 L -12.46875,101.09375 L -11.53125,104.40625 L -9.03125,104.65625 L -7.5,101.59375 L -6.28125,98.46875 L -3.40625,98.625 L -2.5,101.84375 L -1.25,105.03125 L 1.25,105.03125 L 2.5,101.84375 L 3.40625,98.625 L 6.28125,98.46875 L 7.5,101.59375 L 9.03125,104.65625 L 11.53125,104.40625 L 12.46875,101.09375 L 13.03125,97.8125 L 15.90625,97.375 L 17.40625,100.375 L 19.25,103.25 L 21.71875,102.78125 L 22.3125,99.375 L 22.5625,96.0625 L 25.375,95.34375 L 27.15625,98.15625 L 29.28125,100.875 L 31.6875,100.15625 L 31.9375,96.71875 L 31.875,93.375 L 34.59375,92.40625 L 36.65625,95.03125 L 39.03125,97.53125 L 41.34375,96.5625 L 41.28125,93.125 L 40.875,89.8125 L 43.5,88.5625 L 45.8125,90.96875 L 48.40625,93.21875 L 50.625,92.03125 L 50.21875,88.625 L 49.46875,85.375 L 51.96875,83.875 L 54.5,86.0625 L 57.3125,88.03125 L 59.40625,86.625 L 58.65625,83.28125 L 57.625,80.125 L 59.9375,78.375 L 62.65625,80.3125 L 65.65625,82 L 67.59375,80.40625 L 66.53125,77.125 L 65.1875,74.09375 L 67.34375,72.125 L 70.25,73.78125 L 73.375,75.15625 L 75.15625,73.375 L 73.78125,70.25 L 72.125,67.34375 L 74.09375,65.1875 L 77.125,66.53125 L 80.40625,67.59375 L 82,65.65625 L 80.3125,62.65625 L 78.375,59.9375 L 80.125,57.625 L 83.28125,58.65625 L 86.625,59.40625 L 88.03125,57.3125 L 86.0625,54.5 L 83.875,51.96875 L 85.375,49.46875 L 88.625,50.21875 L 92.03125,50.625 L 93.21875,48.40625 L 90.96875,45.8125 L 88.5625,43.5 L 89.8125,40.875 L 93.125,41.28125 L 96.5625,41.34375 L 97.53125,39.03125 L 95.03125,36.65625 L 92.40625,34.59375 L 93.375,31.875 L 96.71875,31.9375 L 100.15625,31.6875 L 100.875,29.28125 L 98.15625,27.15625 L 95.34375,25.375 L 96.0625,22.5625 L 99.375,22.3125 L 102.78125,21.71875 L 103.25,19.25 L 100.375,17.40625 L 97.375,15.90625 L 97.8125,13.03125 L 101.09375,12.46875 L 104.40625,11.53125 L 104.65625,9.03125 L 101.59375,7.5 L 98.46875,6.28125 L 98.625,3.40625 L 101.84375,2.5 L 105.03125,1.25 L 105.03125,-1.25 L 101.84375,-2.5 L 98.625,-3.40625 L 98.46875,-6.28125 L 101.59375,-7.5 L 104.65625,-9.03125 L 104.40625,-11.53125 L 101.09375,-12.46875 L 97.8125,-13.03125 L 97.375,-15.90625 L 100.375,-17.40625 L 103.25,-19.25 L 102.78125,-21.71875 L 99.375,-22.3125 L 96.0625,-22.5625 L 95.34375,-25.375 L 98.15625,-27.15625 L 100.875,-29.28125 L 100.15625,-31.6875 L 96.71875,-31.9375 L 93.375,-31.875 L 92.40625,-34.59375 L 95.03125,-36.65625 L 97.53125,-39.03125 L 96.5625,-41.34375 L 93.125,-41.28125 L 89.8125,-40.875 L 88.5625,-43.5 L 90.96875,-45.8125 L 93.21875,-48.40625 L 92.03125,-50.625 L 88.625,-50.21875 L 85.375,-49.46875 L 83.875,-51.96875 L 86.0625,-54.5 L 88.03125,-57.3125 L 86.625,-59.40625 L 83.28125,-58.65625 L 80.125,-57.625 L 78.375,-59.9375 L 80.3125,-62.65625 L 82,-65.65625 L 80.40625,-67.59375 L 77.125,-66.53125 L 74.09375,-65.1875 L 72.125,-67.34375 L 73.78125,-70.25 L 75.15625,-73.375 L 73.375,-75.15625 L 70.25,-73.78125 L 67.34375,-72.125 L 65.1875,-74.09375 L 66.53125,-77.125 L 67.59375,-80.40625 L 65.65625,-82 L 62.65625,-80.3125 L 59.9375,-78.375 L 57.625,-80.125 L 58.65625,-83.28125 L 59.40625,-86.625 L 57.3125,-88.03125 L 54.5,-86.0625 L 51.96875,-83.875 L 49.46875,-85.375 L 50.21875,-88.625 L 50.625,-92.03125 L 48.40625,-93.21875 L 45.8125,-90.96875 L 43.5,-88.5625 L 40.875,-89.8125 L 41.28125,-93.125 L 41.34375,-96.5625 L 39.03125,-97.53125 L 36.65625,-95.03125 L 34.59375,-92.40625 L 31.875,-93.375 L 31.9375,-96.71875 L 31.6875,-100.15625 L 29.28125,-100.875 L 27.15625,-98.15625 L 25.375,-95.34375 L 22.5625,-96.0625 L 22.3125,-99.375 L 21.71875,-102.78125 L 19.25,-103.25 L 17.40625,-100.375 L 15.90625,-97.375 L 13.03125,-97.8125 L 12.46875,-101.09375 L 11.53125,-104.40625 L 9.03125,-104.65625 L 7.5,-101.59375 L 6.28125,-98.46875 L 3.40625,-98.625 L 2.5,-101.84375 L 1.25,-105.03125 L -1.25,-105.03125 z M 0,-85 C 19.85502,-85 38.12042,-78.172311 52.59375,-66.75 L 10.59375,-24.75 C 4.73891,-18.89516 -4.73891,-18.89516 -10.59375,-24.75 L -52.59375,-66.75 C -38.12042,-78.172311 -19.85502,-85 0,-85 z M -66.75,-52.59375 L -24.75,-10.59375 C -18.89516,-4.73891 -18.89516,4.73891 -24.75,10.59375 L -66.75,52.59375 C -78.172311,38.12042 -85,19.85502 -85,0 C -85,-19.85502 -78.172311,-38.12042 -66.75,-52.59375 z M 66.75,-52.59375 C 78.17231,-38.12042 85,-19.85502 85,0 C 85,19.85502 78.17231,38.12042 66.75,52.59375 L 24.75,10.59375 C 18.89516,4.73891 18.89516,-4.73891 24.75,-10.59375 L 66.75,-52.59375 z M 0,20.34375 C 3.83959,20.34375 7.66633,21.82258 10.59375,24.75 L 52.59375,66.75 C 38.12042,78.17231 19.85502,85 0,85 C -19.85502,85 -38.12042,78.17231 -52.59375,66.75 L -10.59375,24.75 C -7.66633,21.82258 -3.83959,20.34375 0,20.34375 z "
+ id="path2471" />
<path
- d="m 30.424434,-2.8512907 1.341806,-0.1257503 2.082148,0.313115 3.481343,1.4844572 V 1.1794688 L 33.848388,2.663926 31.76624,2.977041 30.424434,2.8512907 l -0.607981,3.8386377 1.314992,0.2950454 1.883484,0.9412093 2.852232,2.4875969 -0.728953,2.243483 -3.769676,0.336008 -2.076999,-0.345628 -1.237274,-0.534237 -1.764429,3.462885 1.159459,0.686959 1.500449,1.477172 1.943924,3.247233 -1.386549,1.908421 -3.689007,-0.845331 -1.868539,-0.970541 -1.01163,-0.890428 -2.748161,2.748161 0.890428,1.01163 0.970541,1.868539 0.845331,3.689007 -1.908421,1.386549 -3.247233,-1.943924 -1.477172,-1.500449 -0.686959,-1.159459 -3.462885,1.764429 0.534237,1.237274 0.345628,2.076999 -0.336008,3.769676 L 10.41378,35.867161 7.9261831,33.014929 6.9849738,31.131445 6.6899284,29.816453 2.8512907,30.424434 2.977041,31.76624 2.663926,33.848388 1.1794688,37.329731 h -2.3589376 l -1.4844572,-3.481343 -0.313115,-2.082148 0.1257503,-1.341806 -3.8386377,-0.607981 -0.2950454,1.314992 -0.9412093,1.883484 -2.4875969,2.852232 -2.243483,-0.728953 -0.336008,-3.769676 0.345628,-2.076999 0.534237,-1.237274 -3.462885,-1.764429 -0.686959,1.159459 -1.477172,1.500449 -3.247233,1.943924 -1.908421,-1.386549 0.845331,-3.689007 0.970541,-1.868539 0.890428,-1.01163 -2.748161,-2.748161 -1.01163,0.890428 -1.868539,0.970541 -3.689007,0.845331 -1.386549,-1.908421 1.943924,-3.247233 1.500449,-1.477172 1.159459,-0.686959 -1.764429,-3.462885 -1.237274,0.534237 -2.076999,0.345628 -3.769676,-0.336008 -0.728953,-2.243483 2.852232,-2.4875969 1.883484,-0.9412093 1.314992,-0.2950454 -0.607981,-3.8386377 -1.341806,0.1257503 -2.082148,-0.313115 -3.481343,-1.4844572 v -2.3589376 l 3.481343,-1.4844572 2.082148,-0.313115 1.341806,0.1257503 0.607981,-3.8386377 -1.314992,-0.2950454 -1.883484,-0.9412093 -2.852232,-2.4875969 0.728953,-2.243483 3.769676,-0.336008 2.076999,0.345628 1.237274,0.534237 1.764429,-3.462885 -1.159459,-0.686959 -1.500449,-1.477172 -1.943924,-3.247233 1.386549,-1.908421 3.689007,0.845331 1.868539,0.970541 1.01163,0.890428 2.748161,-2.748161 -0.890428,-1.01163 -0.970541,-1.868539 -0.845331,-3.689007 1.908421,-1.386549 3.247233,1.943924 1.477172,1.500449 0.686959,1.159459 3.462885,-1.764429 -0.534237,-1.237274 -0.345628,-2.076999 0.336008,-3.769676 2.243483,-0.728953 2.4875969,2.852232 0.9412093,1.883484 0.2950454,1.314992 3.8386377,-0.607981 -0.1257503,-1.341806 0.313115,-2.082148 1.4844572,-3.481343 h 2.3589376 l 1.4844572,3.481343 0.313115,2.082148 -0.1257503,1.341806 3.8386377,0.607981 0.2950454,-1.314992 0.9412093,-1.883484 2.4875969,-2.852232 2.243483,0.728953 0.336008,3.769676 -0.345628,2.076999 -0.534237,1.237274 3.462885,1.764429 0.686959,-1.159459 1.477172,-1.500449 3.247233,-1.943924 1.908421,1.386549 -0.845331,3.689007 -0.970541,1.868539 -0.890428,1.01163 2.748161,2.748161 1.01163,-0.890428 1.868539,-0.970541 3.689007,-0.845331 1.386549,1.908421 -1.943924,3.247233 -1.500449,1.477172 -1.159459,0.686959 1.764429,3.462885 1.237274,-0.534237 2.076999,-0.345628 3.769676,0.336008 0.728953,2.243483 -2.852232,2.4875969 -1.883484,0.9412093 -1.314992,0.2950454 z"
- id="path2767"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 28.522907,-2.673085 L 29.78085,-2.7909759 L 31.732864,-2.4974306 L 34.996623,-1.105752 L 34.996623,1.105752 L 31.732864,2.4974306 L 29.78085,2.7909759 L 28.522907,2.673085 L 27.952925,6.2718079 L 29.18573,6.5484129 L 30.951496,7.4307967 L 33.625463,9.7629187 L 32.94207,11.866184 L 29.407999,12.181192 L 27.460812,11.857165 L 26.300868,11.356318 L 24.646716,14.602773 L 25.733708,15.246797 L 27.140379,16.631646 L 28.962808,19.675927 L 27.662918,21.465071 L 24.204474,20.672573 L 22.452719,19.762691 L 21.504316,18.927915 L 18.927915,21.504316 L 19.762691,22.452719 L 20.672573,24.204474 L 21.465071,27.662918 L 19.675927,28.962808 L 16.631646,27.140379 L 15.246797,25.733708 L 14.602773,24.646716 L 11.356318,26.300868 L 11.857165,27.460812 L 12.181192,29.407999 L 11.866184,32.94207 L 9.7629187,33.625463 L 7.4307967,30.951496 L 6.5484129,29.18573 L 6.2718079,27.952925 L 2.673085,28.522907 L 2.7909759,29.78085 L 2.4974306,31.732864 L 1.105752,34.996623 L -1.105752,34.996623 L -2.4974306,31.732864 L -2.7909759,29.78085 L -2.673085,28.522907 L -6.2718079,27.952925 L -6.5484129,29.18573 L -7.4307967,30.951496 L -9.7629187,33.625463 L -11.866184,32.94207 L -12.181192,29.407999 L -11.857165,27.460812 L -11.356318,26.300868 L -14.602773,24.646716 L -15.246797,25.733708 L -16.631646,27.140379 L -19.675927,28.962808 L -21.465071,27.662918 L -20.672573,24.204474 L -19.762691,22.452719 L -18.927915,21.504316 L -21.504316,18.927915 L -22.452719,19.762691 L -24.204474,20.672573 L -27.662918,21.465071 L -28.962808,19.675927 L -27.140379,16.631646 L -25.733708,15.246797 L -24.646716,14.602773 L -26.300868,11.356318 L -27.460812,11.857165 L -29.407999,12.181192 L -32.94207,11.866184 L -33.625463,9.7629187 L -30.951496,7.4307967 L -29.18573,6.5484129 L -27.952925,6.2718079 L -28.522907,2.673085 L -29.78085,2.7909759 L -31.732864,2.4974306 L -34.996623,1.105752 L -34.996623,-1.105752 L -31.732864,-2.4974306 L -29.78085,-2.7909759 L -28.522907,-2.673085 L -27.952925,-6.2718079 L -29.18573,-6.5484129 L -30.951496,-7.4307967 L -33.625463,-9.7629187 L -32.94207,-11.866184 L -29.407999,-12.181192 L -27.460812,-11.857165 L -26.300868,-11.356318 L -24.646716,-14.602773 L -25.733708,-15.246797 L -27.140379,-16.631646 L -28.962808,-19.675927 L -27.662918,-21.465071 L -24.204474,-20.672573 L -22.452719,-19.762691 L -21.504316,-18.927915 L -18.927915,-21.504316 L -19.762691,-22.452719 L -20.672573,-24.204474 L -21.465071,-27.662918 L -19.675927,-28.962808 L -16.631646,-27.140379 L -15.246797,-25.733708 L -14.602773,-24.646716 L -11.356318,-26.300868 L -11.857165,-27.460812 L -12.181192,-29.407999 L -11.866184,-32.94207 L -9.7629187,-33.625463 L -7.4307967,-30.951496 L -6.5484129,-29.18573 L -6.2718079,-27.952925 L -2.673085,-28.522907 L -2.7909759,-29.78085 L -2.4974306,-31.732864 L -1.105752,-34.996623 L 1.105752,-34.996623 L 2.4974306,-31.732864 L 2.7909759,-29.78085 L 2.673085,-28.522907 L 6.2718079,-27.952925 L 6.5484129,-29.18573 L 7.4307967,-30.951496 L 9.7629187,-33.625463 L 11.866184,-32.94207 L 12.181192,-29.407999 L 11.857165,-27.460812 L 11.356318,-26.300868 L 14.602773,-24.646716 L 15.246797,-25.733708 L 16.631646,-27.140379 L 19.675927,-28.962808 L 21.465071,-27.662918 L 20.672573,-24.204474 L 19.762691,-22.452719 L 18.927915,-21.504316 L 21.504316,-18.927915 L 22.452719,-19.762691 L 24.204474,-20.672573 L 27.662918,-21.465071 L 28.962808,-19.675927 L 27.140379,-16.631646 L 25.733708,-15.246797 L 24.646716,-14.602773 L 26.300868,-11.356318 L 27.460812,-11.857165 L 29.407999,-12.181192 L 32.94207,-11.866184 L 33.625463,-9.7629187 L 30.951496,-7.4307967 L 29.18573,-6.5484129 L 27.952925,-6.2718079 L 28.522907,-2.673085 z "
+ id="path2767" />
<path
- d="m -71.6535,71.653478 c 39.552726,39.552722 103.754252,39.552722 143.306978,0 39.552722,-39.552726 39.552722,-103.754252 0,-143.306978 -39.552726,-39.55273 -103.754252,-39.55273 -143.306978,0 -39.55273,39.552726 -39.55273,103.754252 0,143.306978 z"
- style="fill:none;stroke:none;stroke-width:1.06666672"
- id="path2518"
- inkscape:connector-curvature="0" />
+ d="M 470,150 C 470,202.44 427.44,245 375,245 C 322.56,245 280,202.44 280,150 C 280,97.56 322.56,55 375,55 C 427.44,55 470,97.56 470,150 z "
+ transform="matrix(-0.7071068,0.7071068,0.7071068,0.7071068,159.09902,-371.23108)"
+ style="fill:none;stroke:none"
+ id="path2518" />
<text
- style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:125%;font-family:'Times New Roman';text-align:start;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ transform="translate(-0.25,-0.25)"
+ style="font-size:10px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman;text-anchor:start;text-align:start;line-height:125%"
id="text2527"
xml:space="preserve"
- x="26.666666"
- y="-12.666667"
- transform="translate(-0.26666667,-0.26666667)"><textPath
+ sodipodi:linespacing="125%"><textPath
xlink:href="#path2518"
- id="textPath2529"
- style="stroke-width:1.06666672px">Tavmjong Clock Works © 2007</textPath></text>
+ id="textPath2529">Tavmjong Clock Works © 2007</textPath></text>
<text
- style="font-style:normal;font-weight:normal;font-size:10.66666698px;line-height:125%;font-family:'Times New Roman';text-align:start;text-anchor:start;fill:#666666;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-size:10px;font-style:normal;font-weight:normal;fill:#666666;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman;text-anchor:start;text-align:start;line-height:125%"
id="text2520"
- xml:space="preserve"><textPath
+ xml:space="preserve"
+ sodipodi:linespacing="125%"><textPath
xlink:href="#path2518"
- id="textPath2524"
- style="stroke-width:1.06666672px">Tavmjong Clock Works © 2007</textPath></text>
+ id="textPath2524">Tavmjong Clock Works © 2007</textPath></text>
</g>
</g>
<g
- transform="translate(279.46667,227.60464)"
- style="fill:#bfbfbf;stroke:#000000"
+ transform="translate(262,213.37935)"
+ style="fill:#bfbfbf;stroke:black"
id="Gear180">
<g
id="RotGear180">
<path
- d="m -1.3333333,-105.23797 -1.3333334,3.4 -0.9333333,3.43333 -3.1,0.166667 -1.3,-3.299997 -1.6666667,-3.26667 -2.6666663,0.26667 -0.966667,3.56666 -0.566667,3.500003 -3.066666,0.466667 -1.633334,-3.13333 -2,-3.1 -2.633333,0.56666 -0.566667,3.633337 -0.2,3.533333 -3.033333,0.8 -1.933333,-2.966667 -2.333334,-2.833333 -2.533333,0.833333 -0.2,3.666667 0.166667,3.533333 -2.9,1.1 -2.233334,-2.733333 -2.633333,-2.6 -2.433333,1.1 0.166666,3.666667 0.566667,3.5 -2.766667,1.433333 -2.533333,-2.5 -2.866667,-2.3 -2.3,1.333333 0.533334,3.633334 0.933333,3.433333 -2.633333,1.7 -2.766667,-2.233333 -3.066667,-2 -2.166666,1.566666 0.933333,3.566667 1.266667,3.3 -2.433334,1.966667 -3,-1.9 -3.266666,-1.666667 -1.966667,1.8 1.3,3.433333 1.6,3.166667 -2.2,2.2 -3.2,-1.6 -3.433333,-1.3 -1.766667,1.966667 1.633333,3.3 1.933334,2.966666 -1.966667,2.433334 -3.3,-1.266667 -3.566667,-0.933333 -1.566666,2.166666 2,3.066667 2.2,2.766667 -1.666667,2.633333 -3.433333,-0.9 -3.633334,-0.566667 -1.333333,2.3 2.3,2.866667 2.5,2.533333 -1.433333,2.766667 -3.5,-0.533333 -3.666667,-0.2 -1.1,2.433333 2.6,2.633333 2.733333,2.233334 -1.1,2.9 L -96,-34.00464 l -3.666667,0.2 -0.833333,2.566667 2.833333,2.3 2.966667,1.966666 -0.8,3 -3.533333,0.2 -3.633337,0.6 -0.56666,2.6 3.06666,2 3.16667,1.633334 -0.466667,3.066666 -3.533333,0.566667 -3.53333,0.966667 -0.26667,2.6666663 3.26667,1.6666667 3.299997,1.3 -0.166667,3.1 -3.43333,0.9333333 -3.4,1.3333334 v 2.6666666 l 3.4,1.3333334 3.43333,0.9333333 0.166667,3.1 -3.299997,1.3 -3.26667,1.6666667 0.26667,2.6666663 3.53333,0.966667 3.533333,0.566667 0.466667,3.066666 -3.16667,1.633334 -3.06666,2 0.56666,2.633333 3.633337,0.566667 3.533333,0.2 0.8,3.033333 -2.966667,1.933333 -2.833333,2.333334 0.833333,2.533333 3.666667,0.2 3.533333,-0.166667 1.1,2.9 -2.733333,2.266667 -2.6,2.6 1.1,2.433333 3.666667,-0.166666 3.5,-0.566667 1.433333,2.8 -2.5,2.5 -2.3,2.866667 1.333333,2.3 3.633334,-0.533334 3.433333,-0.9 1.666667,2.6 -2.2,2.766667 -2,3.1 1.566666,2.133333 3.566667,-0.933333 3.3,-1.233333 1.966667,2.4 -1.933334,3 -1.633333,3.266666 1.766667,2 3.433333,-1.3 3.2,-1.6 2.2,2.2 -1.6,3.166667 -1.3,3.433333 1.966667,1.766667 3.266666,-1.633333 3,-1.933334 2.433334,1.966667 -1.266667,3.3 -0.933333,3.566667 2.166666,1.566666 3.066667,-2 2.766667,-2.2 2.633333,1.7 -0.933333,3.433334 -0.533334,3.633333 2.3,1.333333 2.866667,-2.3 2.533333,-2.5 2.766667,1.4 -0.566667,3.5 -0.166666,3.666667 2.433333,1.1 2.633333,-2.6 2.233334,-2.733333 2.9,1.1 L -34,96.028693 l 0.2,3.666667 2.533333,0.8 2.333334,-2.833333 L -27,94.69536 l 3.033333,0.8 0.2,3.533333 0.566667,3.633337 2.633333,0.56666 2,-3.06666 1.633334,-3.16667 3.066666,0.5 0.566667,3.5 0.966667,3.53333 2.6666663,0.26667 L -8,101.52869 l 1.3,-3.299997 3.1,0.166667 0.9333333,3.43333 1.3333334,3.43334 H 1.3333333 L 2.6666667,101.82869 3.6,98.39536 6.7,98.228693 8,101.52869 l 1.6666667,3.26667 2.6666663,-0.26667 0.966667,-3.53333 0.566667,-3.5 3.066666,-0.5 1.633334,3.16667 2,3.06666 2.633333,-0.56666 0.566667,-3.633337 0.2,-3.533333 3.033333,-0.8 1.933333,2.966667 2.333334,2.833333 2.533333,-0.8 0.2,-3.666667 -0.166667,-3.566666 2.9,-1.1 2.233334,2.733333 2.633333,2.6 2.433333,-1.1 -0.166666,-3.666667 -0.566667,-3.5 2.766667,-1.4 2.533333,2.5 2.866667,2.3 2.3,-1.333333 L 53.233333,86.862027 52.3,83.428693 l 2.633333,-1.7 2.766667,2.2 3.066667,2 2.166666,-1.566666 L 62,80.79536 l -1.266667,-3.3 2.433334,-1.966667 3,1.933334 3.266666,1.633333 L 71.4,77.328693 70.1,73.89536 l -1.6,-3.166667 2.2,-2.2 3.2,1.6 3.433333,1.3 1.766667,-2 -1.633333,-3.266666 -1.933334,-3 1.966667,-2.4 3.3,1.233333 3.566667,0.933333 1.566666,-2.133333 -2,-3.1 -2.2,-2.766667 1.666667,-2.6 3.433333,0.9 3.633334,0.533334 1.333333,-2.3 -2.3,-2.866667 -2.5,-2.5 1.433333,-2.8 3.5,0.566667 3.666667,0.166666 1.1,-2.433333 -2.6,-2.6 -2.733333,-2.266667 1.1,-2.9 L 96,33.99536 l 3.666667,-0.2 L 100.5,31.262027 97.666667,28.928693 94.7,26.99536 l 0.8,-3.033333 3.533333,-0.2 3.633337,-0.566667 0.56666,-2.633333 -3.06666,-2 L 97,16.928693 97.466667,13.862027 101,13.29536 104.53333,12.328693 104.8,9.6620267 101.53333,7.99536 l -3.299997,-1.3 0.166667,-3.1 3.43333,-0.9333333 3.4,-1.3333334 v -2.6666666 l -3.4,-1.3333334 L 98.4,-3.60464 l -0.166667,-3.1 3.299997,-1.3 L 104.8,-9.6713067 104.53333,-12.337973 101,-13.30464 97.466667,-13.871307 97,-16.937973 l 3.16667,-1.633334 3.06666,-2 -0.56666,-2.6 -3.633337,-0.6 -3.533333,-0.2 -0.8,-3 2.966667,-1.966666 2.833333,-2.3 -0.833333,-2.566667 -3.666667,-0.2 -3.533333,0.166667 -1.1,-2.9 2.733333,-2.233334 2.6,-2.633333 -1.1,-2.433333 -3.666667,0.2 -3.5,0.533333 L 87,-46.071307 l 2.5,-2.533333 2.3,-2.866667 -1.333333,-2.3 -3.633334,0.566667 -3.433333,0.9 -1.666667,-2.633333 2.2,-2.766667 2,-3.066667 -1.566666,-2.166666 -3.566667,0.933333 -3.3,1.266667 -1.966667,-2.433334 1.933334,-2.966666 1.633333,-3.3 -1.766667,-1.966667 -3.433333,1.3 -3.2,1.6 -2.2,-2.2 1.6,-3.166667 1.3,-3.433333 -1.966667,-1.8 -3.266666,1.666667 -3,1.9 -2.433334,-1.966667 1.266667,-3.3 0.933333,-3.566667 -2.166666,-1.566666 -3.066667,2 -2.766667,2.233333 -2.633333,-1.7 0.933333,-3.433333 0.533334,-3.633334 -2.3,-1.333333 -2.866667,2.3 -2.533333,2.5 -2.766667,-1.433333 0.566667,-3.5 0.166666,-3.666667 -2.433333,-1.1 -2.633333,2.6 -2.233334,2.733333 -2.9,-1.1 L 34,-96.00464 33.8,-99.671307 31.266667,-100.50464 28.933333,-97.671307 27,-94.70464 l -3.033333,-0.8 -0.2,-3.533333 -0.566667,-3.633337 -2.633333,-0.56666 -2,3.1 -1.633334,3.13333 -3.066666,-0.466667 L 13.3,-100.97131 12.333333,-104.53797 9.6666667,-104.80464 8,-101.53797 l -1.3,3.299997 -3.1,-0.166667 -0.9333333,-3.43333 -1.3333334,-3.4 z m -9.3333337,20.566663 v 58 c 0,8.832 -7.168,16 -16,16 h -58 c 4.816235,-38.584714 35.415286,-69.183765 74,-74 z m 21.333334,0 c 38.584714,4.816235 69.183765,35.415286 74,74 h -58 c -8.832,0 -16,-7.168 -16,-16 z m -95.333334,95.333334 h 58 c 8.832,0 16,7.168 16,16 v 58 c -38.584714,-4.816246 -69.183765,-35.415286 -74,-74 z m 111.333334,0 h 58 c -4.816235,38.584714 -35.415286,69.183765 -74,74 v -58 c 0,-8.832 7.168,-16 16,-16 z"
- id="path2779"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 260.75,114.71875 L 259.5,117.90625 L 258.625,121.125 L 255.71875,121.28125 L 254.5,118.1875 L 252.9375,115.125 L 250.4375,115.375 L 249.53125,118.71875 L 249,122 L 246.125,122.4375 L 244.59375,119.5 L 242.71875,116.59375 L 240.25,117.125 L 239.71875,120.53125 L 239.53125,123.84375 L 236.6875,124.59375 L 234.875,121.8125 L 232.6875,119.15625 L 230.3125,119.9375 L 230.125,123.375 L 230.28125,126.6875 L 227.5625,127.71875 L 225.46875,125.15625 L 223,122.71875 L 220.71875,123.75 L 220.875,127.1875 L 221.40625,130.46875 L 218.8125,131.8125 L 216.4375,129.46875 L 213.75,127.3125 L 211.59375,128.5625 L 212.09375,131.96875 L 212.96875,135.1875 L 210.5,136.78125 L 207.90625,134.6875 L 205.03125,132.8125 L 203,134.28125 L 203.875,137.625 L 205.0625,140.71875 L 202.78125,142.5625 L 199.96875,140.78125 L 196.90625,139.21875 L 195.0625,140.90625 L 196.28125,144.125 L 197.78125,147.09375 L 195.71875,149.15625 L 192.71875,147.65625 L 189.5,146.4375 L 187.84375,148.28125 L 189.375,151.375 L 191.1875,154.15625 L 189.34375,156.4375 L 186.25,155.25 L 182.90625,154.375 L 181.4375,156.40625 L 183.3125,159.28125 L 185.375,161.875 L 183.8125,164.34375 L 180.59375,163.5 L 177.1875,162.96875 L 175.9375,165.125 L 178.09375,167.8125 L 180.4375,170.1875 L 179.09375,172.78125 L 175.8125,172.28125 L 172.375,172.09375 L 171.34375,174.375 L 173.78125,176.84375 L 176.34375,178.9375 L 175.3125,181.65625 L 172,181.5 L 168.5625,181.6875 L 167.78125,184.09375 L 170.4375,186.25 L 173.21875,188.09375 L 172.46875,190.90625 L 169.15625,191.09375 L 165.75,191.65625 L 165.21875,194.09375 L 168.09375,195.96875 L 171.0625,197.5 L 170.625,200.375 L 167.3125,200.90625 L 164,201.8125 L 163.75,204.3125 L 166.8125,205.875 L 169.90625,207.09375 L 169.75,210 L 166.53125,210.875 L 163.34375,212.125 L 163.34375,214.625 L 166.53125,215.875 L 169.75,216.75 L 169.90625,219.65625 L 166.8125,220.875 L 163.75,222.4375 L 164,224.9375 L 167.3125,225.84375 L 170.625,226.375 L 171.0625,229.25 L 168.09375,230.78125 L 165.21875,232.65625 L 165.75,235.125 L 169.15625,235.65625 L 172.46875,235.84375 L 173.21875,238.6875 L 170.4375,240.5 L 167.78125,242.6875 L 168.5625,245.0625 L 172,245.25 L 175.3125,245.09375 L 176.34375,247.8125 L 173.78125,249.9375 L 171.34375,252.375 L 172.375,254.65625 L 175.8125,254.5 L 179.09375,253.96875 L 180.4375,256.59375 L 178.09375,258.9375 L 175.9375,261.625 L 177.1875,263.78125 L 180.59375,263.28125 L 183.8125,262.4375 L 185.375,264.875 L 183.3125,267.46875 L 181.4375,270.375 L 182.90625,272.375 L 186.25,271.5 L 189.34375,270.34375 L 191.1875,272.59375 L 189.375,275.40625 L 187.84375,278.46875 L 189.5,280.34375 L 192.71875,279.125 L 195.71875,277.625 L 197.78125,279.6875 L 196.28125,282.65625 L 195.0625,285.875 L 196.90625,287.53125 L 199.96875,286 L 202.78125,284.1875 L 205.0625,286.03125 L 203.875,289.125 L 203,292.46875 L 205.03125,293.9375 L 207.90625,292.0625 L 210.5,290 L 212.96875,291.59375 L 212.09375,294.8125 L 211.59375,298.21875 L 213.75,299.46875 L 216.4375,297.3125 L 218.8125,294.96875 L 221.40625,296.28125 L 220.875,299.5625 L 220.71875,303 L 223,304.03125 L 225.46875,301.59375 L 227.5625,299.03125 L 230.28125,300.0625 L 230.125,303.40625 L 230.3125,306.84375 L 232.6875,307.59375 L 234.875,304.9375 L 236.6875,302.15625 L 239.53125,302.90625 L 239.71875,306.21875 L 240.25,309.625 L 242.71875,310.15625 L 244.59375,307.28125 L 246.125,304.3125 L 249,304.78125 L 249.53125,308.0625 L 250.4375,311.375 L 252.9375,311.625 L 254.5,308.5625 L 255.71875,305.46875 L 258.625,305.625 L 259.5,308.84375 L 260.75,312.0625 L 263.25,312.0625 L 264.5,308.84375 L 265.375,305.625 L 268.28125,305.46875 L 269.5,308.5625 L 271.0625,311.625 L 273.5625,311.375 L 274.46875,308.0625 L 275,304.78125 L 277.875,304.3125 L 279.40625,307.28125 L 281.28125,310.15625 L 283.75,309.625 L 284.28125,306.21875 L 284.46875,302.90625 L 287.3125,302.15625 L 289.125,304.9375 L 291.3125,307.59375 L 293.6875,306.84375 L 293.875,303.40625 L 293.71875,300.0625 L 296.4375,299.03125 L 298.53125,301.59375 L 301,304.03125 L 303.28125,303 L 303.125,299.5625 L 302.59375,296.28125 L 305.1875,294.96875 L 307.5625,297.3125 L 310.25,299.46875 L 312.40625,298.21875 L 311.90625,294.8125 L 311.03125,291.59375 L 313.5,290 L 316.09375,292.0625 L 318.96875,293.9375 L 321,292.46875 L 320.125,289.125 L 318.9375,286.03125 L 321.21875,284.1875 L 324.03125,286 L 327.09375,287.53125 L 328.9375,285.875 L 327.71875,282.65625 L 326.21875,279.6875 L 328.28125,277.625 L 331.28125,279.125 L 334.5,280.34375 L 336.15625,278.46875 L 334.625,275.40625 L 332.8125,272.59375 L 334.65625,270.34375 L 337.75,271.5 L 341.09375,272.375 L 342.5625,270.375 L 340.6875,267.46875 L 338.625,264.875 L 340.1875,262.4375 L 343.40625,263.28125 L 346.8125,263.78125 L 348.0625,261.625 L 345.90625,258.9375 L 343.5625,256.59375 L 344.90625,253.96875 L 348.1875,254.5 L 351.625,254.65625 L 352.65625,252.375 L 350.21875,249.9375 L 347.65625,247.8125 L 348.6875,245.09375 L 352,245.25 L 355.4375,245.0625 L 356.21875,242.6875 L 353.5625,240.5 L 350.78125,238.6875 L 351.53125,235.84375 L 354.84375,235.65625 L 358.25,235.125 L 358.78125,232.65625 L 355.90625,230.78125 L 352.9375,229.25 L 353.375,226.375 L 356.6875,225.84375 L 360,224.9375 L 360.25,222.4375 L 357.1875,220.875 L 354.09375,219.65625 L 354.25,216.75 L 357.46875,215.875 L 360.65625,214.625 L 360.65625,212.125 L 357.46875,210.875 L 354.25,210 L 354.09375,207.09375 L 357.1875,205.875 L 360.25,204.3125 L 360,201.8125 L 356.6875,200.90625 L 353.375,200.375 L 352.9375,197.5 L 355.90625,195.96875 L 358.78125,194.09375 L 358.25,191.65625 L 354.84375,191.09375 L 351.53125,190.90625 L 350.78125,188.09375 L 353.5625,186.25 L 356.21875,184.09375 L 355.4375,181.6875 L 352,181.5 L 348.6875,181.65625 L 347.65625,178.9375 L 350.21875,176.84375 L 352.65625,174.375 L 351.625,172.09375 L 348.1875,172.28125 L 344.90625,172.78125 L 343.5625,170.1875 L 345.90625,167.8125 L 348.0625,165.125 L 346.8125,162.96875 L 343.40625,163.5 L 340.1875,164.34375 L 338.625,161.875 L 340.6875,159.28125 L 342.5625,156.40625 L 341.09375,154.375 L 337.75,155.25 L 334.65625,156.4375 L 332.8125,154.15625 L 334.625,151.375 L 336.15625,148.28125 L 334.5,146.4375 L 331.28125,147.65625 L 328.28125,149.15625 L 326.21875,147.09375 L 327.71875,144.125 L 328.9375,140.90625 L 327.09375,139.21875 L 324.03125,140.78125 L 321.21875,142.5625 L 318.9375,140.71875 L 320.125,137.625 L 321,134.28125 L 318.96875,132.8125 L 316.09375,134.6875 L 313.5,136.78125 L 311.03125,135.1875 L 311.90625,131.96875 L 312.40625,128.5625 L 310.25,127.3125 L 307.5625,129.46875 L 305.1875,131.8125 L 302.59375,130.46875 L 303.125,127.1875 L 303.28125,123.75 L 301,122.71875 L 298.53125,125.15625 L 296.4375,127.71875 L 293.71875,126.6875 L 293.875,123.375 L 293.6875,119.9375 L 291.3125,119.15625 L 289.125,121.8125 L 287.3125,124.59375 L 284.46875,123.84375 L 284.28125,120.53125 L 283.75,117.125 L 281.28125,116.59375 L 279.40625,119.5 L 277.875,122.4375 L 275,122 L 274.46875,118.71875 L 273.5625,115.375 L 271.0625,115.125 L 269.5,118.1875 L 268.28125,121.28125 L 265.375,121.125 L 264.5,117.90625 L 263.25,114.71875 L 260.75,114.71875 z M 252,134 L 252,188.375 C 252,196.655 245.28,203.375 237,203.375 L 182.625,203.375 C 187.14022,167.20183 215.82683,138.51522 252,134 z M 272,134 C 308.17317,138.51522 336.85978,167.20183 341.375,203.375 L 287,203.375 C 278.72,203.375 272,196.655 272,188.375 L 272,134 z M 182.625,223.375 L 237,223.375 C 245.28,223.375 252,230.095 252,238.375 L 252,292.75 C 215.82683,288.23477 187.14022,259.54817 182.625,223.375 z M 287,223.375 L 341.375,223.375 C 336.85978,259.54817 308.17317,288.23478 272,292.75 L 272,238.375 C 272,230.095 278.72,223.375 287,223.375 z "
+ transform="translate(-262,-213.37935)"
+ id="path2779" />
<path
- d="m 23.615346,-2.6818439 1.745987,-0.1982806 1.670316,0.2177394 3.505204,1.5325138 v 2.2597426 l -3.505204,1.5325138 -1.670316,0.2177394 -1.745987,-0.1982806 -0.771314,3.8776571 1.68896,0.4849729 1.459846,0.8403673 2.651919,2.7572418 -0.864767,2.08773 -3.824853,0.07447 -1.626496,-0.438037 -1.537203,-0.851348 -2.196516,3.287319 1.374804,1.094395 1.027127,1.335056 1.394903,3.562204 -1.59788,1.59788 -3.562205,-1.394903 -1.335056,-1.027127 -1.094394,-1.374804 -3.287319,2.196516 0.851348,1.537203 0.438037,1.626496 -0.07447,3.824853 -2.087729,0.864766 -2.7572418,-2.651919 -0.8403673,-1.459846 -0.4849729,-1.68896 -3.8776571,0.771314 0.1982806,1.745987 -0.2177394,1.670316 -1.5325138,3.505204 h -2.2597426 l -1.5325138,-3.505204 -0.2177394,-1.670316 0.1982806,-1.745987 -3.8776571,-0.771314 -0.4849729,1.68896 -0.8403673,1.459846 -2.7572418,2.651919 -2.08773,-0.864767 -0.07447,-3.824853 0.438037,-1.626496 0.851348,-1.537203 -3.287319,-2.196516 -1.094395,1.374804 -1.335056,1.027127 -3.562204,1.394903 -1.59788,-1.59788 1.394903,-3.562205 1.027127,-1.335056 1.374804,-1.094394 -2.196516,-3.287319 -1.537203,0.851348 -1.626496,0.438037 -3.824853,-0.07447 -0.864767,-2.08773 2.651919,-2.7572419 1.459846,-0.8403672 1.68896,-0.484973 -0.771314,-3.877657 -1.745987,0.1982805 -1.670315,-0.2177383 -3.505204,-1.5325138 v -2.2597426 l 3.505204,-1.5325138 1.670316,-0.2177394 1.745987,0.1982806 0.771314,-3.8776571 -1.68896,-0.4849729 -1.459846,-0.8403673 -2.651919,-2.7572418 0.864767,-2.08773 3.824853,-0.07447 1.626496,0.438037 1.537203,0.851348 2.196516,-3.287319 -1.374804,-1.094395 -1.027127,-1.335056 -1.394903,-3.562204 1.59788,-1.59788 3.562205,1.394903 1.335056,1.027127 1.094394,1.374804 3.287319,-2.196516 -0.851348,-1.537203 -0.438037,-1.626496 0.07447,-3.824853 2.08773,-0.864767 2.7572419,2.651919 0.8403672,1.459846 0.484973,1.68896 3.877657,-0.771314 -0.1982805,-1.745987 0.2177394,-1.670316 1.5325138,-3.505204 h 2.2597425 l 1.5325138,3.505204 0.2177394,1.670316 -0.1982805,1.745987 3.8776571,0.771314 0.4849729,-1.68896 0.8403672,-1.459846 2.7572418,-2.651919 2.08773,0.864767 0.07448,3.824853 -0.438037,1.626496 -0.851347,1.537203 3.287318,2.196516 1.094395,-1.374804 1.335056,-1.027127 3.562204,-1.394903 1.59788,1.59788 -1.394903,3.562204 -1.027127,1.335056 -1.374804,1.094395 2.196516,3.287319 1.537203,-0.851348 1.626496,-0.438037 3.824854,0.07447 0.864766,2.08773 -2.651918,2.7572418 -1.459847,0.8403673 -1.68896,0.4849729 z"
- id="path2791"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 22.139387,-2.5142287 L 23.77625,-2.7001167 L 25.342171,-2.495986 L 28.6283,-1.0592543 L 28.6283,1.0592543 L 25.342171,2.495986 L 23.77625,2.7001167 L 22.139387,2.5142287 L 21.41628,6.1495322 L 22.99968,6.6041943 L 24.368286,7.3920386 L 26.85446,9.9769528 L 26.043741,11.9342 L 22.457941,12.004019 L 20.933101,11.593359 L 19.491973,10.795221 L 17.432739,13.877082 L 18.721618,14.903077 L 19.68455,16.154692 L 20.992271,19.494259 L 19.494259,20.992271 L 16.154692,19.68455 L 14.903077,18.721618 L 13.877082,17.432739 L 10.795221,19.491973 L 11.593359,20.933101 L 12.004019,22.457941 L 11.9342,26.043741 L 9.9769528,26.85446 L 7.3920386,24.368286 L 6.6041943,22.99968 L 6.1495322,21.41628 L 2.5142287,22.139387 L 2.7001167,23.77625 L 2.495986,25.342171 L 1.0592543,28.6283 L -1.0592543,28.6283 L -2.495986,25.342171 L -2.7001167,23.77625 L -2.5142287,22.139387 L -6.1495322,21.41628 L -6.6041943,22.99968 L -7.3920386,24.368286 L -9.9769528,26.85446 L -11.9342,26.043741 L -12.004019,22.457941 L -11.593359,20.933101 L -10.795221,19.491973 L -13.877082,17.432739 L -14.903077,18.721618 L -16.154692,19.68455 L -19.494259,20.992271 L -20.992271,19.494259 L -19.68455,16.154692 L -18.721618,14.903077 L -17.432739,13.877082 L -19.491973,10.795221 L -20.933101,11.593359 L -22.457941,12.004019 L -26.043741,11.9342 L -26.85446,9.9769528 L -24.368286,7.3920386 L -22.99968,6.6041943 L -21.41628,6.1495322 L -22.139387,2.5142287 L -23.77625,2.7001167 L -25.342171,2.495986 L -28.6283,1.0592543 L -28.6283,-1.0592543 L -25.342171,-2.495986 L -23.77625,-2.7001167 L -22.139387,-2.5142287 L -21.41628,-6.1495322 L -22.99968,-6.6041943 L -24.368286,-7.3920386 L -26.85446,-9.9769528 L -26.043741,-11.9342 L -22.457941,-12.004019 L -20.933101,-11.593359 L -19.491973,-10.795221 L -17.432739,-13.877082 L -18.721618,-14.903077 L -19.68455,-16.154692 L -20.992271,-19.494259 L -19.494259,-20.992271 L -16.154692,-19.68455 L -14.903077,-18.721618 L -13.877082,-17.432739 L -10.795221,-19.491973 L -11.593359,-20.933101 L -12.004019,-22.457941 L -11.9342,-26.043741 L -9.9769528,-26.85446 L -7.3920386,-24.368286 L -6.6041943,-22.99968 L -6.1495322,-21.41628 L -2.5142287,-22.139387 L -2.7001167,-23.77625 L -2.495986,-25.342171 L -1.0592543,-28.6283 L 1.0592543,-28.6283 L 2.495986,-25.342171 L 2.7001167,-23.77625 L 2.5142287,-22.139387 L 6.1495322,-21.41628 L 6.6041943,-22.99968 L 7.3920386,-24.368286 L 9.9769528,-26.85446 L 11.9342,-26.043741 L 12.004019,-22.457941 L 11.593359,-20.933101 L 10.795221,-19.491973 L 13.877082,-17.432739 L 14.903077,-18.721618 L 16.154692,-19.68455 L 19.494259,-20.992271 L 20.992271,-19.494259 L 19.68455,-16.154692 L 18.721618,-14.903077 L 17.432739,-13.877082 L 19.491973,-10.795221 L 20.933101,-11.593359 L 22.457941,-12.004019 L 26.043741,-11.9342 L 26.85446,-9.9769528 L 24.368286,-7.3920386 L 22.99968,-6.6041943 L 21.41628,-6.1495322 L 22.139387,-2.5142287 z "
+ id="path2791" />
<g
id="Nut2">
<path
id="path2505"
- style="fill:#666666;stroke:#000000;stroke-width:1.60000002"
- d="m 0,-6.387968 5.54256,3.2 v 6.4 l -5.54256,3.2 -5.54256,-3.2 v -6.4 z"
- inkscape:connector-curvature="0" />
+ style="fill:#666666;stroke:black"
+ transform="matrix(1.5,0,0,1.5,-735,-217.48872)"
+ d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
<rect
id="rect2507"
- style="fill:#333333;stroke:none;stroke-width:1.06666672"
- y="-5.7379732"
- x="-1.0666667"
- height="11.733334"
- width="2.1333334" />
+ style="fill:#333333;stroke:none"
+ transform="translate(-262,-213.37935)"
+ y="208"
+ x="261"
+ height="11"
+ width="2" />
<path
id="path2513"
- style="fill:none;stroke:#000000;stroke-width:1.60000002"
- d="m 0,-6.387968 5.54256,3.2 v 6.4 l -5.54256,3.2 -5.54256,-3.2 v -6.4 z"
- inkscape:connector-curvature="0" />
+ style="fill:none;stroke:black"
+ transform="matrix(1.5,0,0,1.5,-735,-217.48872)"
+ d="M 490,141 L 493.4641,143 L 493.4641,147 L 490,149 L 486.5359,147 L 486.5359,143 L 490,141 z " />
</g>
</g>
</g>
<g
- transform="translate(160,160)"
- style="fill:#bfbfbf;stroke:#000000"
+ transform="translate(150,150)"
+ style="fill:#bfbfbf;stroke:black"
id="Hours">
<g
id="RotHours">
<path
- d="m -1.3333333,-112.03333 -1.3333334,3.4 -0.9666666,3.43333 -3.0666667,0.16667 -1.3,-3.33334 -1.6333333,-3.26666 -2.6666667,0.26666 -1,3.53334 -0.6,3.5 -3.066667,0.46666 -1.6,-3.2 -1.966666,-3.06666 -2.633334,0.5 L -23.8,-106 l -0.266667,3.53333 -3,0.76667 -1.9,-3 -2.266666,-2.9 -2.566667,0.76667 -0.266667,3.66666 L -34,-99.6 l -2.9,1.033333 -2.2,-2.800003 -2.533333,-2.66666 L -44.1,-103 -44.03333,-99.333333 -43.6,-95.8 l -2.8,1.333333 -2.466667,-2.566666 -2.766666,-2.4 -2.366667,1.266666 0.433333,3.633334 0.8,3.466666 -2.666666,1.6 -2.7,-2.333333 -3,-2.1 -2.233334,1.5 0.8,3.566667 1.1,3.366666 -2.466666,1.866667 -2.9,-2.066667 -3.2,-1.8 -2.066667,1.7 1.133333,3.5 1.433334,3.233334 -2.3,2.1 -3.1,-1.766667 -3.333334,-1.466667 -1.9,1.9 1.466667,3.333334 1.766667,3.1 -2.1,2.3 -3.233334,-1.433334 -3.5,-1.133333 -1.7,2.066667 1.8,3.2 2.066667,2.9 -1.866667,2.466666 -3.366666,-1.1 -3.566667,-0.8 -1.5,2.233334 2.1,3 2.333333,2.7 -1.6,2.666666 -3.466666,-0.8 L -98.166667,-54 l -1.266666,2.366667 2.4,2.766666 L -94.466667,-46.4 -95.8,-43.6 -99.333333,-44.033333 -103,-44.1 l -1.03333,2.466667 2.66666,2.533333 2.800003,2.2 -1.033333,2.9 -3.56667,-0.06667 -3.66666,0.266667 -0.76667,2.566667 2.9,2.266666 3,1.9 -0.76667,3 L -106,-23.8 l -3.63333,0.633333 -0.5,2.633334 3.06666,1.966666 3.2,1.6 -0.46666,3.066667 -3.5,0.6 -3.53334,1 -0.26666,2.6666667 3.26666,1.6333333 3.33334,1.3 -0.16667,3.0666667 -3.43333,0.9666666 -3.4,1.3333334 v 2.6666666 l 3.4,1.3333334 3.43333,0.9666666 0.16667,3.0666667 -3.33334,1.3 -3.26666,1.6333333 0.26666,2.6666667 3.53334,1 3.5,0.6 0.46666,3.066667 -3.2,1.6 -3.06666,1.966666 0.5,2.633334 L -106,23.8 l 3.53333,0.266667 0.76667,3 -3,1.9 -2.9,2.266666 0.76667,2.566667 3.66666,0.266667 L -99.6,34 l 1.033333,2.9 -2.800003,2.2 -2.66666,2.533333 L -103,44.1 -99.333333,44.033333 -95.8,43.6 l 1.333333,2.8 -2.566666,2.466667 -2.4,2.766666 1.266666,2.366667 3.633334,-0.433333 3.466666,-0.8 1.6,2.666666 -2.333333,2.7 -2.1,3 1.5,2.233334 3.566667,-0.8 3.366666,-1.1 1.866667,2.466666 -2.066667,2.9 -1.8,3.2 1.7,2.066667 3.5,-1.133333 3.233334,-1.433334 2.1,2.3 -1.766667,3.1 -1.466667,3.333334 1.9,1.9 3.333334,-1.466667 3.1,-1.766667 2.3,2.1 -1.433334,3.233334 -1.133333,3.5 2.066667,1.7 3.2,-1.8 2.9,-2.066667 2.466666,1.866667 -1.1,3.366666 -0.8,3.566667 2.233334,1.5 3,-2.1 2.7,-2.333333 2.666666,1.6 -0.8,3.466666 L -54,98.166667 l 2.366667,1.266666 2.766666,-2.4 L -46.4,94.466667 -43.6,95.8 -44.033333,99.333333 -44.1,103 l 2.466667,1.03333 2.533333,-2.66666 2.2,-2.800003 2.9,1.033333 -0.06667,3.56667 0.266667,3.66666 2.566667,0.76667 2.266666,-2.9 1.9,-3 3,0.76667 L -23.8,106 l 0.633333,3.63333 2.633334,0.5 1.966666,-3.06666 1.6,-3.2 3.066667,0.46666 0.6,3.5 1,3.53334 2.6666667,0.26666 L -8,108.36667 l 1.3,-3.33334 3.0666667,0.16667 0.9666666,3.43333 1.3333334,3.4 h 2.6666666 l 1.3333334,-3.4 L 3.6333333,105.2 6.7,105.03333 8,108.36667 9.6333333,111.63333 12.3,111.36667 l 1,-3.53334 0.6,-3.5 3.066667,-0.46666 1.6,3.2 1.966666,3.06666 2.633334,-0.5 L 23.8,106 l 0.266667,-3.53333 3,-0.76667 1.9,3 2.266666,2.9 L 33.8,106.83333 34.066667,103.16667 34,99.6 l 2.9,-1.033333 2.2,2.800003 2.533333,2.66666 L 44.1,103 44.033333,99.333333 43.6,95.8 l 2.8,-1.333333 2.466667,2.566666 2.766666,2.4 L 54,98.166667 l -0.433333,-3.633334 -0.8,-3.466666 2.666666,-1.6 2.7,2.333333 3,2.1 2.233334,-1.5 -0.8,-3.566667 -1.1,-3.366666 2.466666,-1.866667 2.9,2.066667 3.2,1.8 2.066667,-1.7 -1.133333,-3.5 -1.433334,-3.233334 2.3,-2.1 3.1,1.766667 3.333334,1.466667 1.9,-1.9 L 78.7,74.933333 l -1.766667,-3.1 2.1,-2.3 3.233334,1.433334 3.5,1.133333 1.7,-2.066667 -1.8,-3.2 -2.066667,-2.9 1.866667,-2.466666 3.366666,1.1 3.566667,0.8 1.5,-2.233334 -2.1,-3 -2.333333,-2.7 1.6,-2.666666 3.466666,0.8 L 98.166667,54 l 1.266666,-2.366667 -2.4,-2.766666 L 94.466667,46.4 95.8,43.6 99.333333,44.033333 103,44.1 104.03333,41.633333 101.36667,39.1 98.566667,36.9 99.6,34 103.16667,34.066667 106.83333,33.8 107.6,31.233333 l -2.9,-2.266666 -3,-1.9 0.76667,-3 L 106,23.8 l 3.63333,-0.633333 0.5,-2.633334 -3.06666,-1.966666 -3.2,-1.6 0.46666,-3.066667 3.5,-0.6 3.53334,-1 0.26666,-2.6666667 L 108.36667,8 105.03333,6.7 105.2,3.6333333 l 3.43333,-0.9666666 3.4,-1.3333334 v -2.6666666 l -3.4,-1.3333334 L 105.2,-3.6333333 105.03333,-6.7 108.36667,-8 111.63333,-9.6333333 111.36667,-12.3 l -3.53334,-1 -3.5,-0.6 -0.46666,-3.066667 3.2,-1.6 3.06666,-1.966666 -0.5,-2.633334 L 106,-23.8 l -3.53333,-0.266667 -0.76667,-3 3,-1.9 2.9,-2.266666 L 106.83333,-33.8 103.16667,-34.066667 99.6,-34 l -1.033333,-2.9 2.800003,-2.2 2.66666,-2.533333 L 103,-44.1 99.333333,-44.033333 95.8,-43.6 l -1.333333,-2.8 2.566666,-2.466667 2.4,-2.766666 L 98.166667,-54 l -3.633334,0.433333 -3.466666,0.8 -1.6,-2.666666 2.333333,-2.7 2.1,-3 -1.5,-2.233334 -3.566667,0.8 -3.366666,1.1 -1.866667,-2.466666 2.066667,-2.9 1.8,-3.2 -1.7,-2.066667 -3.5,1.133333 -3.233334,1.433334 -2.1,-2.3 1.766667,-3.1 1.466667,-3.333334 -1.9,-1.9 -3.333334,1.466667 -3.1,1.766667 -2.3,-2.1 1.433334,-3.233334 1.133333,-3.5 -2.066667,-1.7 -3.2,1.8 -2.9,2.066667 -2.466666,-1.866667 1.1,-3.366666 0.8,-3.566667 -2.233334,-1.5 -3,2.1 -2.7,2.333333 -2.666666,-1.6 0.8,-3.466666 L 54,-98.166667 l -2.366667,-1.266666 -2.766666,2.4 L 46.4,-94.466667 43.6,-95.8 44.033333,-99.333333 44.1,-103 41.633333,-104.03333 39.1,-101.36667 36.9,-98.566667 34,-99.6 34.066667,-103.16667 33.8,-106.83333 31.233333,-107.6 l -2.266666,2.9 -1.9,3 -3,-0.76667 L 23.8,-106 l -0.633333,-3.63333 -2.633334,-0.5 -1.966666,3.06666 -1.6,3.2 -3.066667,-0.46666 -0.6,-3.5 -1,-3.53334 -2.6666667,-0.26666 L 8,-108.36667 6.7,-105.03333 3.6333333,-105.2 l -0.9666666,-3.43333 -1.3333334,-3.4 z M 0,-90.666667 c 21.178688,0 40.661781,7.282869 56.1,19.466667 l -44.8,44.8 c -6.2451627,6.245163 -16.3548373,6.245163 -22.6,0 L -56.1,-71.2 C -40.661781,-83.383798 -21.178688,-90.666667 0,-90.666667 Z M -71.2,-56.1 l 44.8,44.8 c 6.245163,6.2451627 6.245163,16.3548373 0,22.6 L -71.2,56.1 C -83.383798,40.661781 -90.666667,21.178688 -90.666667,0 c 0,-21.178688 7.282869,-40.661781 19.466667,-56.1 z m 142.4,0 c 12.183797,15.438219 19.466667,34.921312 19.466667,56.1 0,21.178688 -7.28287,40.661781 -19.466667,56.1 L 26.4,11.3 c -6.245163,-6.2451627 -6.245163,-16.3548373 0,-22.6 z M 0,21.7 c 4.0955627,0 8.1774187,1.577419 11.3,4.7 L 56.1,71.2 C 40.661781,83.383797 21.178688,90.666667 0,90.666667 c -21.178688,0 -40.661781,-7.28287 -56.1,-19.466667 L -11.3,26.4 C -8.1774187,23.277419 -4.0955627,21.7 0,21.7 Z"
- id="path2803"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 148.75,44.96875 L 147.5,48.15625 L 146.59375,51.375 L 143.71875,51.53125 L 142.5,48.40625 L 140.96875,45.34375 L 138.46875,45.59375 L 137.53125,48.90625 L 136.96875,52.1875 L 134.09375,52.625 L 132.59375,49.625 L 130.75,46.75 L 128.28125,47.21875 L 127.6875,50.625 L 127.4375,53.9375 L 124.625,54.65625 L 122.84375,51.84375 L 120.71875,49.125 L 118.3125,49.84375 L 118.0625,53.28125 L 118.125,56.625 L 115.40625,57.59375 L 113.34375,54.96875 L 110.96875,52.46875 L 108.65625,53.4375 L 108.71875,56.875 L 109.125,60.1875 L 106.5,61.4375 L 104.1875,59.03125 L 101.59375,56.78125 L 99.375,57.96875 L 99.78125,61.375 L 100.53125,64.625 L 98.03125,66.125 L 95.5,63.9375 L 92.6875,61.96875 L 90.59375,63.375 L 91.34375,66.71875 L 92.375,69.875 L 90.0625,71.625 L 87.34375,69.6875 L 84.34375,68 L 82.40625,69.59375 L 83.46875,72.875 L 84.8125,75.90625 L 82.65625,77.875 L 79.75,76.21875 L 76.625,74.84375 L 74.84375,76.625 L 76.21875,79.75 L 77.875,82.65625 L 75.90625,84.8125 L 72.875,83.46875 L 69.59375,82.40625 L 68,84.34375 L 69.6875,87.34375 L 71.625,90.0625 L 69.875,92.375 L 66.71875,91.34375 L 63.375,90.59375 L 61.96875,92.6875 L 63.9375,95.5 L 66.125,98.03125 L 64.625,100.53125 L 61.375,99.78125 L 57.96875,99.375 L 56.78125,101.59375 L 59.03125,104.1875 L 61.4375,106.5 L 60.1875,109.125 L 56.875,108.71875 L 53.4375,108.65625 L 52.46875,110.96875 L 54.96875,113.34375 L 57.59375,115.40625 L 56.625,118.125 L 53.28125,118.0625 L 49.84375,118.3125 L 49.125,120.71875 L 51.84375,122.84375 L 54.65625,124.625 L 53.9375,127.4375 L 50.625,127.6875 L 47.21875,128.28125 L 46.75,130.75 L 49.625,132.59375 L 52.625,134.09375 L 52.1875,136.96875 L 48.90625,137.53125 L 45.59375,138.46875 L 45.34375,140.96875 L 48.40625,142.5 L 51.53125,143.71875 L 51.375,146.59375 L 48.15625,147.5 L 44.96875,148.75 L 44.96875,151.25 L 48.15625,152.5 L 51.375,153.40625 L 51.53125,156.28125 L 48.40625,157.5 L 45.34375,159.03125 L 45.59375,161.53125 L 48.90625,162.46875 L 52.1875,163.03125 L 52.625,165.90625 L 49.625,167.40625 L 46.75,169.25 L 47.21875,171.71875 L 50.625,172.3125 L 53.9375,172.5625 L 54.65625,175.375 L 51.84375,177.15625 L 49.125,179.28125 L 49.84375,181.6875 L 53.28125,181.9375 L 56.625,181.875 L 57.59375,184.59375 L 54.96875,186.65625 L 52.46875,189.03125 L 53.4375,191.34375 L 56.875,191.28125 L 60.1875,190.875 L 61.4375,193.5 L 59.03125,195.8125 L 56.78125,198.40625 L 57.96875,200.625 L 61.375,200.21875 L 64.625,199.46875 L 66.125,201.96875 L 63.9375,204.5 L 61.96875,207.3125 L 63.375,209.40625 L 66.71875,208.65625 L 69.875,207.625 L 71.625,209.9375 L 69.6875,212.65625 L 68,215.65625 L 69.59375,217.59375 L 72.875,216.53125 L 75.90625,215.1875 L 77.875,217.34375 L 76.21875,220.25 L 74.84375,223.375 L 76.625,225.15625 L 79.75,223.78125 L 82.65625,222.125 L 84.8125,224.09375 L 83.46875,227.125 L 82.40625,230.40625 L 84.34375,232 L 87.34375,230.3125 L 90.0625,228.375 L 92.375,230.125 L 91.34375,233.28125 L 90.59375,236.625 L 92.6875,238.03125 L 95.5,236.0625 L 98.03125,233.875 L 100.53125,235.375 L 99.78125,238.625 L 99.375,242.03125 L 101.59375,243.21875 L 104.1875,240.96875 L 106.5,238.5625 L 109.125,239.8125 L 108.71875,243.125 L 108.65625,246.5625 L 110.96875,247.53125 L 113.34375,245.03125 L 115.40625,242.40625 L 118.125,243.375 L 118.0625,246.71875 L 118.3125,250.15625 L 120.71875,250.875 L 122.84375,248.15625 L 124.625,245.34375 L 127.4375,246.0625 L 127.6875,249.375 L 128.28125,252.78125 L 130.75,253.25 L 132.59375,250.375 L 134.09375,247.375 L 136.96875,247.8125 L 137.53125,251.09375 L 138.46875,254.40625 L 140.96875,254.65625 L 142.5,251.59375 L 143.71875,248.46875 L 146.59375,248.625 L 147.5,251.84375 L 148.75,255.03125 L 151.25,255.03125 L 152.5,251.84375 L 153.40625,248.625 L 156.28125,248.46875 L 157.5,251.59375 L 159.03125,254.65625 L 161.53125,254.40625 L 162.46875,251.09375 L 163.03125,247.8125 L 165.90625,247.375 L 167.40625,250.375 L 169.25,253.25 L 171.71875,252.78125 L 172.3125,249.375 L 172.5625,246.0625 L 175.375,245.34375 L 177.15625,248.15625 L 179.28125,250.875 L 181.6875,250.15625 L 181.9375,246.71875 L 181.875,243.375 L 184.59375,242.40625 L 186.65625,245.03125 L 189.03125,247.53125 L 191.34375,246.5625 L 191.28125,243.125 L 190.875,239.8125 L 193.5,238.5625 L 195.8125,240.96875 L 198.40625,243.21875 L 200.625,242.03125 L 200.21875,238.625 L 199.46875,235.375 L 201.96875,233.875 L 204.5,236.0625 L 207.3125,238.03125 L 209.40625,236.625 L 208.65625,233.28125 L 207.625,230.125 L 209.9375,228.375 L 212.65625,230.3125 L 215.65625,232 L 217.59375,230.40625 L 216.53125,227.125 L 215.1875,224.09375 L 217.34375,222.125 L 220.25,223.78125 L 223.375,225.15625 L 225.15625,223.375 L 223.78125,220.25 L 222.125,217.34375 L 224.09375,215.1875 L 227.125,216.53125 L 230.40625,217.59375 L 232,215.65625 L 230.3125,212.65625 L 228.375,209.9375 L 230.125,207.625 L 233.28125,208.65625 L 236.625,209.40625 L 238.03125,207.3125 L 236.0625,204.5 L 233.875,201.96875 L 235.375,199.46875 L 238.625,200.21875 L 242.03125,200.625 L 243.21875,198.40625 L 240.96875,195.8125 L 238.5625,193.5 L 239.8125,190.875 L 243.125,191.28125 L 246.5625,191.34375 L 247.53125,189.03125 L 245.03125,186.65625 L 242.40625,184.59375 L 243.375,181.875 L 246.71875,181.9375 L 250.15625,181.6875 L 250.875,179.28125 L 248.15625,177.15625 L 245.34375,175.375 L 246.0625,172.5625 L 249.375,172.3125 L 252.78125,171.71875 L 253.25,169.25 L 250.375,167.40625 L 247.375,165.90625 L 247.8125,163.03125 L 251.09375,162.46875 L 254.40625,161.53125 L 254.65625,159.03125 L 251.59375,157.5 L 248.46875,156.28125 L 248.625,153.40625 L 251.84375,152.5 L 255.03125,151.25 L 255.03125,148.75 L 251.84375,147.5 L 248.625,146.59375 L 248.46875,143.71875 L 251.59375,142.5 L 254.65625,140.96875 L 254.40625,138.46875 L 251.09375,137.53125 L 247.8125,136.96875 L 247.375,134.09375 L 250.375,132.59375 L 253.25,130.75 L 252.78125,128.28125 L 249.375,127.6875 L 246.0625,127.4375 L 245.34375,124.625 L 248.15625,122.84375 L 250.875,120.71875 L 250.15625,118.3125 L 246.71875,118.0625 L 243.375,118.125 L 242.40625,115.40625 L 245.03125,113.34375 L 247.53125,110.96875 L 246.5625,108.65625 L 243.125,108.71875 L 239.8125,109.125 L 238.5625,106.5 L 240.96875,104.1875 L 243.21875,101.59375 L 242.03125,99.375 L 238.625,99.78125 L 235.375,100.53125 L 233.875,98.03125 L 236.0625,95.5 L 238.03125,92.6875 L 236.625,90.59375 L 233.28125,91.34375 L 230.125,92.375 L 228.375,90.0625 L 230.3125,87.34375 L 232,84.34375 L 230.40625,82.40625 L 227.125,83.46875 L 224.09375,84.8125 L 222.125,82.65625 L 223.78125,79.75 L 225.15625,76.625 L 223.375,74.84375 L 220.25,76.21875 L 217.34375,77.875 L 215.1875,75.90625 L 216.53125,72.875 L 217.59375,69.59375 L 215.65625,68 L 212.65625,69.6875 L 209.9375,71.625 L 207.625,69.875 L 208.65625,66.71875 L 209.40625,63.375 L 207.3125,61.96875 L 204.5,63.9375 L 201.96875,66.125 L 199.46875,64.625 L 200.21875,61.375 L 200.625,57.96875 L 198.40625,56.78125 L 195.8125,59.03125 L 193.5,61.4375 L 190.875,60.1875 L 191.28125,56.875 L 191.34375,53.4375 L 189.03125,52.46875 L 186.65625,54.96875 L 184.59375,57.59375 L 181.875,56.625 L 181.9375,53.28125 L 181.6875,49.84375 L 179.28125,49.125 L 177.15625,51.84375 L 175.375,54.65625 L 172.5625,53.9375 L 172.3125,50.625 L 171.71875,47.21875 L 169.25,46.75 L 167.40625,49.625 L 165.90625,52.625 L 163.03125,52.1875 L 162.46875,48.90625 L 161.53125,45.59375 L 159.03125,45.34375 L 157.5,48.40625 L 156.28125,51.53125 L 153.40625,51.375 L 152.5,48.15625 L 151.25,44.96875 L 148.75,44.96875 z M 150,65 C 169.85502,65 188.12042,71.827689 202.59375,83.25 L 160.59375,125.25 C 154.73891,131.10484 145.26109,131.10484 139.40625,125.25 L 97.40625,83.25 C 111.87958,71.827689 130.14498,65 150,65 z M 83.25,97.40625 L 125.25,139.40625 C 131.10484,145.26109 131.10484,154.73891 125.25,160.59375 L 83.25,202.59375 C 71.827689,188.12042 65,169.85502 65,150 C 65,130.14498 71.827689,111.87958 83.25,97.40625 z M 216.75,97.40625 C 228.17231,111.87958 235,130.14498 235,150 C 235,169.85502 228.17231,188.12042 216.75,202.59375 L 174.75,160.59375 C 168.89516,154.73891 168.89516,145.26109 174.75,139.40625 L 216.75,97.40625 z M 150,170.34375 C 153.83959,170.34375 157.66633,171.82258 160.59375,174.75 L 202.59375,216.75 C 188.12042,228.17231 169.85502,235 150,235 C 130.14498,235 111.87958,228.17231 97.40625,216.75 L 139.40625,174.75 C 142.33367,171.82258 146.16041,170.34375 150,170.34375 z "
+ transform="translate(-150,-150)"
+ id="path2803" />
</g>
</g>
<g
@@ -310,282 +295,272 @@
<g
id="HourDots">
<path
- d="m 162.13333,64 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3518"
- inkscape:connector-curvature="0" />
- <path
- d="m 162.13333,256 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3520"
- inkscape:connector-curvature="0" />
- <path
- d="m 113.84752,75.794895 a 2.1333333,2.1333333 0 1 1 -3.69504,2.133333 2.1333333,2.1333333 0 1 1 3.69504,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3526"
- inkscape:connector-curvature="0" />
- <path
- d="m 209.84752,242.07177 a 2.1333333,2.1333333 0 1 1 -3.69504,2.13333 2.1333333,2.1333333 0 1 1 3.69504,-2.13333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3528"
- inkscape:connector-curvature="0" />
- <path
- d="m 77.928228,110.15248 a 2.1333333,2.1333333 0 1 1 -2.133333,3.69504 2.1333333,2.1333333 0 1 1 2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3530"
- inkscape:connector-curvature="0" />
- <path
- d="m 244.2051,206.15248 a 2.1333333,2.1333333 0 1 1 -2.13333,3.69504 2.1333333,2.1333333 0 1 1 2.13333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3532"
- inkscape:connector-curvature="0" />
- <path
- d="m 64,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3534"
- inkscape:connector-curvature="0" />
- <path
- d="m 256,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3536"
- inkscape:connector-curvature="0" />
- <path
- d="m 75.794895,206.15248 a 2.1333333,2.1333333 0 1 1 2.133333,3.69504 2.1333333,2.1333333 0 1 1 -2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3538"
- inkscape:connector-curvature="0" />
- <path
- d="m 242.07176,110.15248 a 2.1333343,2.1333343 0 1 1 2.13334,3.69504 2.1333343,2.1333343 0 1 1 -2.13334,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3540"
- inkscape:connector-curvature="0" />
- <path
- d="m 110.15248,242.07177 a 2.1333343,2.1333343 0 1 1 3.69504,2.13334 2.1333343,2.1333343 0 1 1 -3.69504,-2.13334 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3542"
- inkscape:connector-curvature="0" />
- <path
- d="m 206.15248,75.794898 a 2.1333368,2.1333368 0 1 1 3.69505,2.133333 2.1333368,2.1333368 0 1 1 -3.69505,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3544"
- inkscape:connector-curvature="0" />
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3518" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="translate(0,180)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3520" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3526" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3528" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3530" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3532" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3534" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,180,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3536" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3538" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3540" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3542" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3544" />
</g>
<g
- transform="translate(240)"
+ transform="translate(225,0)"
id="MinuteDots">
<path
- d="m 162.13333,64 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3562"
- inkscape:connector-curvature="0" />
- <path
- d="m 162.13333,256 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3564"
- inkscape:connector-curvature="0" />
- <path
- d="m 113.84752,75.794895 a 2.1333333,2.1333333 0 1 1 -3.69504,2.133333 2.1333333,2.1333333 0 1 1 3.69504,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3566"
- inkscape:connector-curvature="0" />
- <path
- d="m 209.84752,242.07177 a 2.1333333,2.1333333 0 1 1 -3.69504,2.13333 2.1333333,2.1333333 0 1 1 3.69504,-2.13333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3568"
- inkscape:connector-curvature="0" />
- <path
- d="m 77.928228,110.15248 a 2.1333333,2.1333333 0 1 1 -2.133333,3.69504 2.1333333,2.1333333 0 1 1 2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3570"
- inkscape:connector-curvature="0" />
- <path
- d="m 244.2051,206.15248 a 2.1333333,2.1333333 0 1 1 -2.13333,3.69504 2.1333333,2.1333333 0 1 1 2.13333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3572"
- inkscape:connector-curvature="0" />
- <path
- d="m 64,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3574"
- inkscape:connector-curvature="0" />
- <path
- d="m 256,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3576"
- inkscape:connector-curvature="0" />
- <path
- d="m 75.794895,206.15248 a 2.1333333,2.1333333 0 1 1 2.133333,3.69504 2.1333333,2.1333333 0 1 1 -2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3578"
- inkscape:connector-curvature="0" />
- <path
- d="m 242.07176,110.15248 a 2.1333343,2.1333343 0 1 1 2.13334,3.69504 2.1333343,2.1333343 0 1 1 -2.13334,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3580"
- inkscape:connector-curvature="0" />
- <path
- d="m 110.15248,242.07177 a 2.1333343,2.1333343 0 1 1 3.69504,2.13334 2.1333343,2.1333343 0 1 1 -3.69504,-2.13334 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3582"
- inkscape:connector-curvature="0" />
- <path
- d="m 206.15248,75.794898 a 2.1333368,2.1333368 0 1 1 3.69505,2.133333 2.1333368,2.1333368 0 1 1 -3.69505,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3584"
- inkscape:connector-curvature="0" />
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3562" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="translate(0,180)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3564" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3566" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3568" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3570" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3572" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3574" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,180,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3576" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3578" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3580" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3582" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3584" />
</g>
<g
- transform="translate(480)"
+ transform="translate(450,0)"
id="SecondDots">
<path
- d="m 162.13333,64 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3588"
- inkscape:connector-curvature="0" />
- <path
- d="m 162.13333,256 a 2.1333333,2.1333333 0 1 1 -4.26666,0 2.1333333,2.1333333 0 1 1 4.26666,0 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3590"
- inkscape:connector-curvature="0" />
- <path
- d="m 113.84752,75.794895 a 2.1333333,2.1333333 0 1 1 -3.69504,2.133333 2.1333333,2.1333333 0 1 1 3.69504,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3592"
- inkscape:connector-curvature="0" />
- <path
- d="m 209.84752,242.07177 a 2.1333333,2.1333333 0 1 1 -3.69504,2.13333 2.1333333,2.1333333 0 1 1 3.69504,-2.13333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3594"
- inkscape:connector-curvature="0" />
- <path
- d="m 77.928228,110.15248 a 2.1333333,2.1333333 0 1 1 -2.133333,3.69504 2.1333333,2.1333333 0 1 1 2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3596"
- inkscape:connector-curvature="0" />
- <path
- d="m 244.2051,206.15248 a 2.1333333,2.1333333 0 1 1 -2.13333,3.69504 2.1333333,2.1333333 0 1 1 2.13333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3598"
- inkscape:connector-curvature="0" />
- <path
- d="m 64,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3600"
- inkscape:connector-curvature="0" />
- <path
- d="m 256,157.86667 a 2.1333333,2.1333333 0 1 1 0,4.26666 2.1333333,2.1333333 0 1 1 0,-4.26666 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3602"
- inkscape:connector-curvature="0" />
- <path
- d="m 75.794895,206.15248 a 2.1333333,2.1333333 0 1 1 2.133333,3.69504 2.1333333,2.1333333 0 1 1 -2.133333,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3604"
- inkscape:connector-curvature="0" />
- <path
- d="m 242.07176,110.15248 a 2.1333343,2.1333343 0 1 1 2.13334,3.69504 2.1333343,2.1333343 0 1 1 -2.13334,-3.69504 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3606"
- inkscape:connector-curvature="0" />
- <path
- d="m 110.15248,242.07177 a 2.1333343,2.1333343 0 1 1 3.69504,2.13334 2.1333343,2.1333343 0 1 1 -3.69504,-2.13334 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3608"
- inkscape:connector-curvature="0" />
- <path
- d="m 206.15248,75.794898 a 2.1333368,2.1333368 0 1 1 3.69505,2.133333 2.1333368,2.1333368 0 1 1 -3.69505,-2.133333 z"
- style="opacity:0.5;fill:#554400;stroke:none;stroke-width:1.06666672"
- id="path3610"
- inkscape:connector-curvature="0" />
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3588" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="translate(0,180)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3590" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,-54.903811,95.096189)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3592" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.8660254,-0.5,0.5,0.8660254,35.096189,250.98076)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3594" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,-54.903811,204.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3596" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0.5,-0.8660254,0.8660254,0.5,100.98076,294.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3598" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,-8.5920721e-7,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3600" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(0,-1,1,0,180,300)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3602" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,95.096189,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3604" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.5,-0.8660254,0.8660254,-0.5,250.98076,264.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3606" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,204.90381,354.90381)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3608" />
+ <path
+ d="M 152 60 A 2 2 0 1 1 148,60 A 2 2 0 1 1 152 60 z"
+ transform="matrix(-0.8660254,-0.5,0.5,-0.8660254,294.90381,199.01924)"
+ style="opacity:0.5;fill:#554400;stroke:none"
+ id="path3610" />
</g>
</g>
<g
- transform="translate(160,160)"
+ transform="translate(150,150)"
id="HourHand">
<g
id="RotHourHand">
<path
- d="m 0,-88 -2.6666667,8 -2.3666666,70.6 c -3.3469867,1.800352 -5.6333337,5.3356907 -5.6333337,9.4 0,4.2644267 2.514059,7.9267093 6.1333337,9.6333333 L -2.6666667,32 H 2.6666667 L 4.5333333,9.6333333 C 8.152608,7.9267093 10.666667,4.2644267 10.666667,0 c 0,-4.0643093 -2.286347,-7.599648 -5.6333337,-9.4 L 2.6666667,-80 Z M 0,-2.6666667 C 1.472,-2.6666667 2.6666667,-1.472 2.6666667,0 2.6666667,1.472 1.472,2.6666667 0,2.6666667 -1.472,2.6666667 -2.6666667,1.472 -2.6666667,0 -2.6666667,-1.472 -1.472,-2.6666667 0,-2.6666667 Z"
- style="opacity:1;fill:#800000;stroke:#000000;stroke-width:1.06666672"
- id="HourHandPath"
- inkscape:connector-curvature="0" />
+ d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+ style="opacity:1;fill:#800000;stroke:black"
+ id="HourHandPath" />
</g>
</g>
<g
- transform="translate(400,160)"
+ transform="translate(375,150)"
id="MinuteHand">
<g
id="RotMinuteHand">
<path
- d="m 0,-88 -2.6666667,8 -2.3666666,70.6 c -3.3469867,1.800352 -5.6333337,5.3356907 -5.6333337,9.4 0,4.2644267 2.514059,7.9267093 6.1333337,9.6333333 L -2.6666667,32 H 2.6666667 L 4.5333333,9.6333333 C 8.152608,7.9267093 10.666667,4.2644267 10.666667,0 c 0,-4.0643093 -2.286347,-7.599648 -5.6333337,-9.4 L 2.6666667,-80 Z M 0,-2.6666667 C 1.472,-2.6666667 2.6666667,-1.472 2.6666667,0 2.6666667,1.472 1.472,2.6666667 0,2.6666667 -1.472,2.6666667 -2.6666667,1.472 -2.6666667,0 -2.6666667,-1.472 -1.472,-2.6666667 0,-2.6666667 Z"
- style="opacity:1;fill:#800000;stroke:#000000;stroke-width:1.06666672"
- id="MinuteHandPath"
- inkscape:connector-curvature="0" />
+ d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+ style="opacity:1;fill:#800000;stroke:black"
+ id="MinuteHandPath" />
</g>
</g>
<g
- transform="translate(640,160)"
+ transform="translate(600,150)"
id="SecondHand">
<g
id="RotSecondHand">
<path
- d="m 0,-88 -2.6666667,8 -2.3666666,70.6 c -3.3469867,1.800352 -5.6333337,5.3356907 -5.6333337,9.4 0,4.2644267 2.514059,7.9267093 6.1333337,9.6333333 L -2.6666667,32 H 2.6666667 L 4.5333333,9.6333333 C 8.152608,7.9267093 10.666667,4.2644267 10.666667,0 c 0,-4.0643093 -2.286347,-7.599648 -5.6333337,-9.4 L 2.6666667,-80 Z M 0,-2.6666667 C 1.472,-2.6666667 2.6666667,-1.472 2.6666667,0 2.6666667,1.472 1.472,2.6666667 0,2.6666667 -1.472,2.6666667 -2.6666667,1.472 -2.6666667,0 -2.6666667,-1.472 -1.472,-2.6666667 0,-2.6666667 Z"
- style="opacity:1;fill:#800000;stroke:#000000;stroke-width:1.06666672"
- id="SecondHandPath"
- inkscape:connector-curvature="0" />
+ d="M 0,-82.5 L -2.5,-75 L -4.71875,-8.8125 C -7.85655,-7.12467 -10,-3.81029 -10,0 C -10,3.9979 -7.64307,7.43129 -4.25,9.03125 L -2.5,30 L 2.5,30 L 4.25,9.03125 C 7.64307,7.43129 10,3.9979 10,0 C 10,-3.81029 7.85655,-7.12467 4.71875,-8.8125 L 2.5,-75 L 0,-82.5 z M 0,-2.5 C 1.38,-2.5 2.5,-1.38 2.5,0 C 2.5,1.38 1.38,2.5 0,2.5 C -1.38,2.5 -2.5,1.38 -2.5,0 C -2.5,-1.38 -1.38,-2.5 0,-2.5 z "
+ style="opacity:1;fill:#800000;stroke:black"
+ id="SecondHandPath" />
</g>
</g>
<text
- x="159.07335"
- y="332.55084"
- style="font-style:italic;font-weight:normal;font-size:25.60000038px;font-family:Serif;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="149.13127"
+ y="311.76642"
+ style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
id="text2253"
xml:space="preserve"><tspan
- x="159.07335"
- y="332.55084"
- id="tspan2255"
- style="stroke-width:1.06666672px">Hours</tspan></text>
+ x="149.13127"
+ y="311.76642"
+ id="tspan2255">Hours</tspan></text>
<text
- x="400.78482"
- y="332.55084"
- style="font-style:italic;font-weight:normal;font-size:25.60000038px;font-family:Serif;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="375.73578"
+ y="311.76642"
+ style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
id="text2257"
xml:space="preserve"><tspan
- x="400.78482"
- y="332.55084"
- id="tspan2259"
- style="stroke-width:1.06666672px">Minutes</tspan></text>
+ x="375.73578"
+ y="311.76642"
+ id="tspan2259">Minutes</tspan></text>
<text
- x="639.39929"
- y="332.55084"
- style="font-style:italic;font-weight:normal;font-size:25.60000038px;font-family:Serif;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="599.43683"
+ y="311.76642"
+ style="font-size:24px;font-style:italic;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
id="text2261"
xml:space="preserve"><tspan
- x="639.39929"
- y="332.55084"
- id="tspan2263"
- style="stroke-width:1.06666672px">Seconds</tspan></text>
+ x="599.43683"
+ y="311.76642"
+ id="tspan2263">Seconds</tspan></text>
<rect
- width="800"
- height="373.33334"
+ width="750"
+ height="350"
x="0"
y="0"
- style="opacity:1;fill:none;stroke:#999999;stroke-width:2.13333344;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ style="opacity:1;fill:none;stroke:#999999;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect3251" />
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;line-height:125%;font-family:Serif;text-align:center;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="727.58038"
- y="355.31464"
- id="text11233"><tspan
+ style="font-size:10px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;text-anchor:middle;fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Serif"
+ x="682.10663"
+ y="333.10748"
+ id="text11233"
+ sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan11599"
- x="727.58038"
- y="355.31464"
- style="stroke-width:1.06666672px">Tavmjong Bah © 2007</tspan><tspan
+ x="682.10663"
+ y="333.10748">Tavmjong Bah © 2007</tspan><tspan
sodipodi:role="line"
id="tspan11601"
- x="727.58038"
- y="368.64798"
- style="stroke-width:1.06666672px">http://tavmjong.free.fr/</tspan></text>
+ x="682.10663"
+ y="345.60748">http://tavmjong.free.fr/</tspan></text>
</svg>
diff --git a/share/examples/blend_modes.svg b/share/examples/blend_modes.svg
index 4180f53d0..53a980272 100644
--- a/share/examples/blend_modes.svg
+++ b/share/examples/blend_modes.svg
@@ -1,4862 +1,753 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="210mm"
- height="297mm"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- sodipodi:docname="blend_modes.svg"
- enable-background="new"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
- <defs
- id="defs1903">
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4602">
- <stop
- style="stop-color:#0000ff;stop-opacity:1"
- offset="0"
- id="stop4604" />
- <stop
- style="stop-color:#ffff00;stop-opacity:1"
- offset="1"
- id="stop4606" />
- </linearGradient>
- <linearGradient
- id="linearGradient4508"
- inkscape:collect="always">
- <stop
- id="stop4510"
- offset="0"
- style="stop-color:#ff0000;stop-opacity:1" />
- <stop
- id="stop4512"
- offset="1"
- style="stop-color:#00ffff;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4496">
- <stop
- style="stop-color:#00ff00;stop-opacity:1"
- offset="0"
- id="stop4498" />
- <stop
- style="stop-color:#ff00ff;stop-opacity:1"
- offset="1"
- id="stop4500" />
- </linearGradient>
- <linearGradient
- id="linearGradient4220">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop4222" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop4224" />
- </linearGradient>
- <linearGradient
- id="linearGradient4214">
- <stop
- style="stop-color:#ffff00;stop-opacity:1;"
- offset="0"
- id="stop4216" />
- <stop
- style="stop-color:#ffff00;stop-opacity:0;"
- offset="1"
- id="stop4218" />
- </linearGradient>
- <linearGradient
- id="linearGradient4208">
- <stop
- style="stop-color:#ff00ff;stop-opacity:1;"
- offset="0"
- id="stop4210" />
- <stop
- style="stop-color:#ff00ff;stop-opacity:0;"
- offset="1"
- id="stop4212" />
- </linearGradient>
- <linearGradient
- id="linearGradient4202">
- <stop
- style="stop-color:#00ffff;stop-opacity:1;"
- offset="0"
- id="stop4204" />
- <stop
- style="stop-color:#00ffff;stop-opacity:0;"
- offset="1"
- id="stop4206" />
- </linearGradient>
- <linearGradient
- id="linearGradient3536"
- inkscape:collect="always">
- <stop
- id="stop3538"
- offset="0"
- style="stop-color:#0000ff;stop-opacity:1" />
- <stop
- id="stop3540"
- offset="1"
- style="stop-color:#0000ff;stop-opacity:0" />
- </linearGradient>
- <linearGradient
- id="linearGradient3530"
- inkscape:collect="always">
- <stop
- id="stop3532"
- offset="0"
- style="stop-color:#00ff00;stop-opacity:1" />
- <stop
- id="stop3534"
- offset="1"
- style="stop-color:#00ff00;stop-opacity:0" />
- </linearGradient>
- <linearGradient
- id="linearGradient3524"
- inkscape:collect="always">
- <stop
- id="stop3526"
- offset="0"
- style="stop-color:#ff0000;stop-opacity:1" />
- <stop
- id="stop3528"
- offset="1"
- style="stop-color:#ff0000;stop-opacity:0" />
- </linearGradient>
- <linearGradient
- id="linearGradient3518">
- <stop
- id="stop3520"
- offset="0"
- style="stop-color:#000000;stop-opacity:1" />
- <stop
- id="stop3522"
- offset="1"
- style="stop-color:#000000;stop-opacity:0" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2959">
- <stop
- style="stop-color:#0000ff;stop-opacity:1"
- offset="0"
- id="stop2961" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="1"
- id="stop2963" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2951">
- <stop
- style="stop-color:#00ff00;stop-opacity:1"
- offset="0"
- id="stop2953" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="1"
- id="stop2955" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient2937">
- <stop
- style="stop-color:#ff0000;stop-opacity:1"
- offset="0"
- id="stop2939" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="1"
- id="stop2941" />
- </linearGradient>
- <linearGradient
- id="linearGradient2927">
- <stop
- style="stop-color:#000000;stop-opacity:1"
- offset="0"
- id="stop2929" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1;"
- offset="1"
- id="stop2931" />
- </linearGradient>
- <filter
- inkscape:collect="always"
- id="filter2849">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend2851" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2853">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend2855" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2857">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend2859" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2877">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend2879" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2881">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend2883" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2885">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend2887" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter2995">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend2997" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3017">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend3019" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3039">
- <feBlend
- inkscape:collect="always"
- mode="darken"
- in2="BackgroundImage"
- id="feBlend3041" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3061">
- <feBlend
- inkscape:collect="always"
- mode="lighten"
- in2="BackgroundImage"
- id="feBlend3063" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3120"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3122"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3124"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3126"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3128"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3130"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3132"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3134"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3136"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3138"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3140"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3142"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3144"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3146"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3148"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3150"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3152"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3154"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3156"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3158"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3254"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3256"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3258"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3260"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3262"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3264"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3266"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3268"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3270"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3272"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3274"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3276"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3278"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3280"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3282"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3284"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3286"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3288"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3290"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3292"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3366"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3368"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3370"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3372"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3374"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3376"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3378"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3380"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3382"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3384"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3386"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3388"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3390"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3392"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3394"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3396"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2927"
- id="linearGradient3398"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2937"
- id="linearGradient3400"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2951"
- id="linearGradient3402"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2959"
- id="linearGradient3404"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3478"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3480"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3482"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3484"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3552"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3554"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3556"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3558"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3570"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3572"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3574"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3576"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3588"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3590"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3592"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3594"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3606"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3608"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3610"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3612"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <filter
- inkscape:collect="always"
- id="filter3614">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend3616" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3618">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend3620" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3622">
- <feBlend
- inkscape:collect="always"
- mode="darken"
- in2="BackgroundImage"
- id="feBlend3624" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter3626">
- <feBlend
- inkscape:collect="always"
- mode="lighten"
- in2="BackgroundImage"
- id="feBlend3628" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3702"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3704"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3706"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3708"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3710"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3712"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3714"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3716"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3718"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3720"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3722"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3724"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3726"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3728"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3730"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3732"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3734"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3736"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3738"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3740"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3814"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3816"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3818"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3820"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3822"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3824"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3826"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3828"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3830"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3832"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3834"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3836"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3838"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3840"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3842"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3844"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3518"
- id="linearGradient3846"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29814"
- x2="699.81165"
- y2="468.29814"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3524"
- id="linearGradient3848"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3530"
- id="linearGradient3850"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3536"
- id="linearGradient3852"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4082"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4084"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4086"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4088"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4236"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4238"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4240"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4242"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4254"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4256"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4258"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4260"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4272"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4274"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4276"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4278"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4290"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4292"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4294"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4296"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <filter
- inkscape:collect="always"
- id="filter4298">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend4300" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter4302">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend4304" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter4306">
- <feBlend
- inkscape:collect="always"
- mode="darken"
- in2="BackgroundImage"
- id="feBlend4308" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter4310">
- <feBlend
- inkscape:collect="always"
- mode="lighten"
- in2="BackgroundImage"
- id="feBlend4312" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4364"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4366"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4368"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4370"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4372"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4374"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4376"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4378"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4380"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4382"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4384"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4386"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4388"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4390"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4392"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4394"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4396"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4398"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4400"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4402"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4454"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4456"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4458"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4460"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4462"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4464"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4466"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4468"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4470"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4472"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4474"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4476"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4478"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4480"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4482"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4484"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4202"
- id="linearGradient4486"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="468.29813"
- x2="699.81165"
- y2="468.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4208"
- id="linearGradient4488"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="484.29813"
- x2="699.81165"
- y2="484.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4214"
- id="linearGradient4490"
- gradientUnits="userSpaceOnUse"
- x1="290.77213"
- y1="500.29813"
- x2="699.81165"
- y2="500.29813"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4220"
- id="linearGradient4492"
- gradientUnits="userSpaceOnUse"
- x1="289.26553"
- y1="515.26233"
- x2="699.81165"
- y2="516.29816"
- gradientTransform="scale(1.0666667)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4502"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.14473,-69.97965)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4506"
- gradientUnits="userSpaceOnUse"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288"
- gradientTransform="translate(80,-100)" />
- <filter
- inkscape:collect="always"
- id="filter4514">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend4516" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4522"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,102.2113)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4524"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(80,200)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4534"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,270.02853)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4536"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(80,500)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4554"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.14473,122.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4556"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(80,-100)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4562"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.14473,314.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4564"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(80,-100)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4570"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.14473,506.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4572"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(80,-100)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4578"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.14473,868.68702)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4508"
- id="linearGradient4580"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,16.144721,698.02035)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <filter
- inkscape:collect="always"
- id="filter4582">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend4584" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter4586">
- <feBlend
- inkscape:collect="always"
- mode="darken"
- in2="BackgroundImage"
- id="feBlend4588" />
- </filter>
- <filter
- inkscape:collect="always"
- id="filter4590">
- <feBlend
- inkscape:collect="always"
- mode="lighten"
- in2="BackgroundImage"
- id="feBlend4592" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4598"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,868.68702)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4602"
- id="linearGradient4600"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,698.02035)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4612"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,506.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4602"
- id="linearGradient4614"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,474.39408)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <filter
- inkscape:collect="always"
- id="filter4616">
- <feBlend
- inkscape:collect="always"
- mode="lighten"
- in2="BackgroundImage"
- id="feBlend4618" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4624"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,314.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4602"
- id="linearGradient4626"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,294.39408)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <filter
- inkscape:collect="always"
- id="filter4628">
- <feBlend
- inkscape:collect="always"
- mode="darken"
- in2="BackgroundImage"
- id="feBlend4630" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4636"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,122.02035)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4602"
- id="linearGradient4638"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,114.39408)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <filter
- inkscape:collect="always"
- id="filter4640">
- <feBlend
- inkscape:collect="always"
- mode="screen"
- in2="BackgroundImage"
- id="feBlend4642" />
- </filter>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4496"
- id="linearGradient4648"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.59668341,0,0,0.59668341,1061.4781,-69.979648)"
- x1="-242.53761"
- y1="423.03714"
- x2="-242.53761"
- y2="141.60864" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4602"
- id="linearGradient4650"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,-65.60592)"
- x1="-383.25186"
- y1="282.32288"
- x2="-101.82336"
- y2="282.32288" />
- <filter
- inkscape:collect="always"
- id="filter4652">
- <feBlend
- inkscape:collect="always"
- mode="multiply"
- in2="BackgroundImage"
- id="feBlend4654" />
- </filter>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.5002754"
- inkscape:cx="369.4624"
- inkscape:cy="520.0393"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="877"
- inkscape:window-height="715"
- inkscape:window-x="96"
- inkscape:window-y="25"
- showguides="true"
- inkscape:guide-bbox="true"
- guidetolerance="4"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:creator>
- <cc:Agent>
- <dc:title>Niko Kiirala &lt;niko@kiirala.com&gt;</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:title>Blending modes test</dc:title>
- <dc:date>2007-07-03</dc:date>
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
- <dc:language>en</dc:language>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>feBlend</rdf:li>
- <rdf:li>blending modes</rdf:li>
- <rdf:li>multiply</rdf:li>
- <rdf:li>screen</rdf:li>
- <rdf:li>darken</rdf:li>
- <rdf:li>lighten</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:rights>
- <cc:Agent>
- <dc:title>Copyright 2007 Niko Kiirala</dc:title>
- </cc:Agent>
- </dc:rights>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Reproduction" />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Distribution" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#Notice" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#Attribution" />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <g
- id="g2861"
- transform="translate(-109.93897,-177.57373)"
- style="font-size:11px">
- <circle
- id="path2841"
- style="color:#000000;font-size:11.45962048px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- cx="400.78836"
- cy="342.82245"
- r="106.66667" />
- <circle
- transform="matrix(1.1024751,0,0,1.1024751,-249.936,-43.960829)"
- id="path2843"
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2849);enable-background:accumulate"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- <circle
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2857);enable-background:accumulate"
- id="path2845"
- transform="matrix(1.1024751,0,0,1.1024751,-285.60004,22.172505)"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- <circle
- transform="matrix(1.1024751,0,0,1.1024751,-214.27196,22.172505)"
- id="path2847"
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2853);enable-background:accumulate"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- </g>
- <g
- id="g2867"
- transform="translate(124.7277,-177.57373)"
- style="font-size:11px">
- <circle
- style="color:#000000;font-size:11.45962048px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="path2869"
- cx="400.78836"
- cy="342.82245"
- r="106.66667" />
- <circle
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2877);enable-background:accumulate"
- id="path2871"
- transform="matrix(1.1024751,0,0,1.1024751,-249.936,-43.960829)"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- <circle
- transform="matrix(1.1024751,0,0,1.1024751,-285.60004,22.172505)"
- id="path2873"
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2885);enable-background:accumulate"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- <circle
- style="color:#000000;font-size:10.64271927px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter2881);enable-background:accumulate"
- id="path2875"
- transform="matrix(1.1024751,0,0,1.1024751,-214.27196,22.172505)"
- cx="590.2395"
- cy="312.13095"
- r="58.051197" />
- </g>
- <rect
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect2917"
- width="232.30984"
- height="232.73769"
- x="278.34686"
- y="310.97119" />
- <g
- id="g2967"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,61.971541)"
- style="font-size:20.65946579px">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3152);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect2919"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect2921"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3154);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3156);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect2923"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect2925"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3158);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g2977"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,107.40673)"
- style="font-size:20.65946579px;filter:url(#filter2995)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect2979"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3144);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3146);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect2981"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect2983"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3148);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect2985"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3017)"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,152.84191)"
- id="g2999">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3136);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3001"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3003"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3138);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3140);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3005"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3007"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3142);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g3021"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,198.2771)"
- style="font-size:20.65946579px;filter:url(#filter3039)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3023"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3128);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3130);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3025"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3027"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3132);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3134);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3029"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3061)"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,243.71228)"
- id="g3043">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3120);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3045"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3047"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3122);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3124);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3049"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3051"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3126);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="270.71814"
- y="48.886002"
- id="text3110"><tspan
- sodipodi:role="line"
- id="tspan3112"
- x="270.71814"
- y="48.886002"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="503.3848"
- y="48.886002"
- id="text3114"><tspan
- sodipodi:role="line"
- id="tspan3116"
- x="503.3848"
- y="48.886002"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="321.34052"
- id="text3162"><tspan
- sodipodi:role="line"
- id="tspan3164"
- x="280.61862"
- y="321.34052"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="367.63702"
- id="text3166"><tspan
- sodipodi:role="line"
- id="tspan3168"
- x="280.61862"
- y="367.63702"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="412.86954"
- id="text3170"><tspan
- sodipodi:role="line"
- id="tspan3172"
- x="280.61862"
- y="412.86954"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="458.80667"
- id="text3174"><tspan
- sodipodi:role="line"
- id="tspan3176"
- x="280.61862"
- y="458.80667"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="503.64609"
- id="text3178"><tspan
- sodipodi:role="line"
- id="tspan3180"
- x="280.61862"
- y="503.64609"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <rect
- y="310.97119"
- x="39.812141"
- height="232.73769"
- width="232.30984"
- id="rect3182"
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56793982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <g
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,61.971541)"
- id="g3184"
- style="font-size:20.65946579px">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3186"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3254);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3256);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3188"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3190"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3260);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3192"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter2995)"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,107.40673)"
- id="g3194">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3262);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3196"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3198"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3264);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3266);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3200"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3202"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3268);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g3204"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,152.84191)"
- style="font-size:20.65946579px;filter:url(#filter3017)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3206"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3270);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3208"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3210"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3274);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3276);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3212"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3039)"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,198.2771)"
- id="g3214">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3278);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3216"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3218"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3280);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3220"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3222"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3284);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g3224"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,243.71228)"
- style="font-size:20.65946579px;filter:url(#filter3061)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3226"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3286);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3288);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3228"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3230"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3290);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3292);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3232"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <text
- id="text3234"
- y="321.34052"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="321.34052"
- x="42.0839"
- id="tspan3236"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- id="text3238"
- y="367.63702"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="367.63702"
- x="42.0839"
- id="tspan3240"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- id="text3242"
- y="412.86954"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="412.86954"
- x="42.0839"
- id="tspan3244"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- id="text3246"
- y="458.80667"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="458.80667"
- x="42.0839"
- id="tspan3248"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- id="text3250"
- y="503.64609"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="503.64609"
- x="42.0839"
- id="tspan3252"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <rect
- y="310.97119"
- x="516.88153"
- height="232.73769"
- width="232.30984"
- id="rect3294"
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <g
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,61.971541)"
- id="g3296"
- style="font-size:20.65946579px">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3298"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3368);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3300"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3302"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3370);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3304"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter2995)"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,107.40673)"
- id="g3306">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3308"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3310"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3376);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3312"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3314"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3380);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g3316"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,152.84191)"
- style="font-size:20.65946579px;filter:url(#filter3017)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3318"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3382);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3320"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3322"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3324"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3039)"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,198.2771)"
- id="g3326">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3328"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3330"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3392);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3394);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3332"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3334"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3396);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- id="g3336"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,243.71228)"
- style="font-size:20.65946579px;filter:url(#filter3061)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3338"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3400);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3340"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3342"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3402);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3404);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3344"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <text
- id="text3346"
- y="321.34052"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="321.34052"
- x="519.15332"
- id="tspan3348"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- id="text3350"
- y="367.63702"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="367.63702"
- x="519.15332"
- id="tspan3352"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- id="text3354"
- y="412.86954"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="412.86954"
- x="519.15332"
- id="tspan3356"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- id="text3358"
- y="458.80667"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="458.80667"
- x="519.15332"
- id="tspan3360"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- id="text3362"
- y="503.64609"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="503.64609"
- x="519.15332"
- id="tspan3364"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <rect
- y="570.83923"
- x="278.34686"
- height="232.73769"
- width="232.30984"
- id="rect3406"
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,321.83959)"
- id="g3408"
- style="font-size:20.65946579px">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3410"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3478);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3480);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3412"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3414"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3482);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3484);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3416"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <text
- id="text3458"
- y="581.20856"
- x="280.61862"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="581.20856"
- x="280.61862"
- id="tspan3460"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- id="text3462"
- y="627.50507"
- x="280.61862"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="627.50507"
- x="280.61862"
- id="tspan3464"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- id="text3466"
- y="672.73755"
- x="280.61862"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="672.73755"
- x="280.61862"
- id="tspan3468"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- id="text3470"
- y="718.67474"
- x="280.61862"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="718.67474"
- x="280.61862"
- id="tspan3472"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- id="text3474"
- y="763.51404"
- x="280.61862"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="763.51404"
- x="280.61862"
- id="tspan3476"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <g
- id="g3542"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,367.27477)"
- style="font-size:20.65946579px;filter:url(#filter3614)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3552);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3544"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3546"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3554);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3556);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3548"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3550"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3558);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,412.70996)"
- id="g3560"
- style="font-size:20.65946579px;filter:url(#filter3618)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3562"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3570);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3572);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3564"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3566"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3574);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3576);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3568"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- id="g3578"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,458.14515)"
- style="font-size:20.65946579px;filter:url(#filter3622)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3588);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3580"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3582"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3590);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3592);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3584"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3586"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3594);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,503.58033)"
- id="g3596"
- style="font-size:20.65946579px;filter:url(#filter3626)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3598"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3606);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3608);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3600"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3602"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3610);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3604"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <rect
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3630"
- width="232.30984"
- height="232.73769"
- x="516.88153"
- y="570.83923" />
- <g
- id="g3632"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,321.83959)"
- style="font-size:20.65946579px">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3702);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3634"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3636"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3704);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3706);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3638"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3640"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3708);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="519.15332"
- y="581.20856"
- id="text3642"><tspan
- sodipodi:role="line"
- id="tspan3644"
- x="519.15332"
- y="581.20856"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="519.15332"
- y="627.50507"
- id="text3646"><tspan
- sodipodi:role="line"
- id="tspan3648"
- x="519.15332"
- y="627.50507"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="519.15332"
- y="672.73755"
- id="text3650"><tspan
- sodipodi:role="line"
- id="tspan3652"
- x="519.15332"
- y="672.73755"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="519.15332"
- y="718.67474"
- id="text3654"><tspan
- sodipodi:role="line"
- id="tspan3656"
- x="519.15332"
- y="718.67474"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="519.15332"
- y="763.51404"
- id="text3658"><tspan
- sodipodi:role="line"
- id="tspan3660"
- x="519.15332"
- y="763.51404"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <g
- style="font-size:20.65946579px;filter:url(#filter3614)"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,367.27477)"
- id="g3662">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3664"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3710);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3712);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3666"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3668"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3714);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3716);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3670"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3618)"
- id="g3672"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,412.70996)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3718);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3674"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3676"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3720);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3722);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3678"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3680"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3724);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3622)"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,458.14515)"
- id="g3682">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3684"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3726);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3728);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3686"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3688"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3730);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3732);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3690"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3626)"
- id="g3692"
- transform="matrix(0.5324436,0,0,0.5324436,351.7405,503.58033)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3734);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3694"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3696"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3736);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3738);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3698"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3700"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3740);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <rect
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56793982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3742"
- width="232.30984"
- height="232.73769"
- x="39.812141"
- y="570.83923" />
- <g
- id="g3744"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,321.83959)"
- style="font-size:20.65946579px">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3814);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3746"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3748"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3816);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3818);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3750"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3752"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3820);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="42.0839"
- y="581.20856"
- id="text3754"><tspan
- sodipodi:role="line"
- id="tspan3756"
- x="42.0839"
- y="581.20856"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="42.0839"
- y="627.50507"
- id="text3758"><tspan
- sodipodi:role="line"
- id="tspan3760"
- x="42.0839"
- y="627.50507"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="42.0839"
- y="672.73755"
- id="text3762"><tspan
- sodipodi:role="line"
- id="tspan3764"
- x="42.0839"
- y="672.73755"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="42.0839"
- y="718.67474"
- id="text3766"><tspan
- sodipodi:role="line"
- id="tspan3768"
- x="42.0839"
- y="718.67474"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="42.0839"
- y="763.51404"
- id="text3770"><tspan
- sodipodi:role="line"
- id="tspan3772"
- x="42.0839"
- y="763.51404"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <g
- style="font-size:20.65946579px;filter:url(#filter3614)"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,367.27477)"
- id="g3774">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3776"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3824);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3778"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3780"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3826);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3782"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3618)"
- id="g3784"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,412.70996)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3830);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3786"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3788"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3832);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3834);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3790"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3792"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3836);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3622)"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,458.14515)"
- id="g3794">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3796"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3838);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3798"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3800"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3844);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3802"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter3626)"
- id="g3804"
- transform="matrix(0.5324436,0,0,0.5324436,-125.32894,503.58033)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3846);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3806"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3808"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3848);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3850);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3810"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3812"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient3852);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="38.890675"
- y="307.94528"
- id="text3854"><tspan
- sodipodi:role="line"
- id="tspan3856"
- x="38.890675"
- y="307.94528"
- style="stroke-width:1.06666672px">Colour to white</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="38.890675"
- y="565.90796"
- id="text3858"><tspan
- sodipodi:role="line"
- id="tspan3860"
- x="38.890675"
- y="565.90796"
- style="stroke-width:1.06666672px">Colour to transparent</tspan></text>
- <rect
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3862"
- width="232.30984"
- height="232.73769"
- x="278.34686"
- y="826.83923" />
- <g
- style="font-size:20.65946579px"
- id="g3864"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,577.83959)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4082);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3866"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3868"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4084);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4086);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect3870"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect3872"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4088);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="837.20856"
- id="text3874"><tspan
- sodipodi:role="line"
- id="tspan3876"
- x="280.61862"
- y="837.20856"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="883.50507"
- id="text3878"><tspan
- sodipodi:role="line"
- id="tspan3880"
- x="280.61862"
- y="883.50507"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="928.73755"
- id="text3882"><tspan
- sodipodi:role="line"
- id="tspan3884"
- x="280.61862"
- y="928.73755"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="974.67474"
- id="text3886"><tspan
- sodipodi:role="line"
- id="tspan3888"
- x="280.61862"
- y="974.67474"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="280.61862"
- y="1019.514"
- id="text3890"><tspan
- sodipodi:role="line"
- id="tspan3892"
- x="280.61862"
- y="1019.514"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <rect
- y="826.83923"
- x="516.88153"
- height="232.73769"
- width="232.30984"
- id="rect3934"
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <text
- id="text3946"
- y="837.20856"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="837.20856"
- x="519.15332"
- id="tspan3948"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- id="text3950"
- y="883.50507"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="883.50507"
- x="519.15332"
- id="tspan3952"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- id="text3954"
- y="928.73755"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="928.73755"
- x="519.15332"
- id="tspan3956"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- id="text3958"
- y="974.67474"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="974.67474"
- x="519.15332"
- id="tspan3960"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- id="text3962"
- y="1019.514"
- x="519.15332"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="1019.514"
- x="519.15332"
- id="tspan3964"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <rect
- y="826.83923"
- x="39.812141"
- height="232.73769"
- width="232.30984"
- id="rect4006"
- style="color:#000000;font-size:11px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56793982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <text
- id="text4018"
- y="837.20856"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="837.20856"
- x="42.0839"
- id="tspan4020"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Normal</tspan></text>
- <text
- id="text4022"
- y="883.50507"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="883.50507"
- x="42.0839"
- id="tspan4024"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Multiply</tspan></text>
- <text
- id="text4026"
- y="928.73755"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="928.73755"
- x="42.0839"
- id="tspan4028"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Screen</tspan></text>
- <text
- id="text4030"
- y="974.67474"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="974.67474"
- x="42.0839"
- id="tspan4032"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Darken</tspan></text>
- <text
- id="text4034"
- y="1019.514"
- x="42.0839"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.73333359px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="1019.514"
- x="42.0839"
- id="tspan4036"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Lighten</tspan></text>
- <text
- id="text4078"
- y="821.90796"
- x="38.890675"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.80000019px;line-height:125%;font-family:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- y="821.90796"
- x="38.890675"
- id="tspan4080"
- sodipodi:role="line"
- style="stroke-width:1.06666672px">Colour to transparent (CMYK)</tspan></text>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,623.27477)"
- id="g4226"
- style="font-size:20.65946579px;filter:url(#filter4298)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4228"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4236);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4238);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4230"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4232"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4240);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4234"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,668.70996)"
- id="g4244"
- style="font-size:20.65946579px;filter:url(#filter4302)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4246"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4254);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4256);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4248"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4250"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4260);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4252"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,714.14515)"
- id="g4262"
- style="font-size:20.65946579px;filter:url(#filter4306)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4264"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4274);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4266"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4268"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4276);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4278);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4270"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4310)"
- id="g4280"
- transform="matrix(0.5324436,0,0,0.5324436,113.20579,759.58033)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4290);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4282"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4284"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4292);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4294);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4286"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4288"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4296);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,-125.61291,577.83959)"
- id="g4314"
- style="font-size:20.65946579px">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4316"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4364);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4318"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4320"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4368);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4370);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4322"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4298)"
- id="g4324"
- transform="matrix(0.5324436,0,0,0.5324436,-125.61291,623.27477)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4326"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4328"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4376);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4330"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4332"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4302)"
- id="g4334"
- transform="matrix(0.5324436,0,0,0.5324436,-125.61291,668.70996)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4380);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4336"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4338"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4382);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4340"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4342"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4386);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4306)"
- id="g4344"
- transform="matrix(0.5324436,0,0,0.5324436,-125.61291,714.14515)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4388);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4346"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4348"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4390);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4392);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4350"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4352"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4394);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,-125.61291,759.58033)"
- id="g4354"
- style="font-size:20.65946579px;filter:url(#filter4310)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4356"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4396);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4358"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4360"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4400);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4402);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4362"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,351.74047,577.83959)"
- id="g4404"
- style="font-size:20.65946579px">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4406"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4454);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4456);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4408"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4410"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4458);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4460);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4412"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4298)"
- id="g4414"
- transform="matrix(0.5324436,0,0,0.5324436,351.74047,623.27477)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4462);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4416"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4418"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4464);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4466);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4420"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4422"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4468);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4302)"
- id="g4424"
- transform="matrix(0.5324436,0,0,0.5324436,351.74047,668.70996)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4470);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4426"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4428"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4472);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4474);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4430"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4432"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4476);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- style="font-size:20.65946579px;filter:url(#filter4306)"
- id="g4434"
- transform="matrix(0.5324436,0,0,0.5324436,351.74047,714.14515)">
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4478);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4436"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="491.48285" />
- <rect
- y="508.5495"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4438"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4480);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4482);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4440"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="525.61615" />
- <rect
- y="542.68286"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4442"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4484);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(0.5324436,0,0,0.5324436,351.74047,759.58033)"
- id="g4444"
- style="font-size:20.65946579px;filter:url(#filter4310)">
- <rect
- y="491.48285"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4446"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4486);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4488);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4448"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="508.5495" />
- <rect
- y="525.61615"
- x="310.15692"
- height="16.070341"
- width="436.30881"
- id="rect4450"
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4490);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;font-size:20.65946579px;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4492);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4452"
- width="436.30881"
- height="16.070341"
- x="310.15692"
- y="542.68286" />
- </g>
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4502);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4494"
- width="167.92374"
- height="167.92374"
- x="-212.53532"
- y="14.515885" />
- <rect
- y="41.608643"
- x="-303.25186"
- height="281.4285"
- width="281.4285"
- id="rect4504"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4506);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4514);enable-background:accumulate"
- transform="matrix(0.59668341,0,0,0.59668341,-31.589952,-10.311303)" />
- <rect
- y="206.51588"
- x="-212.53532"
- height="167.92374"
- width="167.92374"
- id="rect4550"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4554);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- transform="matrix(0.59668341,0,0,0.59668341,-31.589952,181.68869)"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4556);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4582);enable-background:accumulate"
- id="rect4552"
- width="281.4285"
- height="281.4285"
- x="-303.25186"
- y="41.608643" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4562);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4558"
- width="167.92374"
- height="167.92374"
- x="-212.53532"
- y="398.5159" />
- <rect
- y="41.608643"
- x="-303.25186"
- height="281.4285"
- width="281.4285"
- id="rect4560"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4564);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4586);enable-background:accumulate"
- transform="matrix(0.59668341,0,0,0.59668341,-31.589952,373.68869)" />
- <rect
- y="590.51587"
- x="-212.53532"
- height="167.92374"
- width="167.92374"
- id="rect4566"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4570);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- transform="matrix(0.59668341,0,0,0.59668341,-31.589952,565.68869)"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4572);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4590);enable-background:accumulate"
- id="rect4568"
- width="281.4285"
- height="281.4285"
- x="-303.25186"
- y="41.608643" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4578);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4574"
- width="167.92374"
- height="167.92374"
- x="-212.53532"
- y="953.18256" />
- <rect
- y="782.51587"
- x="-212.53531"
- height="167.92372"
- width="167.92372"
- id="rect4576"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4580);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.59668344;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- y="953.18256"
- x="832.79803"
- height="167.92374"
- width="167.92374"
- id="rect4594"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4598);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4596"
- width="167.92372"
- height="167.92372"
- x="832.79803"
- y="782.51587" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4608"
- width="167.92374"
- height="167.92374"
- x="832.79803"
- y="590.51587" />
- <rect
- y="553.60864"
- x="780.74817"
- height="157.42848"
- width="157.42848"
- id="rect4610"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4614);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4616);enable-background:accumulate"
- transform="scale(1.0666667)" />
- <rect
- y="398.5159"
- x="832.79803"
- height="167.92374"
- width="167.92374"
- id="rect4620"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4624);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4626);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4628);enable-background:accumulate"
- id="rect4622"
- width="157.42848"
- height="157.42848"
- x="780.74817"
- y="373.60864"
- transform="scale(1.0666667)" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4636);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- id="rect4632"
- width="167.92374"
- height="167.92374"
- x="832.79803"
- y="206.51588" />
- <rect
- y="193.60864"
- x="780.74817"
- height="157.42848"
- width="157.42848"
- id="rect4634"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4638);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4640);enable-background:accumulate"
- transform="scale(1.0666667)" />
- <rect
- y="14.515885"
- x="832.79803"
- height="167.92374"
- width="167.92374"
- id="rect4644"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4648);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <rect
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4650);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;filter:url(#filter4652);enable-background:accumulate"
- id="rect4646"
- width="157.42848"
- height="157.42848"
- x="780.74817"
- y="13.608643"
- transform="scale(1.0666667)" />
- </g>
+<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="744" height="1052" id="svg1901" sodipodi:version="0.32" inkscape:version="0.92" sodipodi:docname="blend_modes.svg" enable-background="new" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1">
+<defs id="defs1903">
+<linearGradient inkscape:collect="always" id="linearGradient4602">
+<stop style="stop-color:#0000ff;stop-opacity:1" offset="0" id="stop4604" />
+<stop style="stop-color:#ffff00;stop-opacity:1" offset="1" id="stop4606" />
+</linearGradient>
+<linearGradient id="linearGradient4508" inkscape:collect="always">
+<stop id="stop4510" offset="0" style="stop-color:#ff0000;stop-opacity:1" />
+<stop id="stop4512" offset="1" style="stop-color:#00ffff;stop-opacity:1" />
+</linearGradient>
+<linearGradient inkscape:collect="always" id="linearGradient4496">
+<stop style="stop-color:#00ff00;stop-opacity:1" offset="0" id="stop4498" />
+<stop style="stop-color:#ff00ff;stop-opacity:1" offset="1" id="stop4500" />
+</linearGradient>
+<linearGradient id="linearGradient4220">
+<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop4222" />
+<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop4224" />
+</linearGradient>
+<linearGradient id="linearGradient4214">
+<stop style="stop-color:#ffff00;stop-opacity:1;" offset="0" id="stop4216" />
+<stop style="stop-color:#ffff00;stop-opacity:0;" offset="1" id="stop4218" />
+</linearGradient>
+<linearGradient id="linearGradient4208">
+<stop style="stop-color:#ff00ff;stop-opacity:1;" offset="0" id="stop4210" />
+<stop style="stop-color:#ff00ff;stop-opacity:0;" offset="1" id="stop4212" />
+</linearGradient>
+<linearGradient id="linearGradient4202">
+<stop style="stop-color:#00ffff;stop-opacity:1;" offset="0" id="stop4204" />
+<stop style="stop-color:#00ffff;stop-opacity:0;" offset="1" id="stop4206" />
+</linearGradient>
+<linearGradient id="linearGradient3536" inkscape:collect="always">
+<stop id="stop3538" offset="0" style="stop-color:#0000ff;stop-opacity:1" />
+<stop id="stop3540" offset="1" style="stop-color:#0000ff;stop-opacity:0" />
+</linearGradient>
+<linearGradient id="linearGradient3530" inkscape:collect="always">
+<stop id="stop3532" offset="0" style="stop-color:#00ff00;stop-opacity:1" />
+<stop id="stop3534" offset="1" style="stop-color:#00ff00;stop-opacity:0" />
+</linearGradient>
+<linearGradient id="linearGradient3524" inkscape:collect="always">
+<stop id="stop3526" offset="0" style="stop-color:#ff0000;stop-opacity:1" />
+<stop id="stop3528" offset="1" style="stop-color:#ff0000;stop-opacity:0" />
+</linearGradient>
+<linearGradient id="linearGradient3518">
+<stop id="stop3520" offset="0" style="stop-color:#000000;stop-opacity:1" />
+<stop id="stop3522" offset="1" style="stop-color:#000000;stop-opacity:0" />
+</linearGradient>
+<linearGradient inkscape:collect="always" id="linearGradient2959">
+<stop style="stop-color:#0000ff;stop-opacity:1" offset="0" id="stop2961" />
+<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop2963" />
+</linearGradient>
+<linearGradient inkscape:collect="always" id="linearGradient2951">
+<stop style="stop-color:#00ff00;stop-opacity:1" offset="0" id="stop2953" />
+<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop2955" />
+</linearGradient>
+<linearGradient inkscape:collect="always" id="linearGradient2937">
+<stop style="stop-color:#ff0000;stop-opacity:1" offset="0" id="stop2939" />
+<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop2941" />
+</linearGradient>
+<linearGradient id="linearGradient2927">
+<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop2929" />
+<stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop2931" />
+</linearGradient>
+<filter inkscape:collect="always" id="filter2849">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend2851" />
+</filter>
+<filter inkscape:collect="always" id="filter2853">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend2855" />
+</filter>
+<filter inkscape:collect="always" id="filter2857">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend2859" />
+</filter>
+<filter inkscape:collect="always" id="filter2877">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend2879" />
+</filter>
+<filter inkscape:collect="always" id="filter2881">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend2883" />
+</filter>
+<filter inkscape:collect="always" id="filter2885">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend2887" />
+</filter>
+<filter inkscape:collect="always" id="filter2995">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend2997" />
+</filter>
+<filter inkscape:collect="always" id="filter3017">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend3019" />
+</filter>
+<filter inkscape:collect="always" id="filter3039">
+<feBlend inkscape:collect="always" mode="darken" in2="BackgroundImage" id="feBlend3041" />
+</filter>
+<filter inkscape:collect="always" id="filter3061">
+<feBlend inkscape:collect="always" mode="lighten" in2="BackgroundImage" id="feBlend3063" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3120" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3122" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3124" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3126" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3128" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3130" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3132" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3134" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3136" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3138" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3140" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3142" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3144" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3146" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3148" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3150" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3152" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3154" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3156" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3158" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3254" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3256" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3258" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3260" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3262" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3264" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3266" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3268" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3270" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3272" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3274" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3276" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3278" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3280" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3282" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3284" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3286" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3288" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3290" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3292" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3366" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3368" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3370" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3372" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3374" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3376" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3378" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3380" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3382" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3384" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3386" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3388" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3390" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3392" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3394" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3396" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2927" id="linearGradient3398" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2937" id="linearGradient3400" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2951" id="linearGradient3402" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient2959" id="linearGradient3404" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3478" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3480" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3482" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3484" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3552" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3554" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3556" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3558" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3570" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3572" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3574" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3576" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3588" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3590" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3592" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3594" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3606" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3608" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3610" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3612" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<filter inkscape:collect="always" id="filter3614">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend3616" />
+</filter>
+<filter inkscape:collect="always" id="filter3618">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend3620" />
+</filter>
+<filter inkscape:collect="always" id="filter3622">
+<feBlend inkscape:collect="always" mode="darken" in2="BackgroundImage" id="feBlend3624" />
+</filter>
+<filter inkscape:collect="always" id="filter3626">
+<feBlend inkscape:collect="always" mode="lighten" in2="BackgroundImage" id="feBlend3628" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3702" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3704" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3706" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3708" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3710" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3712" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3714" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3716" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3718" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3720" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3722" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3724" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3726" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3728" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3730" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3732" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3734" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3736" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3738" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3740" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3814" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3816" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3818" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3820" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3822" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3824" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3826" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3828" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3830" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3832" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3834" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3836" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3838" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3840" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3842" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3844" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3518" id="linearGradient3846" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29814" x2="699.81165" y2="468.29814" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3524" id="linearGradient3848" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3530" id="linearGradient3850" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient3536" id="linearGradient3852" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4082" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4084" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4086" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4088" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4236" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4238" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4240" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4242" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4254" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4256" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4258" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4260" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4272" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4274" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4276" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4278" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4290" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4292" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4294" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4296" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<filter inkscape:collect="always" id="filter4298">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend4300" />
+</filter>
+<filter inkscape:collect="always" id="filter4302">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend4304" />
+</filter>
+<filter inkscape:collect="always" id="filter4306">
+<feBlend inkscape:collect="always" mode="darken" in2="BackgroundImage" id="feBlend4308" />
+</filter>
+<filter inkscape:collect="always" id="filter4310">
+<feBlend inkscape:collect="always" mode="lighten" in2="BackgroundImage" id="feBlend4312" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4364" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4366" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4368" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4370" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4372" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4374" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4376" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4378" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4380" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4382" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4384" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4386" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4388" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4390" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4392" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4394" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4396" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4398" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4400" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4402" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4454" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4456" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4458" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4460" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4462" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4464" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4466" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4468" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4470" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4472" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4474" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4476" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4478" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4480" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4482" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4484" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4202" id="linearGradient4486" gradientUnits="userSpaceOnUse" x1="290.77213" y1="468.29813" x2="699.81165" y2="468.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4208" id="linearGradient4488" gradientUnits="userSpaceOnUse" x1="290.77213" y1="484.29813" x2="699.81165" y2="484.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4214" id="linearGradient4490" gradientUnits="userSpaceOnUse" x1="290.77213" y1="500.29813" x2="699.81165" y2="500.29813" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4220" id="linearGradient4492" gradientUnits="userSpaceOnUse" x1="289.26553" y1="515.26233" x2="699.81165" y2="516.29816" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4502" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,-65.605922)" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4506" gradientUnits="userSpaceOnUse" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" gradientTransform="translate(80,-100)" />
+<filter inkscape:collect="always" id="filter4514">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend4516" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4522" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,102.2113)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4524" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,200)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4534" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,270.02853)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4536" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,500)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4554" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,114.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4556" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,-100)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4562" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,294.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4564" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,-100)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4570" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,474.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4572" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,-100)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4578" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,15.135684,814.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4508" id="linearGradient4580" gradientUnits="userSpaceOnUse" gradientTransform="translate(80,-100)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<filter inkscape:collect="always" id="filter4582">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend4584" />
+</filter>
+<filter inkscape:collect="always" id="filter4586">
+<feBlend inkscape:collect="always" mode="darken" in2="BackgroundImage" id="feBlend4588" />
+</filter>
+<filter inkscape:collect="always" id="filter4590">
+<feBlend inkscape:collect="always" mode="lighten" in2="BackgroundImage" id="feBlend4592" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4598" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,814.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4602" id="linearGradient4600" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,654.39408)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4612" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,474.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4602" id="linearGradient4614" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,474.39408)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<filter inkscape:collect="always" id="filter4616">
+<feBlend inkscape:collect="always" mode="lighten" in2="BackgroundImage" id="feBlend4618" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4624" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,294.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4602" id="linearGradient4626" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,294.39408)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<filter inkscape:collect="always" id="filter4628">
+<feBlend inkscape:collect="always" mode="darken" in2="BackgroundImage" id="feBlend4630" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4636" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,114.39408)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4602" id="linearGradient4638" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,114.39408)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<filter inkscape:collect="always" id="filter4640">
+<feBlend inkscape:collect="always" mode="screen" in2="BackgroundImage" id="feBlend4642" />
+</filter>
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4496" id="linearGradient4648" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,-65.60592)" x1="-242.53761" y1="423.03714" x2="-242.53761" y2="141.60864" />
+<linearGradient inkscape:collect="always" xlink:href="#linearGradient4602" id="linearGradient4650" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5593907,0,0,0.5593907,995.13568,-65.60592)" x1="-383.25186" y1="282.32288" x2="-101.82336" y2="282.32288" />
+<filter inkscape:collect="always" id="filter4652">
+<feBlend inkscape:collect="always" mode="multiply" in2="BackgroundImage" id="feBlend4654" />
+</filter>
+</defs>
+<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.5002754" inkscape:cx="369.4624" inkscape:cy="520.0393" inkscape:document-units="px" inkscape:current-layer="layer1" gridtolerance="10000" inkscape:window-width="877" inkscape:window-height="715" inkscape:window-x="96" inkscape:window-y="24" showguides="true" inkscape:guide-bbox="true" guidetolerance="4" showgrid="false" inkscape:window-maximized="0" />
+<metadata id="metadata1906">
+<rdf:RDF>
+<cc:Work rdf:about="">
+<dc:format>image/svg+xml</dc:format>
+<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+<dc:creator>
+<cc:Agent>
+<dc:title>Niko Kiirala &lt;niko@kiirala.com&gt;</dc:title>
+</cc:Agent>
+</dc:creator>
+<dc:title>Blending modes test</dc:title>
+<dc:date>2007-07-03</dc:date>
+<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
+<dc:language>en</dc:language>
+<dc:subject>
+<rdf:Bag>
+<rdf:li>feBlend</rdf:li>
+<rdf:li>blending modes</rdf:li>
+<rdf:li>multiply</rdf:li>
+<rdf:li>screen</rdf:li>
+<rdf:li>darken</rdf:li>
+<rdf:li>lighten</rdf:li>
+</rdf:Bag>
+</dc:subject>
+<dc:rights>
+<cc:Agent>
+<dc:title>Copyright 2007 Niko Kiirala</dc:title>
+</cc:Agent>
+</dc:rights>
+</cc:Work>
+<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
+<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
+<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
+<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+</cc:License>
+</rdf:RDF>
+</metadata>
+<g inkscape:label="Taso 1" inkscape:groupmode="layer" id="layer1" style="opacity:1">
+<g id="g2861" transform="translate(-103.06778,-166.47537)" style="font-size:11">
+<path transform="matrix(0.9598922,0,0,0.9598922,-15.224797,38.350228)" d="m 511.4781,294.8725 c 0,57.5361 -46.6422,104.1784 -104.1783,104.1784 -57.5361,0 -104.1784,-46.6423 -104.1784,-104.1784 0,-57.5361 46.6423,-104.1784 104.1784,-104.1784 57.5361,0 104.1783,46.6423 104.1783,104.1784 z" sodipodi:ry="104.17837" sodipodi:rx="104.17837" sodipodi:cy="294.8725" sodipodi:cx="407.29977" id="path2841" style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.04178368999999993;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11.45962015" sodipodi:type="arc" />
+<path transform="matrix(1.0335704,0,0,1.0335704,-234.315,-41.213277)" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" sodipodi:ry="58.051197" sodipodi:rx="58.051197" sodipodi:cy="312.13095" sodipodi:cx="590.2395" id="path2843" style="opacity:1;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2849);enable-background:accumulate;font-size:10.64271964" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2857);enable-background:accumulate;font-size:10.64271964" id="path2845" sodipodi:cx="590.2395" sodipodi:cy="312.13095" sodipodi:rx="58.051197" sodipodi:ry="58.051197" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" transform="matrix(1.0335704,0,0,1.0335704,-267.75004,20.786723)" />
+<path transform="matrix(1.0335704,0,0,1.0335704,-200.87996,20.786723)" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" sodipodi:ry="58.051197" sodipodi:rx="58.051197" sodipodi:cy="312.13095" sodipodi:cx="590.2395" id="path2847" style="opacity:1;color:#000000;fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2853);enable-background:accumulate;font-size:10.64271964" sodipodi:type="arc" />
+</g>
+<g id="g2867" transform="translate(116.93222,-166.47537)" style="font-size:11">
+<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.04178368999999993;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11.45962015" id="path2869" sodipodi:cx="407.29977" sodipodi:cy="294.8725" sodipodi:rx="104.17837" sodipodi:ry="104.17837" d="m 511.4781,294.8725 c 0,57.5361 -46.6422,104.1784 -104.1783,104.1784 -57.5361,0 -104.1784,-46.6423 -104.1784,-104.1784 0,-57.5361 46.6423,-104.1784 104.1784,-104.1784 57.5361,0 104.1783,46.6423 104.1783,104.1784 z" transform="matrix(0.9598922,0,0,0.9598922,-15.224797,38.350228)" />
+<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2877);enable-background:accumulate;font-size:10.64271964" id="path2871" sodipodi:cx="590.2395" sodipodi:cy="312.13095" sodipodi:rx="58.051197" sodipodi:ry="58.051197" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" transform="matrix(1.0335704,0,0,1.0335704,-234.315,-41.213277)" />
+<path transform="matrix(1.0335704,0,0,1.0335704,-267.75004,20.786723)" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" sodipodi:ry="58.051197" sodipodi:rx="58.051197" sodipodi:cy="312.13095" sodipodi:cx="590.2395" id="path2873" style="opacity:1;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2885);enable-background:accumulate;font-size:10.64271964" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="opacity:1;color:#000000;fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter2881);enable-background:accumulate;font-size:10.64271964" id="path2875" sodipodi:cx="590.2395" sodipodi:cy="312.13095" sodipodi:rx="58.051197" sodipodi:ry="58.051197" d="m 648.2907,312.131 c 0,32.0607 -25.9904,58.0511 -58.0512,58.0511 -32.0608,0 -58.0512,-25.9904 -58.0512,-58.0511 0,-32.0608 25.9904,-58.0512 58.0512,-58.0512 32.0608,0 58.0512,25.9904 58.0512,58.0512 z" transform="matrix(1.0335704,0,0,1.0335704,-200.87996,20.786723)" />
+</g>
+<rect style="opacity:1;color:#000000;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" id="rect2917" width="217.79048" height="218.19157" x="260.9502" y="291.53549" />
+<g id="g2967" transform="matrix(0.5324436,0,0,0.5324436,106.13043,58.09832)" style="font-size:20.65946515">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3152);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect2919" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect2921" style="opacity:1;color:#000000;fill:url(#linearGradient3154);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3156);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect2923" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect2925" style="opacity:1;color:#000000;fill:url(#linearGradient3158);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g2977" transform="matrix(0.5324436,0,0,0.5324436,106.13043,100.69381)" style="filter:url(#filter2995);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect2979" style="opacity:1;color:#000000;fill:url(#linearGradient3144);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3146);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect2981" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect2983" style="opacity:1;color:#000000;fill:url(#linearGradient3148);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3150);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect2985" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3017);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,106.13043,143.28929)" id="g2999">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3136);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3001" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3003" style="opacity:1;color:#000000;fill:url(#linearGradient3138);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3140);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3005" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3007" style="opacity:1;color:#000000;fill:url(#linearGradient3142);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g3021" transform="matrix(0.5324436,0,0,0.5324436,106.13043,185.88478)" style="filter:url(#filter3039);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3023" style="opacity:1;color:#000000;fill:url(#linearGradient3128);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3130);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3025" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3027" style="opacity:1;color:#000000;fill:url(#linearGradient3132);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3134);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3029" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3061);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,106.13043,228.48026)" id="g3043">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3120);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3045" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3047" style="opacity:1;color:#000000;fill:url(#linearGradient3122);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3124);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3049" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3051" style="opacity:1;color:#000000;fill:url(#linearGradient3126);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<text xml:space="preserve" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="253.79825" y="45.830627" id="text3110" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3112" x="253.79825" y="45.830627">Screen</tspan></text>
+<text xml:space="preserve" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="471.92325" y="45.830627" id="text3114" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3116" x="471.92325" y="45.830627">Multiply</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="301.25674" id="text3162" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3164" x="263.07996" y="301.25674">Normal</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="344.6597" id="text3166" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3168" x="263.07996" y="344.6597">Multiply</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="387.06519" id="text3170" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3172" x="263.07996" y="387.06519">Screen</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="430.13126" id="text3174" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3176" x="263.07996" y="430.13126">Darken</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="472.16821" id="text3178" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3180" x="263.07996" y="472.16821">Lighten</tspan></text>
+<rect y="291.53549" x="37.323883" height="218.19157" width="217.79048" id="rect3182" style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53244358000000003;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" />
+<g transform="matrix(0.5324436,0,0,0.5324436,-117.49588,58.09832)" id="g3184" style="font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3186" style="opacity:1;color:#000000;fill:url(#linearGradient3254);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3256);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3188" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3190" style="opacity:1;color:#000000;fill:url(#linearGradient3258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3260);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3192" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter2995);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,100.69381)" id="g3194">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3262);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3196" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3198" style="opacity:1;color:#000000;fill:url(#linearGradient3264);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3266);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3200" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3202" style="opacity:1;color:#000000;fill:url(#linearGradient3268);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g3204" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,143.28929)" style="filter:url(#filter3017);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3206" style="opacity:1;color:#000000;fill:url(#linearGradient3270);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3208" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3210" style="opacity:1;color:#000000;fill:url(#linearGradient3274);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3276);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3212" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3039);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,185.88478)" id="g3214">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3278);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3216" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3218" style="opacity:1;color:#000000;fill:url(#linearGradient3280);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3220" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3222" style="opacity:1;color:#000000;fill:url(#linearGradient3284);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g3224" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,228.48026)" style="filter:url(#filter3061);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3226" style="opacity:1;color:#000000;fill:url(#linearGradient3286);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3288);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3228" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3230" style="opacity:1;color:#000000;fill:url(#linearGradient3290);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3292);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3232" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<text sodipodi:linespacing="125%" id="text3234" y="301.25674" x="39.453655" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="301.25674" x="39.453655" id="tspan3236" sodipodi:role="line">Normal</tspan></text>
+<text sodipodi:linespacing="125%" id="text3238" y="344.6597" x="39.453655" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="344.6597" x="39.453655" id="tspan3240" sodipodi:role="line">Multiply</tspan></text>
+<text sodipodi:linespacing="125%" id="text3242" y="387.06519" x="39.453655" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="387.06519" x="39.453655" id="tspan3244" sodipodi:role="line">Screen</tspan></text>
+<text sodipodi:linespacing="125%" id="text3246" y="430.13126" x="39.453655" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="430.13126" x="39.453655" id="tspan3248" sodipodi:role="line">Darken</tspan></text>
+<text sodipodi:linespacing="125%" id="text3250" y="472.16821" x="39.453655" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="472.16821" x="39.453655" id="tspan3252" sodipodi:role="line">Lighten</tspan></text>
+<rect y="291.53549" x="484.57645" height="218.19157" width="217.79048" id="rect3294" style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" />
+<g transform="matrix(0.5324436,0,0,0.5324436,329.75672,58.09832)" id="g3296" style="font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3298" style="opacity:1;color:#000000;fill:url(#linearGradient3366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3368);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3300" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3302" style="opacity:1;color:#000000;fill:url(#linearGradient3370);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3304" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter2995);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,329.75672,100.69381)" id="g3306">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3308" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3310" style="opacity:1;color:#000000;fill:url(#linearGradient3376);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3312" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3314" style="opacity:1;color:#000000;fill:url(#linearGradient3380);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g3316" transform="matrix(0.5324436,0,0,0.5324436,329.75672,143.28929)" style="filter:url(#filter3017);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3318" style="opacity:1;color:#000000;fill:url(#linearGradient3382);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3320" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3322" style="opacity:1;color:#000000;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3324" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3039);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,329.75672,185.88478)" id="g3326">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3328" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3330" style="opacity:1;color:#000000;fill:url(#linearGradient3392);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3394);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3332" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3334" style="opacity:1;color:#000000;fill:url(#linearGradient3396);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g id="g3336" transform="matrix(0.5324436,0,0,0.5324436,329.75672,228.48026)" style="filter:url(#filter3061);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3338" style="opacity:1;color:#000000;fill:url(#linearGradient3398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3400);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3340" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3342" style="opacity:1;color:#000000;fill:url(#linearGradient3402);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3404);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3344" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<text sodipodi:linespacing="125%" id="text3346" y="301.25674" x="486.70624" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="301.25674" x="486.70624" id="tspan3348" sodipodi:role="line">Normal</tspan></text>
+<text sodipodi:linespacing="125%" id="text3350" y="344.6597" x="486.70624" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="344.6597" x="486.70624" id="tspan3352" sodipodi:role="line">Multiply</tspan></text>
+<text sodipodi:linespacing="125%" id="text3354" y="387.06519" x="486.70624" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="387.06519" x="486.70624" id="tspan3356" sodipodi:role="line">Screen</tspan></text>
+<text sodipodi:linespacing="125%" id="text3358" y="430.13126" x="486.70624" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="430.13126" x="486.70624" id="tspan3360" sodipodi:role="line">Darken</tspan></text>
+<text sodipodi:linespacing="125%" id="text3362" y="472.16821" x="486.70624" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="472.16821" x="486.70624" id="tspan3364" sodipodi:role="line">Lighten</tspan></text>
+<rect y="535.1618" x="260.9502" height="218.19157" width="217.79048" id="rect3406" style="opacity:1;color:#000000;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" />
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,301.72462)" id="g3408" style="font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3410" style="opacity:1;color:#000000;fill:url(#linearGradient3478);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3480);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3412" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3414" style="opacity:1;color:#000000;fill:url(#linearGradient3482);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3484);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3416" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<text sodipodi:linespacing="125%" id="text3458" y="544.883" x="263.07996" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="544.883" x="263.07996" id="tspan3460" sodipodi:role="line">Normal</tspan></text>
+<text sodipodi:linespacing="125%" id="text3462" y="588.28601" x="263.07996" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="588.28601" x="263.07996" id="tspan3464" sodipodi:role="line">Multiply</tspan></text>
+<text sodipodi:linespacing="125%" id="text3466" y="630.69147" x="263.07996" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="630.69147" x="263.07996" id="tspan3468" sodipodi:role="line">Screen</tspan></text>
+<text sodipodi:linespacing="125%" id="text3470" y="673.75757" x="263.07996" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="673.75757" x="263.07996" id="tspan3472" sodipodi:role="line">Darken</tspan></text>
+<text sodipodi:linespacing="125%" id="text3474" y="715.79443" x="263.07996" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="715.79443" x="263.07996" id="tspan3476" sodipodi:role="line">Lighten</tspan></text>
+<g id="g3542" transform="matrix(0.5324436,0,0,0.5324436,106.13043,344.3201)" style="filter:url(#filter3614);font-size:20.65946515">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3552);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3544" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3546" style="opacity:1;color:#000000;fill:url(#linearGradient3554);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3556);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3548" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3550" style="opacity:1;color:#000000;fill:url(#linearGradient3558);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,386.91559)" id="g3560" style="filter:url(#filter3618);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3562" style="opacity:1;color:#000000;fill:url(#linearGradient3570);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3572);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3564" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3566" style="opacity:1;color:#000000;fill:url(#linearGradient3574);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3576);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3568" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g id="g3578" transform="matrix(0.5324436,0,0,0.5324436,106.13043,429.51108)" style="filter:url(#filter3622);font-size:20.65946515">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3588);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3580" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3582" style="opacity:1;color:#000000;fill:url(#linearGradient3590);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3592);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3584" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3586" style="opacity:1;color:#000000;fill:url(#linearGradient3594);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,472.10656)" id="g3596" style="filter:url(#filter3626);font-size:20.65946515">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3598" style="opacity:1;color:#000000;fill:url(#linearGradient3606);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3608);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3600" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3602" style="opacity:1;color:#000000;fill:url(#linearGradient3610);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3604" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<rect style="opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" id="rect3630" width="217.79048" height="218.19157" x="484.57645" y="535.1618" />
+<g id="g3632" transform="matrix(0.5324436,0,0,0.5324436,329.75672,301.72462)" style="font-size:20.65946515">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3702);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3634" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3636" style="opacity:1;color:#000000;fill:url(#linearGradient3704);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3706);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3638" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3640" style="opacity:1;color:#000000;fill:url(#linearGradient3708);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="486.70624" y="544.883" id="text3642" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3644" x="486.70624" y="544.883">Normal</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="486.70624" y="588.28601" id="text3646" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3648" x="486.70624" y="588.28601">Multiply</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="486.70624" y="630.69147" id="text3650" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3652" x="486.70624" y="630.69147">Screen</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="486.70624" y="673.75757" id="text3654" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3656" x="486.70624" y="673.75757">Darken</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="486.70624" y="715.79443" id="text3658" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3660" x="486.70624" y="715.79443">Lighten</tspan></text>
+<g style="filter:url(#filter3614);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,329.75672,344.3201)" id="g3662">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3664" style="opacity:1;color:#000000;fill:url(#linearGradient3710);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3712);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3666" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3668" style="opacity:1;color:#000000;fill:url(#linearGradient3714);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3716);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3670" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3618);font-size:20.65946515" id="g3672" transform="matrix(0.5324436,0,0,0.5324436,329.75672,386.91559)">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3718);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3674" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3676" style="opacity:1;color:#000000;fill:url(#linearGradient3720);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3722);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3678" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3680" style="opacity:1;color:#000000;fill:url(#linearGradient3724);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g style="filter:url(#filter3622);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,329.75672,429.51108)" id="g3682">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3684" style="opacity:1;color:#000000;fill:url(#linearGradient3726);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3728);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3686" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3688" style="opacity:1;color:#000000;fill:url(#linearGradient3730);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3732);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3690" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3626);font-size:20.65946515" id="g3692" transform="matrix(0.5324436,0,0,0.5324436,329.75672,472.10656)">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3734);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3694" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3696" style="opacity:1;color:#000000;fill:url(#linearGradient3736);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3738);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3698" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3700" style="opacity:1;color:#000000;fill:url(#linearGradient3740);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<rect style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53244358000000003;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:11" id="rect3742" width="217.79048" height="218.19157" x="37.323883" y="535.1618" />
+<g id="g3744" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,301.72462)" style="font-size:20.65946515">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3814);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3746" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3748" style="opacity:1;color:#000000;fill:url(#linearGradient3816);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3818);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3750" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3752" style="opacity:1;color:#000000;fill:url(#linearGradient3820);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="39.453655" y="544.883" id="text3754" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3756" x="39.453655" y="544.883">Normal</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="39.453655" y="588.28601" id="text3758" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3760" x="39.453655" y="588.28601">Multiply</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="39.453655" y="630.69147" id="text3762" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3764" x="39.453655" y="630.69147">Screen</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="39.453655" y="673.75757" id="text3766" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3768" x="39.453655" y="673.75757">Darken</tspan></text>
+<text xml:space="preserve" style="font-size:11;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="39.453655" y="715.79443" id="text3770" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3772" x="39.453655" y="715.79443">Lighten</tspan></text>
+<g style="filter:url(#filter3614);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,344.3201)" id="g3774">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3776" style="opacity:1;color:#000000;fill:url(#linearGradient3822);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3824);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3778" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3780" style="opacity:1;color:#000000;fill:url(#linearGradient3826);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3828);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3782" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3618);font-size:20.65946515" id="g3784" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,386.91559)">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3830);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3786" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3788" style="opacity:1;color:#000000;fill:url(#linearGradient3832);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3834);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3790" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3792" style="opacity:1;color:#000000;fill:url(#linearGradient3836);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<g style="filter:url(#filter3622);font-size:20.65946515" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,429.51108)" id="g3794">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3796" style="opacity:1;color:#000000;fill:url(#linearGradient3838);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3798" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3800" style="opacity:1;color:#000000;fill:url(#linearGradient3842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3844);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3802" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="filter:url(#filter3626);font-size:20.65946515" id="g3804" transform="matrix(0.5324436,0,0,0.5324436,-117.49588,472.10656)">
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3846);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3806" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3808" style="opacity:1;color:#000000;fill:url(#linearGradient3848);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient3850);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" id="rect3810" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3812" style="opacity:1;color:#000000;fill:url(#linearGradient3852);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-size:20.65946515" />
+</g>
+<text xml:space="preserve" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="36.460007" y="288.6987" id="text3854" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3856" x="36.460007" y="288.6987">Colour to white</tspan></text>
+<text xml:space="preserve" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="36.460007" y="530.5387" id="text3858" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3860" x="36.460007" y="530.5387">Colour to transparent</tspan></text>
+<rect style="font-size:11px;opacity:1;color:#000000;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect3862" width="217.79048" height="218.19157" x="260.9502" y="775.1618" />
+<g style="font-size:20.65946579px" id="g3864" transform="matrix(0.5324436,0,0,0.5324436,106.13043,541.72462)">
+<rect style="font-size:20.65946578999999872px;opacity:1;color:#000000;fill:url(#linearGradient4082);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect3866" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3868" style="font-size:20.65946578999999872px;opacity:1;color:#000000;fill:url(#linearGradient4084);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946578999999872px;opacity:1;color:#000000;fill:url(#linearGradient4086);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect3870" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect3872" style="font-size:20.65946578999999872px;opacity:1;color:#000000;fill:url(#linearGradient4088);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<text xml:space="preserve" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="784.883" id="text3874" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3876" x="263.07996" y="784.883">Normal</tspan></text>
+<text xml:space="preserve" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="828.28601" id="text3878" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3880" x="263.07996" y="828.28601">Multiply</tspan></text>
+<text xml:space="preserve" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="870.69147" id="text3882" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3884" x="263.07996" y="870.69147">Screen</tspan></text>
+<text xml:space="preserve" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="913.75757" id="text3886" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3888" x="263.07996" y="913.75757">Darken</tspan></text>
+<text xml:space="preserve" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" x="263.07996" y="955.79443" id="text3890" sodipodi:linespacing="125%"><tspan sodipodi:role="line" id="tspan3892" x="263.07996" y="955.79443">Lighten</tspan></text>
+<rect y="775.1618" x="484.57645" height="218.19157" width="217.79048" id="rect3934" style="font-size:11px;opacity:1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<text sodipodi:linespacing="125%" id="text3946" y="784.883" x="486.70624" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="784.883" x="486.70624" id="tspan3948" sodipodi:role="line">Normal</tspan></text>
+<text sodipodi:linespacing="125%" id="text3950" y="828.28601" x="486.70624" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="828.28601" x="486.70624" id="tspan3952" sodipodi:role="line">Multiply</tspan></text>
+<text sodipodi:linespacing="125%" id="text3954" y="870.69147" x="486.70624" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="870.69147" x="486.70624" id="tspan3956" sodipodi:role="line">Screen</tspan></text>
+<text sodipodi:linespacing="125%" id="text3958" y="913.75757" x="486.70624" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="913.75757" x="486.70624" id="tspan3960" sodipodi:role="line">Darken</tspan></text>
+<text sodipodi:linespacing="125%" id="text3962" y="955.79443" x="486.70624" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="955.79443" x="486.70624" id="tspan3964" sodipodi:role="line">Lighten</tspan></text>
+<rect y="775.1618" x="37.323883" height="218.19157" width="217.79048" id="rect4006" style="font-size:11px;opacity:1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53244358;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<text sodipodi:linespacing="125%" id="text4018" y="784.883" x="39.453655" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="784.883" x="39.453655" id="tspan4020" sodipodi:role="line">Normal</tspan></text>
+<text sodipodi:linespacing="125%" id="text4022" y="828.28601" x="39.453655" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="828.28601" x="39.453655" id="tspan4024" sodipodi:role="line">Multiply</tspan></text>
+<text sodipodi:linespacing="125%" id="text4026" y="870.69147" x="39.453655" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="870.69147" x="39.453655" id="tspan4028" sodipodi:role="line">Screen</tspan></text>
+<text sodipodi:linespacing="125%" id="text4030" y="913.75757" x="39.453655" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="913.75757" x="39.453655" id="tspan4032" sodipodi:role="line">Darken</tspan></text>
+<text sodipodi:linespacing="125%" id="text4034" y="955.79443" x="39.453655" style="font-size:11px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="955.79443" x="39.453655" id="tspan4036" sodipodi:role="line">Lighten</tspan></text>
+<text sodipodi:linespacing="125%" id="text4078" y="770.5387" x="36.460007" style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" xml:space="preserve"><tspan y="770.5387" x="36.460007" id="tspan4080" sodipodi:role="line">Colour to transparent (CMYK)</tspan></text>
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,584.3201)" id="g4226" style="font-size:20.65946578999999872px;filter:url(#filter4298)">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4228" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4236);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4238);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4230" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4232" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4240);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4234" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,626.91559)" id="g4244" style="font-size:20.65946578999999872px;filter:url(#filter4302)">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4246" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4254);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4256);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4248" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4250" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4260);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4252" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,106.13043,669.51108)" id="g4262" style="font-size:20.65946578999999872px;filter:url(#filter4306)">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4264" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4274);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4266" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4268" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4276);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4278);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4270" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="font-size:20.65946578999999872px;filter:url(#filter4310)" id="g4280" transform="matrix(0.5324436,0,0,0.5324436,106.13043,712.10656)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4290);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4282" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4284" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4292);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4294);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4286" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4288" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4296);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,-117.7621,541.72462)" id="g4314" style="font-size:20.65946579px">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4316" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4364);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4366);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4318" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4320" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4368);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4370);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4322" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4298)" id="g4324" transform="matrix(0.5324436,0,0,0.5324436,-117.7621,584.3201)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4372);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4326" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4328" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4376);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4330" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4332" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4378);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4302)" id="g4334" transform="matrix(0.5324436,0,0,0.5324436,-117.7621,626.91559)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4380);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4336" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4338" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4382);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4340" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4342" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4386);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4306)" id="g4344" transform="matrix(0.5324436,0,0,0.5324436,-117.7621,669.51108)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4388);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4346" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4348" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4390);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4392);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4350" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4352" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4394);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,-117.7621,712.10656)" id="g4354" style="font-size:20.65946579px;filter:url(#filter4310)">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4356" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4396);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4358" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4360" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4400);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4402);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4362" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,329.75669,541.72462)" id="g4404" style="font-size:20.65946579px">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4406" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4454);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4456);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4408" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4410" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4458);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4460);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4412" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4298)" id="g4414" transform="matrix(0.5324436,0,0,0.5324436,329.75669,584.3201)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4462);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4416" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4418" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4464);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4466);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4420" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4422" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4468);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4302)" id="g4424" transform="matrix(0.5324436,0,0,0.5324436,329.75669,626.91559)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4470);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4426" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4428" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4472);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4474);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4430" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4432" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4476);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g style="font-size:20.65946579px;filter:url(#filter4306)" id="g4434" transform="matrix(0.5324436,0,0,0.5324436,329.75669,669.51108)">
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4478);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4436" width="409.03952" height="15.065946" x="290.77213" y="460.76517" />
+<rect y="476.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4438" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4480);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4482);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4440" width="409.03952" height="15.065946" x="290.77213" y="492.76517" />
+<rect y="508.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4442" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4484);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+</g>
+<g transform="matrix(0.5324436,0,0,0.5324436,329.75669,712.10656)" id="g4444" style="font-size:20.65946579px;filter:url(#filter4310)">
+<rect y="460.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4446" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4486);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4488);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4448" width="409.03952" height="15.065946" x="290.77213" y="476.76517" />
+<rect y="492.76517" x="290.77213" height="15.065946" width="409.03952" id="rect4450" style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4490);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="font-size:20.65946579px;opacity:1;color:#000000;fill:url(#linearGradient4492);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4452" width="409.03952" height="15.065946" x="290.77213" y="508.76517" />
+</g>
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4502);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4494" width="157.4285" height="157.4285" x="-199.25186" y="13.608643" />
+<rect y="41.608643" x="-303.25186" height="281.4285" width="281.4285" id="rect4504" style="opacity:1;color:#000000;fill:url(#linearGradient4506);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4514);enable-background:accumulate" transform="matrix(0.5593907,0,0,0.5593907,-29.61558,-9.666847)" />
+<rect y="193.60864" x="-199.25186" height="157.4285" width="157.4285" id="rect4550" style="opacity:1;color:#000000;fill:url(#linearGradient4554);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect transform="matrix(0.5593907,0,0,0.5593907,-29.61558,170.33315)" style="opacity:1;color:#000000;fill:url(#linearGradient4556);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4582);enable-background:accumulate" id="rect4552" width="281.4285" height="281.4285" x="-303.25186" y="41.608643" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4562);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4558" width="157.4285" height="157.4285" x="-199.25186" y="373.60864" />
+<rect y="41.608643" x="-303.25186" height="281.4285" width="281.4285" id="rect4560" style="opacity:1;color:#000000;fill:url(#linearGradient4564);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4586);enable-background:accumulate" transform="matrix(0.5593907,0,0,0.5593907,-29.61558,350.33315)" />
+<rect y="553.60864" x="-199.25186" height="157.4285" width="157.4285" id="rect4566" style="opacity:1;color:#000000;fill:url(#linearGradient4570);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect transform="matrix(0.5593907,0,0,0.5593907,-29.61558,530.33315)" style="opacity:1;color:#000000;fill:url(#linearGradient4572);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4590);enable-background:accumulate" id="rect4568" width="281.4285" height="281.4285" x="-303.25186" y="41.608643" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4578);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4574" width="157.4285" height="157.4285" x="-199.25186" y="893.60864" />
+<rect y="41.608643" x="-303.25186" height="281.4285" width="281.4285" id="rect4576" style="opacity:1;color:#000000;fill:url(#linearGradient4580);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" transform="matrix(0.5593907,0,0,0.5593907,-29.61558,710.33315)" />
+<rect y="893.60864" x="780.74817" height="157.4285" width="157.4285" id="rect4594" style="opacity:1;color:#000000;fill:url(#linearGradient4598);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4600);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4596" width="157.42848" height="157.42848" x="780.74817" y="733.60864" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4608" width="157.4285" height="157.4285" x="780.74817" y="553.60864" />
+<rect y="553.60864" x="780.74817" height="157.42848" width="157.42848" id="rect4610" style="opacity:1;color:#000000;fill:url(#linearGradient4614);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter4616)" />
+<rect y="373.60864" x="780.74817" height="157.4285" width="157.4285" id="rect4620" style="opacity:1;color:#000000;fill:url(#linearGradient4624);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4626);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4628);enable-background:accumulate" id="rect4622" width="157.42848" height="157.42848" x="780.74817" y="373.60864" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4636);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="rect4632" width="157.4285" height="157.4285" x="780.74817" y="193.60864" />
+<rect y="193.60864" x="780.74817" height="157.42848" width="157.42848" id="rect4634" style="opacity:1;color:#000000;fill:url(#linearGradient4638);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4640);enable-background:accumulate" />
+<rect y="13.608643" x="780.74817" height="157.4285" width="157.4285" id="rect4644" style="opacity:1;color:#000000;fill:url(#linearGradient4648);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+<rect style="opacity:1;color:#000000;fill:url(#linearGradient4650);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4652);enable-background:accumulate" id="rect4646" width="157.42848" height="157.42848" x="780.74817" y="13.608643" />
+</g>
</svg>
diff --git a/share/examples/car.svgz b/share/examples/car.svgz
index f2bef38e3..d66456ec4 100644
--- a/share/examples/car.svgz
+++ b/share/examples/car.svgz
Binary files differ
diff --git a/share/examples/eastern-motive-P4G.svg b/share/examples/eastern-motive-P4G.svg
index 81c2278eb..e817e6df2 100644
--- a/share/examples/eastern-motive-P4G.svg
+++ b/share/examples/eastern-motive-P4G.svg
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
@@ -11,12 +10,12 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="eastern-motive-P4G.svg"
- inkscape:version="0.92.0 r15304"
+ sodipodi:docbase="/home/d/ink/inkscape/share/examples"
+ inkscape:version="0.92"
sodipodi:version="0.32"
id="svg1"
height="297mm"
- width="210mm"
- version="1.1">
+ width="210mm">
<defs
id="defs3">
<linearGradient
@@ -32,43 +31,45 @@
style="stop-color:#fedc60;stop-opacity:0;" />
</linearGradient>
<radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2688"
- id="radialGradient10456"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(17.428388,0,0,19.142652,-4256.7328,-5342.5269)"
- cx="258.93150"
- cy="315.10585"
- fx="258.93150"
+ r="11.503876"
fy="315.10585"
- r="11.503876" />
+ fx="258.93150"
+ cy="315.10585"
+ cx="258.93150"
+ gradientTransform="scale(0.954174,1.048027)"
+ id="radialGradient2691"
+ xlink:href="#linearGradient2688"
+ inkscape:collect="always" />
</defs>
<sodipodi:namedview
showborder="false"
- inkscape:window-y="25"
+ inkscape:window-y="17"
inkscape:window-x="13"
inkscape:window-height="798"
inkscape:window-width="995"
inkscape:current-layer="g1063"
- inkscape:cy="653.18323"
- inkscape:cx="490.8062"
+ inkscape:cy="526.12421"
+ inkscape:cx="490.80620"
inkscape:zoom="1.2592573"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
- id="base"
- showgrid="false"
- inkscape:window-maximized="0" />
+ id="base" />
<metadata
id="metadata4">
- <rdf:RDF>
+ <rdf:RDF
+ id="RDF5">
<cc:Work
+ id="Work6"
rdf:about="">
- <dc:format>image/svg+xml</dc:format>
+ <dc:format
+ id="format7">image/svg+xml</dc:format>
<dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage"
+ id="type9" />
</cc:Work>
</rdf:RDF>
</metadata>
@@ -78,1688 +79,1357 @@
inkscape:label="Layer 1">
<use
id="use3662"
- transform="matrix(1,0,0,-1,0,891.69917)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,0.000000,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3663"
- transform="translate(0,196.73557)"
+ transform="translate(0.000000,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3664"
- transform="matrix(1,0,0,-1,0,1088.4347)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,0.000000,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3665"
- transform="translate(0,393.47115)"
+ transform="translate(0.000000,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3666"
- transform="matrix(1,0,0,-1,0,1285.17)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,0.000000,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3667"
- transform="translate(0,590.20672)"
+ transform="translate(0.000000,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3668"
- transform="rotate(90,296.84789,396.66569)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,619.8688,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3669"
- transform="matrix(0,1,1,0,-99.817788,198.1856)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,-91.16047,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3670"
- transform="rotate(90,198.48008,495.03348)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,619.8688,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3671"
- transform="matrix(0,1,1,0,-99.817788,394.92118)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,-91.16047,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3672"
- transform="rotate(90,100.1123,593.40127)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,619.8688,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3673"
- transform="matrix(0,1,1,0,-99.817788,591.65675)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,-91.16047,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3674"
- transform="rotate(90,1.7445133,691.76906)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,619.8688,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3675"
- transform="rotate(-90,296.84789,396.66568)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,-91.16047,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3676"
- transform="matrix(0,-1,-1,0,693.51357,791.88135)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,619.8688,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3677"
- transform="rotate(-90,395.21568,495.03347)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,-91.16047,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3678"
- transform="matrix(0,-1,-1,0,693.51357,988.61693)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,619.8688,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3679"
- transform="rotate(-90,493.58346,593.40126)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,-91.16047,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3680"
- transform="matrix(0,-1,-1,0,693.51357,1185.3527)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,619.8688,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3681"
- transform="rotate(-90,591.95146,691.76926)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,-91.16047,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3682"
- transform="rotate(180,296.84787,396.6657)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,528.7083,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3683"
- transform="matrix(-1,0,0,1,593.69575,98.367797)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,528.7083,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3684"
- transform="rotate(180,296.84787,495.03348)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,528.7083,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3685"
- transform="matrix(-1,0,0,1,593.69575,295.10336)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,528.7083,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3686"
- transform="rotate(180,296.84787,593.401)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,528.7083,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3687"
- transform="matrix(-1,0,0,1,593.69575,491.83893)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,528.7083,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3688"
- transform="rotate(180,296.84787,691.769)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,528.7083,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3689"
- transform="matrix(1,0,0,-1,98.367797,793.33138)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,92.21981,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3690"
- transform="translate(98.367797,98.367797)"
+ transform="translate(92.21981,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3691"
- transform="matrix(1,0,0,-1,98.367797,990.06696)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,92.21981,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3692"
- transform="translate(98.367797,295.10336)"
+ transform="translate(92.21981,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3693"
- transform="matrix(1,0,0,-1,98.367797,1186.802)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,92.21981,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3694"
- transform="translate(98.367797,491.83893)"
+ transform="translate(92.21981,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3695"
- transform="matrix(1,0,0,-1,98.367797,1383.538)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,92.21981,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3696"
- transform="matrix(0,1,1,0,-1.449997,99.817788)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,1.059334,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3697"
- transform="rotate(90,296.84787,495.03348)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,712.0886,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3698"
- transform="matrix(0,1,1,0,-1.449997,296.55339)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,1.059334,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3699"
- transform="rotate(90,198.48008,593.40127)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,712.0886,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3700"
- transform="matrix(0,1,1,0,-1.449997,493.28896)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,1.059334,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3701"
- transform="rotate(90,100.1123,691.76906)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,712.0886,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3702"
- transform="matrix(0,1,1,0,-1.449997,690.02454)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,1.059334,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3703"
- transform="matrix(0,-1,-1,0,791.88135,693.51357)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,712.0886,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3704"
- transform="rotate(-90,395.21568,396.66568)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,1.059334,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3705"
- transform="matrix(0,-1,-1,0,791.88135,890.24914)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,712.0886,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3706"
- transform="rotate(-90,493.58346,495.03346)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,1.059334,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3707"
- transform="matrix(0,-1,-1,0,791.88135,1086.9847)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,712.0886,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3708"
- transform="rotate(-90,591.95136,593.40136)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,1.059334,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3709"
- transform="matrix(0,-1,-1,0,791.88135,1283.7207)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,712.0886,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3710"
- transform="matrix(-1,0,0,1,692.06354,0)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,620.9281,0.000000)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3711"
- transform="rotate(180,346.03176,445.84959)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,620.9281,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3712"
- transform="matrix(-1,0,0,1,692.06354,196.73557)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,620.9281,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3713"
- transform="rotate(180,346.03176,544.21738)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,620.9281,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3714"
- transform="matrix(-1,0,0,1,692.06354,393.47115)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,620.9281,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3715"
- transform="rotate(180,346.03176,642.585)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,620.9281,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3716"
- transform="matrix(-1,0,0,1,692.06354,590.20672)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,620.9281,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3717"
- transform="translate(196.73557)"
+ transform="translate(184.4396,0.000000)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3718"
- transform="matrix(1,0,0,-1,196.73557,891.69917)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,184.4396,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3719"
- transform="translate(196.73557,196.73557)"
+ transform="translate(184.4396,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3720"
- transform="matrix(1,0,0,-1,196.73557,1088.4347)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,184.4396,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3721"
- transform="translate(196.73557,393.47115)"
+ transform="translate(184.4396,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3722"
- transform="matrix(1,0,0,-1,196.73557,1285.17)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,184.4396,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3723"
- transform="translate(196.73557,590.20672)"
+ transform="translate(184.4396,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3724"
- transform="rotate(90,395.21568,495.03347)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,804.3084,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3725"
- transform="matrix(0,1,1,0,96.917796,198.1856)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,93.27914,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3726"
- transform="rotate(90,296.84787,593.40127)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,804.3084,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3727"
- transform="matrix(0,1,1,0,96.917796,394.92118)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,93.27914,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3728"
- transform="rotate(90,198.48008,691.76906)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,804.3084,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3729"
- transform="matrix(0,1,1,0,96.917796,591.65675)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,93.27914,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3730"
- transform="rotate(90,100.1123,790.13684)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,804.3084,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3731"
- transform="rotate(-90,395.21568,298.29789)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,93.27914,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3732"
- transform="matrix(0,-1,-1,0,890.24914,791.88135)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,804.3084,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3733"
- transform="rotate(-90,493.58346,396.66568)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,93.27914,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3734"
- transform="matrix(0,-1,-1,0,890.24914,988.61693)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,804.3084,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3735"
- transform="rotate(-90,591.95125,495.03346)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,93.27914,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3736"
- transform="matrix(0,-1,-1,0,890.24914,1185.3527)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,804.3084,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3737"
- transform="rotate(-90,690.31925,593.40146)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,93.27914,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3738"
- transform="rotate(180,395.21566,396.6657)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,713.1479,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3739"
- transform="matrix(-1,0,0,1,790.43132,98.367797)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,713.1479,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3740"
- transform="rotate(180,395.21566,495.03348)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,713.1479,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3741"
- transform="matrix(-1,0,0,1,790.43132,295.10336)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,713.1479,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3742"
- transform="rotate(180,395.21566,593.401)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,713.1479,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3743"
- transform="matrix(-1,0,0,1,790.43132,491.83893)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,713.1479,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3744"
- transform="rotate(180,395.21566,691.769)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,713.1479,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3745"
- transform="matrix(1,0,0,-1,295.10336,793.33138)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,276.6594,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3746"
- transform="translate(295.10336,98.367797)"
+ transform="translate(276.6594,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3747"
- transform="matrix(1,0,0,-1,295.10336,990.06696)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,276.6594,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3748"
- transform="translate(295.10336,295.10336)"
+ transform="translate(276.6594,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3749"
- transform="matrix(1,0,0,-1,295.10336,1186.802)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,276.6594,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3750"
- transform="translate(295.10336,491.83893)"
+ transform="translate(276.6594,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3751"
- transform="matrix(1,0,0,-1,295.10336,1383.538)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,276.6594,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3752"
- transform="matrix(0,1,1,0,195.28554,99.817788)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,185.4989,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3753"
- transform="rotate(90,395.21566,593.40127)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,896.5282,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3754"
- transform="matrix(0,1,1,0,195.28554,296.55339)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,185.4989,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3755"
- transform="rotate(90,296.84787,691.76906)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,896.5282,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3756"
- transform="matrix(0,1,1,0,195.28554,493.28896)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,185.4989,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3757"
- transform="rotate(90,198.48008,790.13684)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,896.5282,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3758"
- transform="matrix(0,1,1,0,195.28554,690.02454)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,185.4989,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3759"
- transform="matrix(0,-1,-1,0,988.61693,693.51357)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,896.5282,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3760"
- transform="rotate(-90,493.58344,298.29791)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,185.4989,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3761"
- transform="matrix(0,-1,-1,0,988.61693,890.24914)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,896.5282,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3762"
- transform="rotate(-90,591.95123,396.6657)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,185.4989,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3763"
- transform="matrix(0,-1,-1,0,988.61693,1086.9847)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,896.5282,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3764"
- transform="rotate(-90,690.31912,495.03359)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,185.4989,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3765"
- transform="matrix(0,-1,-1,0,988.61693,1283.7207)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,896.5282,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3766"
- transform="matrix(-1,0,0,1,888.79911,0)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,805.3677,0.000000)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3767"
- transform="rotate(180,444.39955,445.84959)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,805.3677,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3768"
- transform="matrix(-1,0,0,1,888.79911,196.73557)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,805.3677,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3769"
- transform="rotate(180,444.39955,544.21738)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,805.3677,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3770"
- transform="matrix(-1,0,0,1,888.79911,393.47115)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,805.3677,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3771"
- transform="rotate(180,444.39955,642.585)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,805.3677,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3772"
- transform="matrix(-1,0,0,1,888.79911,590.20672)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,805.3677,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3773"
- transform="translate(393.47115)"
+ transform="translate(368.8792,0.000000)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3774"
- transform="matrix(1,0,0,-1,393.47115,891.69917)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,368.8792,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3775"
- transform="translate(393.47115,196.73557)"
+ transform="translate(368.8792,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3776"
- transform="matrix(1,0,0,-1,393.47115,1088.4347)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,368.8792,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3777"
- transform="translate(393.47115,393.47115)"
+ transform="translate(368.8792,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3778"
- transform="matrix(1,0,0,-1,393.47115,1285.17)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,368.8792,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3779"
- transform="translate(393.47115,590.20672)"
+ transform="translate(368.8792,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3780"
- transform="rotate(90,493.58345,593.40126)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,988.7480,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3781"
- transform="matrix(0,1,1,0,293.65344,198.1856)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,277.7188,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3782"
- transform="rotate(90,395.21566,691.76906)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,988.7480,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3783"
- transform="matrix(0,1,1,0,293.65344,394.92118)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,277.7188,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3784"
- transform="rotate(90,296.84787,790.13684)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,988.7480,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3785"
- transform="matrix(0,1,1,0,293.65344,591.65675)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,277.7188,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3786"
- transform="rotate(90,198.48008,888.50463)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,988.7480,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3787"
- transform="rotate(-90,493.5835,199.93007)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,277.7188,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3788"
- transform="matrix(0,-1,-1,0,1086.9847,791.88135)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,988.7480,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3789"
- transform="rotate(-90,591.95128,298.29786)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,277.7188,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3790"
- transform="matrix(0,-1,-1,0,1086.9847,988.61693)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,988.7480,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3791"
- transform="rotate(-90,690.31907,396.66564)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,277.7188,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3792"
- transform="matrix(0,-1,-1,0,1086.9847,1185.3527)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,988.7480,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3793"
- transform="rotate(-90,788.68707,495.03364)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,277.7188,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3794"
- transform="rotate(180,493.58344,396.6657)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,897.5875,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3795"
- transform="matrix(-1,0,0,1,987.1669,98.367797)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,897.5875,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3796"
- transform="rotate(180,493.58344,495.03348)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,897.5875,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3797"
- transform="matrix(-1,0,0,1,987.1669,295.10336)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,897.5875,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3798"
- transform="rotate(180,493.58344,593.401)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,897.5875,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3799"
- transform="matrix(-1,0,0,1,987.1669,491.83893)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,897.5875,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3800"
- transform="rotate(180,493.58344,691.769)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,897.5875,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3801"
- transform="matrix(1,0,0,-1,491.83893,793.33138)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,461.0990,711.0293)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3802"
- transform="translate(491.83893,98.367797)"
+ transform="translate(461.0990,92.21981)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3803"
- transform="matrix(1,0,0,-1,491.83893,990.06696)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,461.0990,895.4689)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3804"
- transform="translate(491.83893,295.10336)"
+ transform="translate(461.0990,276.6594)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3805"
- transform="matrix(1,0,0,-1,491.83893,1186.802)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,461.0990,1079.908)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3806"
- transform="translate(491.83893,491.83893)"
+ transform="translate(461.0990,461.0990)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3807"
- transform="matrix(1,0,0,-1,491.83893,1383.538)"
+ transform="matrix(1.000000,0.000000,0.000000,-1.000000,461.0990,1264.348)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3808"
- transform="matrix(0,1,1,0,392.02122,99.817788)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,369.9386,91.16047)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3809"
- transform="rotate(90,493.58355,691.76916)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,1080.968,183.3803)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3810"
- transform="matrix(0,1,1,0,392.02122,296.55339)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,369.9386,275.6001)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3811"
- transform="rotate(90,395.21576,790.13695)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,1080.968,367.8199)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3812"
- transform="matrix(0,1,1,0,392.02122,493.28896)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,369.9386,460.0397)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3813"
- transform="rotate(90,296.84798,888.50474)"
+ transform="matrix(6.123032e-17,1.000000,-1.000000,6.123032e-17,1080.968,552.2595)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3814"
- transform="matrix(0,1,1,0,392.02122,690.02454)"
+ transform="matrix(6.123032e-17,1.000000,1.000000,-6.123032e-17,369.9386,644.4793)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3815"
- transform="matrix(0,-1,-1,0,1185.3527,693.51357)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,1080.968,619.8688)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3816"
- transform="rotate(-90,591.95128,199.93007)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,369.9386,712.0886)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3817"
- transform="matrix(0,-1,-1,0,1185.3527,890.24914)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,1080.968,804.3084)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3818"
- transform="rotate(-90,690.31907,298.29786)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,369.9386,896.5282)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3819"
- transform="matrix(0,-1,-1,0,1185.3527,1086.9847)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,1080.968,988.7480)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3820"
- transform="rotate(-90,788.68696,396.66575)"
+ transform="matrix(6.123032e-17,-1.000000,1.000000,6.123032e-17,369.9386,1080.968)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3821"
- transform="matrix(0,-1,-1,0,1185.3527,1283.7207)"
+ transform="matrix(6.123032e-17,-1.000000,-1.000000,-6.123032e-17,1080.968,1173.188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3822"
- transform="matrix(-1,0,0,1,1085.5347,0)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,989.8073,0.000000)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3823"
- transform="rotate(180,542.76734,445.84959)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,989.8073,803.2491)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3824"
- transform="matrix(-1,0,0,1,1085.5347,196.73557)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,989.8073,184.4396)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3825"
- transform="rotate(180,542.76734,544.21738)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,989.8073,987.6887)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3826"
- transform="matrix(-1,0,0,1,1085.5347,393.47115)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,989.8073,368.8792)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3827"
- transform="rotate(180,542.76734,642.585)"
+ transform="matrix(-1.000000,1.224606e-16,-1.224606e-16,-1.000000,989.8073,1172.128)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<use
id="use3828"
- transform="matrix(-1,0,0,1,1085.5347,590.20672)"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,989.8073,553.3188)"
xlink:href="#g1063"
inkscape:tiled-clone-of="#g1063"
y="0"
- x="0"
- width="100%"
- height="100%" />
+ x="0" />
<g
inkscape:tile-cy="332.45968"
inkscape:tile-cx="251.21448"
inkscape:tile-h="46.109903"
inkscape:tile-w="26.279358"
- transform="matrix(0.125,0,0,0.125,237.92181,279.20107)"
+ transform="matrix(0.125000,0.000000,0.000000,0.125000,223.0517,261.7510)"
id="g1063">
- <ellipse
+ <path
+ transform="matrix(17.12383,0.000000,0.000000,17.12383,-3990.687,-5008.619)"
+ d="M 258.04237 330.23944 A 10.976698 12.056373 0 1 1 236.08898,330.23944 A 10.976698 12.056373 0 1 1 258.04237 330.23944 z"
+ sodipodi:ry="12.056373"
+ sodipodi:rx="10.976698"
+ sodipodi:cy="330.23944"
+ sodipodi:cx="247.06567"
id="path2052"
- style="color:#000000;display:block;visibility:visible;opacity:0.24175828;fill:url(#radialGradient10456);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:18.26541853pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- cx="256.02518"
- cy="689.43469"
- rx="200.49399"
- ry="220.21469" />
+ style="opacity:0.24175824;color:#000000;fill:url(#radialGradient2691);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block"
+ sodipodi:type="arc" />
<path
sodipodi:nodetypes="ccccccccccccccccc"
- d="m 286.27417,532.7231 c -29.12579,-62.91762 132.98504,-183.82336 114.52048,-72.29987 -45.64804,114.03579 -129.40345,196.84309 -208.66,290.37815 -13.92871,16.43806 -53.14576,67.70596 -39.62137,50.95558 91.54909,-113.38647 21.64494,-53.56462 47.12839,-12.44143 56.00673,26.02209 124.57419,-4.02838 177.75337,-24.99328 l -58.62068,80.90645 c -54.01644,21.05023 -123.39072,52.34327 -180.88054,29.30928 -38.110608,-65.41365 69.34837,-153.41863 112.85349,-204.63197 24.65384,-29.02198 42.13168,-48.8158 66.52003,-78.05456 8.26332,-9.90674 30.83123,-41.11789 24.42553,-30.00067 -10.73701,18.63426 -24.2063,35.70909 -37.51728,52.72163 -16.07675,20.54744 60.60728,-77.19602 35.20553,-69.38815 2.11847,-15.15807 5.63137,-44.09521 -17.34178,-47.41835 -10.57193,-1.52927 -17.918,0.59616 -27.13949,13.86285 42.54245,-78.16387 55.63749,-89.23627 55.10442,-66.86394 -21.24337,29.31943 -56.11185,55.55393 -63.7301,87.95828 z"
+ transform="matrix(1.251777,0.000000,0.000000,1.209723,-28.70254,-79.95270)"
+ d="M 237.33027,478.93659 C 215.51694,430.17727 336.92746,336.47885 323.09870,422.90630 C 288.91127,511.28071 226.18389,575.45395 166.82586,647.94089 C 156.39416,660.67990 127.02312,700.41103 137.15202,687.42997 C 205.71636,599.55877 153.36268,645.91896 172.44813,677.78823 C 214.39355,697.95459 265.74614,674.66635 305.57391,658.41917 L 261.67081,721.11930 C 221.21599,737.43262 169.25914,761.68381 126.20299,743.83314 C 97.660607,693.13947 178.14043,624.93818 210.72295,585.24934 C 229.18708,562.75815 242.27685,547.41852 260.54215,524.75933 C 266.73084,517.08190 283.63275,492.89417 278.83529,501.50969 C 270.79397,515.95070 260.70634,529.18319 250.73728,542.36741 C 238.69683,558.29108 296.12821,482.54275 277.10394,488.59362 C 278.69054,476.84656 281.32147,454.42112 264.11607,451.84579 C 256.19838,450.66065 250.69665,452.30779 243.79035,462.58909 C 275.65189,402.01437 285.45923,393.43359 285.05999,410.77149 C 269.15008,433.49319 243.03585,453.82416 237.33027,478.93659 z "
id="path1061"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.31260845pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="M 85.764352,227.09726 C 73.081259,382.64687 -9.7659733,534.42935 -131.84119,630.65907 l 28.57779,-40.81331 C -7.4766507,514.36177 49.315328,398.37303 55.821483,269.86027 Z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1782.188,-2094.008)"
+ d="M 232.82401,288.36396 C 231.33771,306.59243 221.62905,324.37944 207.32336,335.65636 L 210.67232,330.87355 C 221.89733,322.02777 228.55264,308.43534 229.31508,293.37525 L 232.82401,288.36396 z "
id="path1105"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 58.308813,274.03431 c 9.200011,-13.78771 17.916213,-27.91094 27.600115,-41.36328 3.36012,-4.66776 -25.189443,61.10426 12.722594,80.57623 46.710098,23.99079 112.942228,-39.07483 143.257108,-65.28503 9.30611,-9.56433 18.61222,-19.12875 27.91833,-28.69308 l -27.75682,42.13236 c -9.33001,9.60069 -18.66003,19.2013 -27.99004,28.80199 C 109.21349,381.05469 -11.160972,382.482 87.105096,230.3241 Z"
+ transform="matrix(7.996790,-0.226601,0.226601,7.996790,-1849.179,-2038.292)"
+ d="M 229.75848,293.52561 C 230.88194,291.94105 231.94984,290.31558 233.12887,288.77191 C 233.53797,288.23628 229.97534,295.84608 234.35174,298.25288 C 239.74375,301.21822 247.71155,294.05053 251.34965,291.08088 C 252.47152,289.99140 253.59339,288.90191 254.71526,287.81243 L 251.32396,292.65570 C 250.19917,293.74936 249.07438,294.84301 247.94959,295.93667 C 235.36624,306.23100 221.26078,305.99863 233.27678,288.50096 L 229.75848,293.52561 z "
id="path1109"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 411.18643,413.05327 c 10.28472,-26.37952 26.78409,-57.44529 56.98714,-58.12472 16.27981,6.60378 24.75324,10.58006 39.12508,-0.0427 l -21.1142,30.15424 c -14.39497,10.68151 -22.81182,6.65335 -39.15204,0.0768 -9.77298,0.21845 -32.41583,19.39516 -27.10938,11.18549 33.70479,-52.14472 16.90419,-27.22551 12.48444,-13.56032 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 271.23766,310.15568 C 272.44290,307.06433 274.37642,303.42381 277.91584,303.34419 C 279.82363,304.11807 280.81661,304.58404 282.50081,303.33964 L 280.02649,306.87334 C 278.33958,308.12508 277.35323,307.65303 275.43836,306.88240 C 274.29309,306.90799 271.63963,309.15527 272.26148,308.19320 C 276.21126,302.08249 274.24244,305.00271 273.72450,306.60410 L 271.23766,310.15568 z "
id="path2029"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 156.74146,414.1975 c 64.67917,12.15301 26.52706,101.01539 4.05948,136.11111 -14.33907,23.15955 -27.42127,41.59582 -47.77011,57.74498 l 20.92143,-29.87896 c 8.42444,-6.66717 35.48177,-36.57267 6.03801,1.85472 22.38345,-34.94946 60.6691,-124.24132 -4.46208,-135.53612 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 241.41989,310.28977 C 248.99948,311.71395 244.52853,322.12751 241.89561,326.24029 C 240.21525,328.95430 238.68218,331.11480 236.29755,333.00728 L 238.74928,329.50584 C 239.73652,328.72453 242.90730,325.21998 239.45686,329.72319 C 242.07992,325.62755 246.56652,315.16366 238.93396,313.84005 L 241.41989,310.28977 z "
id="path2042"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 223.20819,405.7117 c 0.099,12.34432 6.93419,21.21933 14.20194,30.54686 l -21.12136,30.16448 c -7.25547,-9.2777 -14.10842,-18.11465 -14.304,-30.40111 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 249.20896,309.29534 C 249.22059,310.74194 250.02156,311.78198 250.87325,312.87505 L 248.39809,316.40995 C 247.54784,315.32272 246.74476,314.28714 246.72184,312.84732 L 249.20896,309.29534 z "
id="path2044"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 340.64256,740.09335 c 46.05969,37.07384 37.75053,47.02302 0.40107,95.96843 -9.55862,7.63102 -21.15525,9.79797 -32.74146,12.33843 l 21.07042,-30.0916 c 11.59518,-2.50718 23.17218,-4.665 32.72542,-12.31565 -17.99587,31.15221 4.34048,-3.99497 -42.6764,-35.59279 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 262.97080,348.48069 C 268.36842,352.82528 267.39469,353.99120 263.01779,359.72699 C 261.89764,360.62125 260.53866,360.87519 259.18090,361.17290 L 261.65009,357.64654 C 263.00890,357.35273 264.36558,357.09986 265.48510,356.20330 C 263.37621,359.85395 265.99375,355.73514 260.48396,352.03227 L 262.97080,348.48069 z "
id="path2046"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 218.27217,483.18575 c 4.8454,1.00437 7.97252,4.41259 11.71405,7.32083 l -10.58731,15.12013 c -3.75082,-2.90662 -6.87087,-6.32388 -11.74349,-7.27868 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 248.63052,318.37433 C 249.19834,318.49203 249.56480,318.89143 250.00326,319.23224 L 248.76256,321.00413 C 248.32301,320.66351 247.95738,320.26305 247.38637,320.15116 L 248.63052,318.37433 z "
id="path2048"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 83.143765,419.06193 c 4.413526,7.93259 11.950763,12.9286 19.097255,18.17506 L 91.671296,452.3322 C 84.529323,447.09427 77.001472,442.10219 72.529152,434.22131 Z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 232.79516,310.85982 C 233.31237,311.78942 234.19564,312.37489 235.03312,312.98971 L 233.79448,314.75868 C 232.95753,314.14486 232.07536,313.55985 231.55126,312.63631 L 232.79516,310.85982 z "
id="path2051"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 222.21886,736.63471 c 8.80555,-16.90227 26.1075,-45.56367 27.45159,-11.68564 0.82127,14.89595 -4.2527,39.20976 9.662,48.65777 19.14694,-11.79999 -7.31455,17.46426 2.5197,2.07138 l 12.28278,-15.69416 c -7.09291,11.1192 -13.74587,26.55583 -27.19664,29.45918 -13.88565,-9.51561 -8.72014,-33.84992 -9.56583,-48.78064 -0.20583,-4.77513 -0.20025,-9.75609 -2.13068,-14.2448 -0.84143,-1.95073 -7.46122,0.30091 -6.21343,-1.41849 20.4589,-28.19121 8.78816,-11.97038 5.62462,-4.25188 z"
+ transform="matrix(6.357787,-2.562520,2.562520,6.357787,-2272.765,-866.8463)"
+ d="M 250.77273,346.04045 C 252.75388,344.34660 256.41401,341.59550 254.85242,345.96162 C 254.19501,347.89316 252.30828,350.71795 253.59031,352.62785 C 256.62240,352.10995 251.76956,354.46922 253.80403,353.01943 L 256.16450,351.65661 C 254.69627,352.70444 253.06311,354.32243 251.20844,354.00302 C 249.93355,352.08603 251.83294,349.26332 252.48903,347.32612 C 252.70706,346.70987 252.96243,346.07832 252.94705,345.41023 C 252.94037,345.11976 251.98521,345.06693 252.23140,344.91262 C 256.26795,342.38257 253.95819,343.84349 253.16227,344.66084 L 250.77273,346.04045 z "
id="path2729"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.31176186pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 217.29485,752.23423 c 4.50449,2.20401 9.27246,3.49661 14.14061,4.59945 l -8.75364,11.18486 c -4.8781,-1.09781 -9.64165,-2.4164 -14.18432,-4.5436 z"
+ transform="matrix(6.357787,-2.562520,2.562520,6.357787,-2272.765,-866.8463)"
+ d="M 249.35056,347.76750 C 249.80927,348.27738 250.34800,348.68512 250.90914,349.07391 L 249.22689,350.04516 C 248.66423,349.65650 248.12739,349.24569 247.65991,348.74360 L 249.35056,347.76750 z "
id="path2744"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.31176186pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 262.78938,737.98357 c 5.18012,0.2687 10.05297,3.47386 15.00684,5.17723 l -8.74125,11.16906 c -4.95856,-1.70621 -9.86819,-4.92382 -15.063,-5.10556 z"
+ transform="matrix(6.357787,-2.562520,2.562520,6.357787,-2272.765,-866.8463)"
+ d="M 255.85014,348.28581 C 256.49350,348.58474 256.94775,349.24045 257.48906,349.70980 L 255.80919,350.67968 C 255.26743,350.20973 254.80915,349.55056 254.15948,349.26191 L 255.85014,348.28581 z "
id="path2745"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.31176186pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 411.86368,553.927 c 45.9456,-5.9142 28.95582,36.24516 6.99913,56.94165 -12.19013,9.61314 -25.69805,17.76913 -40.82885,21.41338 l 14.21619,-8.2077 c 22.83333,-5.43002 -3.6142,3.52213 12.53138,-5.07589 22.03187,-20.76322 38.63193,-62.9975 -7.31666,-56.75827 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1779.399,-2065.276)"
+ d="M 270.69015,323.07282 C 276.07440,322.37975 274.08341,327.32030 271.51036,329.74567 C 270.08183,330.87221 268.49887,331.82799 266.72573,332.25505 L 268.39169,331.29321 C 271.06747,330.65688 267.96815,331.70596 269.86021,330.69838 C 272.44207,328.26519 274.38739,323.31586 269.00279,324.04702 L 270.69015,323.07282 z "
id="path2759"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 456.93103,562.95509 c 3.68068,20.44997 -10.39113,35.03138 -25.66852,46.31194 -9.39708,6.43336 2.31398,-1.60256 -5.60564,3.88198 l -10.98299,6.34104 c 7.99044,-5.52482 -3.80442,2.55744 5.6593,-3.91305 15.17688,-11.19172 29.52679,-25.85139 25.50563,-46.21781 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1779.399,-2065.276)"
+ d="M 275.97148,324.13080 C 276.40281,326.52728 274.75377,328.23604 272.96345,329.55798 C 271.86223,330.31189 273.23462,329.37018 272.30654,330.01290 L 271.01947,330.75599 C 271.95585,330.10855 270.57364,331.05569 271.68267,330.29743 C 273.46121,328.98590 275.14284,327.26797 274.67161,324.88128 L 275.97148,324.13080 z "
id="path3832"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 474.68881,568.28962 c 0.14251,10.22899 -7.66063,17.77519 -14.18334,24.79761 l -13.40638,7.74016 c 6.49063,-6.97907 14.29573,-14.52484 14.03896,-24.71424 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1779.399,-2065.276)"
+ d="M 278.05247,324.75594 C 278.06920,325.95465 277.15474,326.83897 276.39036,327.66191 L 274.81930,328.56896 C 275.57992,327.75110 276.49458,326.86683 276.46449,325.67276 L 278.05247,324.75594 z "
id="path3851"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 348.18353,521.74959 c -1.3324,12.5847 -4.17395,24.55238 -8.82506,36.33806 -3.48612,8.80214 -8.17837,17.01628 -12.90538,25.18901 l -4.92328,-0.22001 c 4.88262,-8.16663 9.91793,-16.28831 13.44397,-25.16503 4.53151,-11.69588 7.50035,-23.78405 7.58928,-36.39327 z"
+ transform="matrix(7.932634,-1.036007,1.036007,7.932634,-2106.783,-1799.649)"
+ d="M 264.53946,323.07730 C 264.19365,324.51943 263.68184,325.86696 262.96252,327.16588 C 262.42385,328.13579 261.75395,329.01907 261.08064,329.89701 L 260.51189,329.79673 C 261.20319,328.92186 261.91155,328.05453 262.45599,327.07656 C 263.16005,325.78626 263.68848,324.42666 263.89017,322.96281 L 264.53946,323.07730 z "
id="path4496"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333282pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 355.49957,522.26416 c -1.41203,2.35247 -1.97754,5.0856 -2.84952,7.66306 -1.42137,3.51453 -2.87848,6.98338 -4.0178,10.60488 -1.06259,3.04874 -1.82202,6.18551 -2.73633,9.27375 -0.70858,2.21283 -1.2714,4.38271 -2.38043,6.44191 -0.96982,1.86916 -1.94949,3.72094 -2.82371,5.63613 -1.03342,1.77885 -1.80146,3.70255 -2.69141,5.55069 -0.9211,1.47184 -1.45612,3.12914 -2.22228,4.68238 -0.40149,1.47248 -1.09138,2.73993 -1.95092,3.9854 -0.84576,1.47878 -2.01817,2.69222 -3.0884,3.99946 -1.15365,1.79463 -2.20815,3.52347 -3.0649,5.50257 -0.39896,0.97791 -0.74657,1.97339 -1.146,2.95102 l -5.49884,-0.24578 c 0.38042,-0.98806 0.74148,-1.98331 1.17456,-2.94977 0.81748,-1.99048 1.81159,-3.73235 2.99772,-5.50558 1.05911,-1.30604 2.21879,-2.5241 3.04798,-4.00123 0.91215,-1.21697 1.52295,-2.52987 1.96235,-3.98492 0.78769,-1.54719 1.31324,-3.21039 2.24097,-4.68155 0.93413,-1.82818 1.66864,-3.75947 2.68285,-5.55103 0.9086,-1.90299 1.88823,-3.76363 2.86404,-5.63434 1.08947,-2.05803 1.71925,-4.21539 2.36113,-6.44276 0.96405,-3.09026 1.88412,-6.19104 2.90391,-9.26629 1.14199,-3.611 2.45654,-7.13558 3.97132,-10.60697 0.8663,-2.559 1.42955,-5.23693 2.62117,-7.67318 z"
+ transform="matrix(7.932634,-1.036007,1.036007,7.932634,-2106.783,-1799.649)"
+ d="M 265.38178,323.24812 C 265.18200,323.50005 265.07481,323.80906 264.93437,324.09533 C 264.71587,324.48215 264.49391,324.86312 264.30656,325.26665 C 264.13682,325.60479 264.00097,325.95776 263.84786,326.30274 C 263.73194,326.54912 263.63361,326.79272 263.47349,327.01517 C 263.33243,327.21765 263.19049,327.41796 263.05984,327.62724 C 262.91276,327.81826 262.79432,328.03014 262.66286,328.23139 C 262.53349,328.38844 262.44617,328.57290 262.33357,328.74176 C 262.26462,328.90677 262.16517,329.04358 262.04639,329.17526 C 261.92567,329.33426 261.77102,329.45747 261.62682,329.59313 C 261.46553,329.78416 261.31676,329.96905 261.18717,330.18602 C 261.12600,330.29360 261.07047,330.40400 261.00922,330.51154 L 260.37398,330.39953 C 260.43319,330.29049 260.49024,330.18032 260.55523,330.07459 C 260.68043,329.85570 260.82238,329.66838 260.98712,329.48033 C 261.13001,329.34464 261.28325,329.22070 261.40202,329.06164 C 261.52648,328.93407 261.61738,328.79078 261.69052,328.62837 C 261.80553,328.46054 261.89184,328.27525 262.02197,328.11838 C 262.15826,327.92012 262.27292,327.70685 262.41796,327.51406 C 262.55242,327.30672 262.69449,327.10538 262.83627,326.90281 C 262.99410,326.68020 263.10002,326.43907 263.20841,326.18999 C 263.36733,325.84553 263.52130,325.49918 263.68647,325.15731 C 263.87397,324.75504 264.08021,324.36543 264.30891,323.98504 C 264.44841,323.70083 264.55450,323.39820 264.72994,323.13319 L 265.38178,323.24812 z "
id="path4497"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333282pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 349.03415,591.47955 c -0.19882,2.07556 1.41876,3.21331 2.87924,4.38451 1.15302,1.39631 2.68945,2.37065 4.15573,3.40293 1.3126,1.30662 2.78562,2.43848 4.09079,3.74818 1.0979,1.25064 2.30383,2.34521 3.70603,3.22884 1.36329,0.87654 2.83913,1.54974 4.24295,2.36646 1.24945,0.90232 2.58534,1.68525 3.8475,2.56768 1.51621,1.09517 2.85406,2.35862 4.46012,3.32903 1.45186,1.06274 3.08745,1.81768 4.65519,2.681 1.44316,0.80213 2.64943,1.84644 3.85067,2.9609 1.34076,1.34033 2.70984,2.63859 4.21239,3.79255 0.90667,0.87586 1.74917,1.80352 2.69346,2.63945 1.33137,1.44452 2.99025,2.5489 4.55126,3.71003 0.78421,0.96342 1.75914,1.72852 2.70984,2.51444 l -3.58178,4.26863 c -0.94251,-0.79446 -1.90558,-1.57517 -2.69576,-2.53125 -1.53814,-1.19142 -3.20342,-2.27012 -4.57233,-3.68486 -0.94371,-0.83456 -1.80122,-1.74968 -2.69867,-2.6333 -1.47524,-1.18699 -2.79663,-2.53628 -4.18244,-3.82823 -1.23299,-1.06752 -2.42688,-2.1422 -3.84495,-2.96772 -1.58217,-0.83797 -3.2105,-1.61263 -4.67704,-2.65497 -1.57935,-1.00745 -2.92804,-2.25955 -4.45901,-3.33039 -1.26711,-0.87902 -2.6007,-1.65462 -3.84349,-2.57246 -1.3941,-0.84395 -2.90364,-1.44188 -4.24022,-2.36979 -1.41517,-0.88116 -2.62528,-1.95081 -3.69075,-3.24694 -1.31584,-1.29792 -2.79202,-2.42406 -4.11017,-3.72505 -1.44042,-1.07162 -3.02327,-1.99083 -4.14924,-3.41061 -1.39879,-1.18698 -3.01227,-2.2877 -2.9417,-4.31018 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 263.95419,331.06501 C 263.93084,331.30824 264.12045,331.44157 264.29160,331.57882 C 264.42672,331.74245 264.60677,331.85663 264.77860,331.97760 C 264.93242,332.13072 265.10504,332.26336 265.25799,332.41684 C 265.38665,332.56340 265.52797,332.69167 265.69229,332.79522 C 265.85205,332.89794 266.02500,332.97683 266.18951,333.07254 C 266.33593,333.17828 266.49248,333.27003 266.64039,333.37344 C 266.81807,333.50178 266.97485,333.64984 267.16306,333.76356 C 267.33320,333.88810 267.52487,333.97657 267.70859,334.07774 C 267.87771,334.17173 268.01907,334.29412 268.15984,334.42472 C 268.31696,334.58179 268.47740,334.73393 268.65348,334.86916 C 268.75973,334.97180 268.85846,335.08051 268.96912,335.17847 C 269.12514,335.34775 269.31954,335.47717 269.50247,335.61324 C 269.59435,335.72614 269.70862,335.81580 269.82003,335.90790 L 269.40029,336.40813 C 269.28984,336.31508 269.17698,336.22354 269.08438,336.11150 C 268.90413,335.97188 268.70898,335.84547 268.54856,335.67968 C 268.43797,335.58193 268.33748,335.47464 268.23231,335.37109 C 268.05943,335.23199 267.90458,335.07387 267.74218,334.92247 C 267.59769,334.79737 267.45778,334.67143 267.29160,334.57469 C 267.10619,334.47651 266.91537,334.38571 266.74351,334.26356 C 266.55843,334.14550 266.40038,333.99877 266.22097,333.87328 C 266.07248,333.77027 265.91620,333.67938 265.77056,333.57182 C 265.60719,333.47293 265.43029,333.40285 265.27366,333.29411 C 265.10782,333.19085 264.96601,333.06550 264.84115,332.91361 C 264.68695,332.76151 264.51396,332.62954 264.35949,332.47708 C 264.19069,332.35150 264.00520,332.24378 263.87325,332.07740 C 263.70933,331.93830 263.52025,331.80931 263.52852,331.57230 L 263.95419,331.06501 z "
id="path4500"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 520.68003,556.62701 c -12.74757,13.47646 -25.35011,27.06267 -38.24282,40.42959 -11.75644,12.18903 23.16891,-24.63718 34.83403,-36.89543 9.47688,-9.95887 -18.46875,20.74886 -23.88395,32.87265 -9.71147,21.74267 6.87844,36.55804 26.25331,47.38387 5.18154,1.87923 10.36308,3.75846 15.54462,5.63769 l -33.86776,35.88316 c -5.31214,-1.74081 -10.62428,-3.48163 -15.93654,-5.22254 -90.53547,-45.71352 98.59097,-176.28731 -1.78728,-80.7957 z"
+ transform="matrix(10.99100,0.000000,0.000000,9.771365,-2618.668,-2670.609)"
+ d="M 282.66814,326.71452 C 281.58081,328.00750 280.50585,329.31101 279.40614,330.59348 C 278.40335,331.76294 281.38238,328.22970 282.37738,327.05360 C 283.18573,326.09811 280.80205,329.04432 280.34015,330.20752 C 279.51179,332.29359 280.92686,333.71503 282.57948,334.75370 C 283.02145,334.93400 283.46342,335.11430 283.90539,335.29460 L 281.01657,338.73736 C 280.56346,338.57034 280.11035,338.40332 279.65723,338.23629 C 271.93482,333.85037 288.06675,321.32265 279.50478,330.48446 L 282.66814,326.71452 z "
id="path5310"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:11.05414009pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 538.39113,660.76348 c -13.94595,9.91163 -19.65176,26.56879 -25.1177,42.09843 v 0 c 5.46594,-15.52964 11.17175,-32.1868 25.1177,-42.09843 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 286.14446,339.18422 C 284.51017,340.34574 283.84152,342.29775 283.20098,344.11763 L 283.20098,344.11763 C 283.84152,342.29775 284.51017,340.34574 286.14446,339.18422 z "
id="path5318"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 450.68629,542.75703 c 2.32124,4.10087 6.67691,6.1929 10.0841,9.34349 l -9.03748,7.58332 c -3.43774,-3.11902 -7.73103,-5.23597 -10.22993,-9.22112 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 275.86655,325.35534 C 276.13857,325.83591 276.64900,326.08107 277.04828,326.45028 L 275.98920,327.33895 C 275.58634,326.97344 275.08322,326.72536 274.79038,326.25835 L 275.86655,325.35534 z "
id="path5338"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 460.75426,527.70202 c 1.01735,3.39865 3.99693,5.36746 6.64559,7.47997 0.72192,0.25942 1.36457,0.68267 2.04757,1.02486 l -8.37913,7.03095 c -0.6895,-0.33621 -1.3411,-0.75178 -2.06746,-1.00813 -2.59754,-2.12394 -5.47456,-4.15249 -6.77393,-7.37237 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 277.04639,323.59108 C 277.16561,323.98936 277.51478,324.22008 277.82517,324.46764 C 277.90978,324.49807 277.98508,324.54768 278.06512,324.58774 L 277.08319,325.41168 C 277.00243,325.37230 276.92603,325.32361 276.84091,325.29354 C 276.53651,325.04464 276.19936,324.80692 276.04709,324.42959 L 277.04639,323.59108 z "
id="path5364"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 471.92277,542.95117 c 3.09726,2.92036 5.77767,6.18863 8.91495,9.07614 l -8.37376,7.02634 c -3.08839,-2.94613 -5.6588,-6.3534 -9.06138,-8.95317 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1783.764,-2096.608)"
+ d="M 278.27395,325.70309 C 278.63691,326.04532 278.95102,326.42832 279.31867,326.76670 L 278.33737,327.59010 C 277.97545,327.24485 277.67423,326.84556 277.27549,326.54090 L 278.27395,325.70309 z "
id="path5367"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 542.5318,604.84783 c 13.7758,3.27017 10.30856,16.45398 5.03622,26.01418 -9.51094,14.98308 -22.65106,27.07414 -35.19727,39.44101 -2.71189,2.67317 -9.59218,7.59661 -7.97095,12.16862 1.0607,1.1499 0.4382,0.68161 1.88234,1.38612 l -9.61042,7.32472 c -1.50517,-0.64601 -0.88185,-0.17545 -1.8975,-1.37453 -0.51783,-5.63182 7.50799,-11.14003 11.0019,-14.4787 12.56642,-12.00793 25.69055,-23.93662 34.6439,-39.01924 4.52406,-9.24877 6.08885,-24.14224 -8.29621,-23.52947 z"
+ transform="matrix(8.709413,0.408657,-0.408657,8.709413,-1848.330,-2457.580)"
+ d="M 286.28605,333.84937 C 287.78213,334.13118 287.47617,335.56467 286.95807,336.61806 C 286.01205,338.27526 284.66166,339.64013 283.37645,341.03163 C 283.09865,341.33241 282.38448,341.89589 282.58165,342.37878 C 282.70137,342.49694 282.63212,342.44977 282.79081,342.51817 L 281.79551,343.35332 C 281.63059,343.29153 281.69993,343.33891 281.58478,343.21525 C 281.50080,342.61297 282.33504,341.98091 282.69348,341.60471 C 283.98267,340.25166 285.33216,338.90431 286.21779,337.23923 C 286.65709,336.22306 286.75010,334.61553 285.20815,334.75384 L 286.28605,333.84937 z "
id="path1282"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.3002615pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
sodipodi:nodetypes="cccccccccccc"
- d="m 526.80239,667.68845 c 14.07573,-13.61639 31.51206,-31.21971 52.34987,-32.20002 16.92433,5.40416 -15.47529,33.66075 -18.44694,35.94974 l 7.24685,-7.24694 c 4.09446,-3.09666 0.32256,0.56491 1.17274,-0.45312 3.4414,-4.11895 7.26306,-10.00917 6.61666,-15.6794 -0.29867,-2.62238 -1.689,-4.15693 -4.08585,-5.07358 -11.67573,-1.08604 -23.27919,7.4135 -32.17561,14.02914 -3.10443,2.30861 -6.09997,4.75682 -9.01342,7.30129 -2.67452,2.33583 -4.0448,3.80118 -2.97259,2.71309 2.80132,-2.84271 5.63362,-5.6547 8.45039,-8.48213 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1772.005,-2101.904)"
+ d="M 283.23528,340.98274 C 284.88478,339.38707 286.92810,337.32418 289.37003,337.20930 C 291.35335,337.84260 287.55652,341.15392 287.20828,341.42216 L 288.05752,340.57291 C 288.53734,340.21002 288.09528,340.63909 288.19495,340.51979 C 288.59824,340.03710 289.04609,339.34684 288.97034,338.68236 C 288.93531,338.37505 288.77241,338.19522 288.49153,338.08780 C 287.12328,337.96053 285.76350,338.95657 284.72095,339.73184 C 284.35715,340.00238 284.00611,340.28928 283.66469,340.58746 C 283.35127,340.86119 283.19069,341.03291 283.31634,340.90540 C 283.64462,340.57227 283.97653,340.24274 284.30662,339.91140 L 283.23528,340.98274 z "
id="path1313"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 322.90675,774.37227 c 95.32604,-32.07099 109.54693,-60.04702 138.33763,-96.47401 13.79418,-28.15663 122.86386,-144.90533 66.22405,-179.93646 -40.75653,-9.15817 -77.38457,18.69632 -105.17995,39.91669 l 37.49583,-35.33039 c 29.61686,-22.87038 67.62915,-52.45498 111.02404,-45.42329 55.93724,32.27135 -61.17135,160.31893 -74.05225,187.31249 -56.28828,71.98705 -127.26538,140.06767 -218.832,172.32001 z"
+ transform="matrix(8.719323,0.415301,0.415300,8.239775,-2142.901,-2273.654)"
+ d="M 263.77743,350.74756 C 274.22575,346.57199 275.91043,343.30404 279.21133,338.99310 C 280.85100,335.70687 293.24058,321.79905 287.32632,318.11139 C 282.98339,317.28829 278.88436,320.66410 275.77334,323.23530 L 280.00651,319.00214 C 283.32281,316.23286 287.58043,312.65221 292.21927,313.21845 C 298.07280,316.59517 284.75542,331.83531 283.22050,334.98393 C 276.76278,343.49991 268.74314,351.65015 258.69902,355.82598 L 263.77743,350.74756 z "
id="path1298"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.0303762pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 855.34622,384.24034 c -38.88862,44.48836 -0.48128,-3.34379 -25.07955,-38.19486 l 25.2503,-25.2503 c 26.89075,38.50069 4.77048,63.15417 -26.95885,90.23326 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1755.561,-2154.337)"
+ d="M 319.68101,314.32029 C 315.12375,319.53377 319.62462,313.92844 316.74200,309.84433 L 319.70102,306.88531 C 322.85228,311.39711 320.26006,314.28619 316.54178,317.45952 L 319.68101,314.32029 z "
id="path1318"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 781.79465,387.81158 c -16.29347,19.21801 -34.90825,35.92824 -55.32988,50.51068 l 17.25474,-17.25474 c 45.87332,-32.83319 3.04708,-1.50801 19.26997,-14.45077 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 314.66831,307.19767 C 312.75892,309.44978 310.57750,311.40801 308.18434,313.11689 L 310.20638,311.09485 C 315.58216,307.24721 310.56346,310.91813 312.46458,309.40140 L 314.66831,307.19767 z "
id="path1319"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 728.78479,420.81722 c 3.59304,1.37821 6.50274,4.42154 9.3126,7.06082 l -9.34392,9.34391 c -2.86916,-2.59737 -5.75454,-5.76657 -9.45561,-6.91789 z"
+ transform="matrix(8.000000,-4.493841e-7,4.493841e-7,8.000000,-1819.724,-2090.435)"
+ d="M 312.86995,310.61891 C 313.29101,310.78042 313.63199,311.13706 313.96127,311.44635 L 312.86628,312.54134 C 312.53005,312.23696 312.19192,311.86557 311.75820,311.73065 L 312.86995,310.61891 z "
id="path1322"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 617.401,706.05252 c -12.68173,20.29833 -1.29203,-28.57975 23.89769,5.166 16.96264,6.69448 31.37638,-6.69355 43.34711,-17.63081 l -12.14455,12.14447 c -12.04736,10.99657 -26.59115,24.40627 -43.66925,17.95311 -2.4477,-3.22184 -6.5117,-13.03569 -10.99008,-13.5674 -2.14323,-0.2543 -7.41769,4.09062 -5.98144,2.47953 3.44166,-3.86082 14.61419,-14.63492 10.80414,-11.13703 -5.59693,5.13861 -11.35258,12.70964 -18.07036,17.39896 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2097.122)"
+ d="M 295.40343,344.88078 C 293.91729,347.25949 295.25202,341.53159 298.20394,345.48617 C 300.19175,346.27068 301.88086,344.70177 303.28368,343.42006 L 301.86049,344.84324 C 300.44869,346.13190 298.74434,347.70335 296.74300,346.94712 C 296.45616,346.56956 295.97991,345.41950 295.45510,345.35719 C 295.20394,345.32737 294.58584,345.83656 294.75415,345.64776 C 295.15747,345.19532 296.46675,343.93273 296.02026,344.34264 C 295.36437,344.94482 294.68988,345.83205 293.90264,346.38158 L 295.40343,344.88078 z "
id="path1332"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 745.26537,723.12269 c -2.30349,-15.11091 8.69785,-29.25713 23.43278,-31.22432 10.94085,1.70769 18.65029,-0.62294 27.59442,-6.66599 l -6.89255,11.93822 c -8.99865,6.17856 -16.65732,8.46387 -27.71319,6.87181 -5.07665,0.69973 -16.45654,10.72538 -14.07343,6.18854 10.47646,-19.9447 2.55215,-6.3569 4.81672,0.48214 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1776.629,-2146.946)"
+ d="M 309.41441,353.10919 C 309.14447,351.33838 310.43369,349.68062 312.16044,349.45009 C 313.44257,349.65021 314.34602,349.37707 315.39416,348.66892 L 314.58644,350.06793 C 313.53191,350.79198 312.63441,351.05979 311.33880,350.87322 C 310.74388,350.95522 309.41030,352.13010 309.68957,351.59844 C 310.91728,349.26117 309.98865,350.85349 310.25403,351.65492 L 309.41441,353.10919 z "
id="path1325"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 768.43622,720.28109 c -5.3079,-12.23373 -21.75829,16.03703 -12.1402,-0.48811 -2.20569,4.48743 -1.97427,8.83388 -0.39595,13.42328 l -5.12187,8.87133 c -1.52243,-4.67754 -1.71699,-9.10515 0.52565,-13.64727 2.16201,-3.76064 14.17318,-28.12629 22.89988,-18.14767 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 313.10287,346.15894 C 312.48085,344.72530 310.55307,348.03828 311.68019,346.10170 C 311.42171,346.62757 311.44883,347.13692 311.63377,347.67474 L 311.03355,348.71435 C 310.85514,348.16620 310.83234,347.64734 311.09512,347.11506 C 311.34848,346.67436 312.75604,343.81901 313.77870,344.98838 L 313.10287,346.15894 z "
id="path1340"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<path
- d="m 759.11501,733.06633 c 9.14048,-17.69592 3.5683,-5.99902 13.35279,-1.65351 l -5.3312,9.23392 c -9.70582,-4.16904 -8.16905,-9.6355 -2.24009,-17.5942 z"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-1784.414,-2094.008)"
+ d="M 312.01054,347.65721 C 313.08169,345.58347 312.42870,346.95420 313.57532,347.46344 L 312.95057,348.54554 C 311.81317,348.05698 311.99326,347.41638 312.68806,346.48372 L 312.01054,347.65721 z "
id="path1343"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8.53333354pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
</g>
</g>
</svg>
diff --git a/share/examples/flowsample.svg b/share/examples/flowsample.svg
index 244da3b6c..0a397f978 100644
--- a/share/examples/flowsample.svg
+++ b/share/examples/flowsample.svg
@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- width="155.54729mm"
- height="61.396427mm"
+ inkscape:version="0.92"
+ width="210mm"
+ height="297mm"
+ sodipodi:docbase="/home/d/ink"
sodipodi:docname="flowsample.svg"
- version="1.1">
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:cc="http://web.resource.org/cc/"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:xlink="http://www.w3.org/1999/xlink">
<defs
id="defs3" />
<sodipodi:namedview
@@ -25,91 +24,57 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="1.0222909"
- inkscape:cx="293.94763"
- inkscape:cy="116.02474"
+ inkscape:zoom="1.8"
+ inkscape:cx="180"
+ inkscape:cy="464"
inkscape:window-width="735"
inkscape:window-height="596"
inkscape:window-x="178"
- inkscape:window-y="39"
- showgrid="false"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5"
- inkscape:window-maximized="0"
- inkscape:current-layer="svg1" />
+ inkscape:window-y="39" />
<metadata
id="metadata4">
- <rdf:RDF>
+ <rdf:RDF
+ id="RDF5">
<cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
+ rdf:about=""
+ id="Work6">
+ <dc:format
+ id="format7">image/svg+xml</dc:format>
<dc:type
+ id="type9"
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<flowRoot
id="flowRoot908"
- style="font-size:8.53333378px;font-family:Verdana;text-align:justify;fill:#000000;stroke-width:1.06666672"
+ style="font-size:8.0000000;fill:#000000;font-family:Verdana;"
inkscape:layoutOptions="par-indent:10.0;justification:true;layoutAlgo:simple;"
- transform="translate(-31.169029,-82.169029)">
+ transform="translate(-23.75000,370.0000)">
<flowRegion
- id="flowRegion930"
- style="stroke-width:1.06666672">
+ id="flowRegion930">
<path
id="path935"
- d="M 50,100 V 300 H 350 C 392.94024,176.07968 237.78285,179.26247 350,100 Z"
- sodipodi:nodetypes="ccccc"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 50.000000,100.00000 L 50.000000,300.00000 L 350.00000,300.00000 C 392.94024,176.07968 237.78285,179.26247 350.00000,100.00000 L 50.000000,100.00000 z "
+ sodipodi:nodetypes="ccccc" />
</flowRegion>
<flowRegion
- id="flowRegion920"
- style="stroke-width:1.06666672">
+ id="flowRegion920">
<path
id="path921"
- d="M 400,200 V 350 H 600 V 200 Z"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M400,200 L400,350 L600,350 L600,200 z" />
</flowRegion>
<flowRegionExclude
- id="flowRegionExclude929"
- style="stroke-width:1.06666672">
+ id="flowRegionExclude929">
<path
- d="m 120,120 30,130 H 250 V 120 Z"
- id="path923"
- inkscape:connector-curvature="0"
- style="stroke-width:1.06666672" />
+ d="M 120.00000,120.00000 L 150.00000,250.00000 L 250.00000,250.00000 L 250.00000,120.00000 L 120.00000,120.00000 z "
+ id="path923" />
</flowRegionExclude>
<flowDiv
- id="flowDiv17"
- style="stroke-width:1.06666672">In a move that will grab Apple's attention in a big way, <flowSpan
- style="font-style:italic;stroke-width:1.06666672"
- id="flowSpan23413">RealNetworks</flowSpan>
- is expected to <flowSpan
- style="fill:#ff0000;stroke-width:1.06666672"
- id="flowSpan23415">announce</flowSpan>
- on Monday that it has broken <flowSpan
- style="font-style:italic;stroke-width:1.06666672"
- id="flowSpan23417">Apple's stranglehold on the iPod.</flowSpan>
- The latest version of their Harmony software mimics Apple's FairPlay DRM, the format in which tracks from the iTunes Music Store are sold. According to RealNetworks, Harmony will allow music purchased from its RealRhapsody music service to be copied to and played on iPods.</flowDiv>
+ id="flowDiv17">In a move that will grab Apple's attention in a big way, <flowSpan style="font-style:italic;">RealNetworks</flowSpan> is expected to <flowSpan style="fill:#ff0000;">announce</flowSpan> on Monday that it has broken <flowSpan style="font-style:italic;">Apple's stranglehold on the iPod.</flowSpan> The latest version of their Harmony software mimics Apple's FairPlay DRM, the format in which tracks from the iTunes Music Store are sold. According to RealNetworks, Harmony will allow music purchased from its RealRhapsody music service to be copied to and played on iPods.</flowDiv>
<flowDiv
- id="flowDiv927"
- style="stroke-width:1.06666672">قتل أربعة أشخاص وجرح مفخخة أمام مركز للشرطة العراقية في مدينة الموصل which includes SkypeOut في شمالي العراق. وفي الفلوجة ارتفع عدد قتلى الاشتباكات بين القوات الأميركية والمقاتلين آخرين</flowDiv>
+ id="flowDiv927"> قتل أربعة أشخاص وجرح مفخخة أمام مركز للشرطة العراقية في مدينة الموصل which includes SkypeOut في شمالي العراق. وفي الفلوجة ارتفع عدد قتلى الاشتباكات بين القوات الأميركية والمقاتلين آخرين</flowDiv>
<flowDiv
- id="flowDiv21"
- style="stroke-width:1.06666672">In a move that will grab Apple's attention <flowSpan
- style="font-size:12.80000019px;stroke-width:1.06666672"
- id="flowSpan23421">in a big way,</flowSpan>
- RealNetworks is expected to announce on Monday that it has broken Apple's stranglehold on the iPod. The latest version of their Harmony software mimics Apple's FairPlay DRM, the format in which tracks from the <flowSpan
- style="fill:#0000ff;stroke-width:1.06666672"
- id="flowSpan23423">iTunes Music Store</flowSpan>
- are sold. <flowSpan
- style="font-weight:bold;font-size:4.26666689px;stroke-width:1.06666672"
- id="flowSpan23425">According to RealNetworks, Harmony will allow music purchased from its RealRhapsody music service to be copied to and played on iPods.</flowSpan>
-</flowDiv>
+ id="flowDiv21">In a move that will grab Apple's attention <flowSpan style="font-size:12.0000000">in a big way,</flowSpan> RealNetworks is expected to announce on Monday that it has broken Apple's stranglehold on the iPod. The latest version of their Harmony software mimics Apple's FairPlay DRM, the format in which tracks from the <flowSpan style="fill:#0000ff">iTunes Music Store</flowSpan> are sold. <flowSpan style="font-size:4.0000000;font-weight:bold;">According to RealNetworks, Harmony will allow music purchased from its RealRhapsody music service to be copied to and played on iPods.</flowSpan></flowDiv>
</flowRoot>
</svg>
diff --git a/share/examples/gallardo.svgz b/share/examples/gallardo.svgz
index 0d76109ba..38c97c344 100644
--- a/share/examples/gallardo.svgz
+++ b/share/examples/gallardo.svgz
Binary files differ
diff --git a/share/examples/gradient.svg b/share/examples/gradient.svg
index c574abcad..7a09aed5a 100644
--- a/share/examples/gradient.svg
+++ b/share/examples/gradient.svg
@@ -1,33 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg3624"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- width="1448.2800pt"
- height="1011.8900pt"
- sodipodi:docname="gradient.svg"
- version="1.1">
- <metadata
- id="metadata26383">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
- </rdf:RDF>
- </metadata>
+ inkscape:version="0.92"
+ width="1358.653pt"
+ height="951.648pt"
+ sodipodi:docname="grad.svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ sodipodi:docbase="/home/d/ink">
<defs
id="defs3626">
<linearGradient
@@ -429,918 +413,179 @@
<linearGradient
xlink:href="#linearGradient3628"
id="linearGradient3631"
- x1="-695.97722"
- y1="-173.60198"
- x2="-695.97722"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient837"
id="linearGradient845"
- x1="-521.98088"
- y1="-173.60198"
- x2="-521.98088"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient848"
id="linearGradient857"
- x1="-349.32739"
- y1="-173.60198"
- x2="-349.32739"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient859"
id="linearGradient867"
- x1="-865.98941"
- y1="-173.60198"
- x2="-865.98941"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient870"
id="linearGradient878"
- x1="-1028.7672"
- y1="-173.60198"
- x2="-1028.7672"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient880"
id="linearGradient889"
- x1="-175.6972"
- y1="-173.60198"
- x2="-175.6972"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient891"
id="linearGradient900"
- x1="-2.0668573"
- y1="-173.60198"
- x2="-2.0668573"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient902"
id="linearGradient910"
- x1="-1202.3971"
- y1="-173.60198"
- x2="-1202.3971"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<radialGradient
xlink:href="#linearGradient915"
id="radialGradient914"
- cx="1295.6102"
- cy="827.23419"
- r="319.58386"
- fx="1124.67"
- fy="972.04559"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0858485,0,0,1.0858485,-2598.4128,-486.64181)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.23255809"
+ fy="0.72656244" />
<radialGradient
xlink:href="#linearGradient870"
id="radialGradient928"
- cx="1139.1568"
- cy="483.97784"
- r="1240.5646"
- fx="1139.1568"
- fy="483.97784"
- gradientTransform="scale(1.0413998,1.0925466)"
- gradientUnits="userSpaceOnUse" />
+ cx="0.42276424"
+ cy="0.39062500"
+ r="1.0014182"
+ fx="0.42276424"
+ fy="0.39062500" />
<radialGradient
xlink:href="#linearGradient931"
id="radialGradient930"
- cx="1219.4772"
- cy="1030.7393"
- r="111.97202"
- fx="1219.4772"
- fy="1030.7393"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1770731,0,0,2.1770731,-1209.2139,-2017.3045)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<radialGradient
xlink:href="#linearGradient951"
id="radialGradient945"
- cx="1168.9283"
- cy="999.98224"
- r="155.47322"
- fx="1168.9283"
- fy="999.98224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-834.11435,-72.834549)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<linearGradient
xlink:href="#linearGradient915"
id="linearGradient950"
- x1="1712.7218"
- y1="3.250231"
- x2="1712.7218"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<radialGradient
xlink:href="#linearGradient1083"
id="radialGradient1087"
- cx="1168.9283"
- cy="999.98224"
- r="155.47322"
- fx="1168.9283"
- fy="999.98224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<radialGradient
xlink:href="#linearGradient1150"
id="radialGradient1154"
- cx="1168.9283"
- cy="999.98224"
- r="155.47322"
- fx="1168.9283"
- fy="999.98224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.8641984,0,0,2.8641984,-2240.2539,-1747.808)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<radialGradient
xlink:href="#linearGradient1156"
id="radialGradient1160"
- cx="1168.9283"
- cy="999.98224"
- r="155.47322"
- fx="1168.9283"
- fy="999.98224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.8641984,0,0,2.8641984,-1855.9221,-1953.52)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<radialGradient
xlink:href="#linearGradient1162"
id="radialGradient1166"
- cx="1168.9283"
- cy="999.98224"
- r="155.47322"
- fx="1168.9283"
- fy="999.98224"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.8641984,0,0,2.8641984,-2210.7029,-1878.7093)" />
+ cx="0.50000000"
+ cy="0.50000000"
+ r="0.50000000"
+ fx="0.50000000"
+ fy="0.50000000" />
<linearGradient
xlink:href="#linearGradient931"
id="linearGradient1178"
- x1="2046.8396"
- y1="3.250231"
- x2="2046.8396"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient946"
id="linearGradient1180"
- x1="2380.9573"
- y1="3.250231"
- x2="2380.9573"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient951"
id="linearGradient1182"
- x1="2715.0764"
- y1="3.250231"
- x2="2715.0764"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient1083"
id="linearGradient1184"
- x1="3049.1939"
- y1="3.250231"
- x2="3049.1939"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient1150"
id="linearGradient1186"
- x1="3383.3117"
- y1="3.250231"
- x2="3383.3117"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient1156"
id="linearGradient1188"
- x1="3717.4295"
- y1="3.250231"
- x2="3717.4295"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
<linearGradient
xlink:href="#linearGradient1162"
id="linearGradient1190"
- x1="4051.5476"
- y1="3.250231"
- x2="4051.5476"
- y2="174.31881"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient931"
- id="radialGradient26385"
- cx="1219.4772"
- cy="1030.7393"
- fx="1219.4772"
- fy="1030.7393"
- r="111.97202"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1770731,0,0,2.1770731,-1553.6885,-1883.0464)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient931"
- id="radialGradient26387"
- cx="1219.4772"
- cy="1030.7393"
- fx="1219.4772"
- fy="1030.7393"
- r="111.97202"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1770731,0,0,2.1770731,-1518.5472,-1563.9712)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26389"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-186.08448,-428.38261)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26391"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-275.14571,-422.24053)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26393"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-296.6432,-422.24053)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26395"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-318.1408,-416.09835)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26397"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-379.56224,-406.88512)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26399"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-450.19701,-416.09835)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26401"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-493.19211,-419.16939)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26403"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-499.33429,-409.95616)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26405"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-447.12597,-388.45867)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26407"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-394.91765,-394.60085)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26409"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-293.57216,-394.60085)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26411"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-50.957141,-403.81408)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26413"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-140.01835,-406.88512)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26415"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-319.45024,-446.80715)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26417"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-497.51968,-991.41237)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26419"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-721.19232,-1130.3936)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26421"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,-868.85963,-1069.5893)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient951"
- id="radialGradient26423"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.4320992,0,0,1.4320992,127.89493,-90.207179)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26425"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.71604907,0,0,0.0875104,619.97568,197.30507)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26427"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.71604907,0,0,0.0875104,-552.1968,-1544.4949)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26429"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.71604907,0,0,0.0875104,486.64235,599.97173)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26431"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.71604907,0,0,0.0875104,-149.53013,-1411.1616)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26433"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,558.48075,1070.3925)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26435"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,695.6416,-1020.7404)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26437"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26439"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26441"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26443"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26445"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26447"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26449"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26451"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26453"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26455"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26457"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26459"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26461"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26463"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26465"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26467"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26469"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26471"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26473"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26475"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26477"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26479"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26481"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26483"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26485"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26487"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26489"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26491"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26493"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,558.48075,1070.3925)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26495"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,695.6416,-1020.7404)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26497"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,558.48075,1070.3925)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26499"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,695.6416,-1020.7404)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26501"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26503"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,428.97493,-1207.4069)" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1083"
- id="radialGradient26505"
- cx="1168.9283"
- cy="999.98224"
- fx="1168.9283"
- fy="999.98224"
- r="155.47322"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35802453,0,0,0.0437552,745.14741,803.72587)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient902"
- id="linearGradient26507"
- x1="875.58684"
- y1="-859.49089"
- x2="875.58684"
- y2="-10.373741"
- gradientTransform="scale(0.73291683,1.5523968)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient859"
- id="linearGradient26509"
- x1="-865.98941"
- y1="-173.60198"
- x2="-865.98941"
- y2="-2.5334033"
- gradientTransform="scale(0.31179788,3.6490876)"
- gradientUnits="userSpaceOnUse" />
+ x1="1.0000000"
+ y1="0.012760486"
+ x2="1.0000000"
+ y2="0.98359996" />
</defs>
<sodipodi:namedview
id="base"
@@ -1349,716 +594,921 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="0.41580606"
- inkscape:cx="965.52002"
- inkscape:cy="674.59334"
+ inkscape:zoom="0.48"
+ inkscape:cx="928"
+ inkscape:cy="612"
inkscape:window-width="940"
inkscape:window-height="780"
inkscape:window-x="0"
- inkscape:window-y="25"
- showgrid="false"
- inkscape:window-maximized="0"
- inkscape:current-layer="svg3624" />
+ inkscape:window-y="0" />
<rect
- style="fill:url(#radialGradient928);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#radialGradient928);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
id="rect927"
- width="1290.0941"
- height="1353.4551"
- x="640.91199"
- y="0.07492277" />
- <circle
- style="fill:url(#radialGradient914);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.0858486pt"
+ width="1209.4632"
+ height="1268.8641"
+ x="600.85498"
+ y="0.070240096" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient914);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
id="path913"
- transform="scale(-1,1)"
- cx="-1191.5763"
- cy="411.60922"
- r="347.01965" />
- <circle
- style="fill:url(#radialGradient26385);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.17707306pt"
+ sodipodi:cx="1295.6102"
+ sodipodi:cy="827.23419"
+ sodipodi:rx="319.58386"
+ sodipodi:ry="319.58386"
+ d="M 1615.1941 827.23419 A 319.58386 319.58386 0 1 0 976.02637,827.23419 A 319.58386 319.58386 0 1 0 1615.1941 827.23419 z"
+ transform="matrix(-1.017983,0.000000,0.000000,1.017983,2436.012,-456.2267)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient930);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
id="path929"
- cx="1101.2024"
- cy="360.94827"
- r="243.77127" />
- <circle
- style="fill:url(#radialGradient26387);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.17707306pt"
+ sodipodi:cx="1219.4772"
+ sodipodi:cy="1030.7393"
+ sodipodi:rx="111.97202"
+ sodipodi:ry="111.97202"
+ d="M 1331.4492 1030.7393 A 111.97202 111.97202 0 1 0 1107.5051,1030.7393 A 111.97202 111.97202 0 1 0 1331.4492 1030.7393 z"
+ transform="matrix(2.041006,0.000000,0.000000,2.041006,-1456.583,-1765.356)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient930);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
id="path940"
- cx="1136.3438"
- cy="680.0235"
- r="243.77127" />
- <circle
- style="fill:url(#radialGradient930);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.17707306pt"
+ sodipodi:cx="1219.4772"
+ sodipodi:cy="1030.7393"
+ sodipodi:rx="111.97202"
+ sodipodi:ry="111.97202"
+ d="M 1331.4492 1030.7393 A 111.97202 111.97202 0 1 0 1107.5051,1030.7393 A 111.97202 111.97202 0 1 0 1331.4492 1030.7393 z"
+ transform="matrix(2.041006,0.000000,0.000000,2.041006,-1423.638,-1466.223)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient930);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;"
id="path941"
- cx="1445.677"
- cy="226.69014"
- r="243.77127" />
- <circle
- style="fill:url(#radialGradient26389);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1219.4772"
+ sodipodi:cy="1030.7393"
+ sodipodi:rx="111.97202"
+ sodipodi:ry="111.97202"
+ d="M 1331.4492 1030.7393 A 111.97202 111.97202 0 1 0 1107.5051,1030.7393 A 111.97202 111.97202 0 1 0 1331.4492 1030.7393 z"
+ transform="matrix(2.041006,0.000000,0.000000,2.041006,-1133.638,-1891.223)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path956"
- cx="1487.9369"
- cy="1003.6912"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26391);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-174.4542,-401.6087)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path957"
- cx="1398.8756"
- cy="1009.8333"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26393);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-257.9491,-395.8505)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path958"
- cx="1377.3782"
- cy="1009.8333"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26395);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-278.1030,-395.8505)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path959"
- cx="1355.8805"
- cy="1015.9754"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26397);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-298.2570,-390.0922)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path960"
- cx="1294.4591"
- cy="1025.1886"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26399);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-355.8396,-381.4548)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path961"
- cx="1223.8243"
- cy="1015.9754"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26401);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-422.0597,-390.0922)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path962"
- cx="1180.8292"
- cy="1012.9044"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26403);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-462.3676,-392.9713)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path963"
- cx="1174.687"
- cy="1022.1176"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26405);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-468.1259,-384.3339)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path964"
- cx="1226.8954"
- cy="1043.6151"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26407);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-419.1806,-364.1800)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path965"
- cx="1279.1036"
- cy="1037.4729"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26409);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-370.2353,-369.9383)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path966"
- cx="1380.4492"
- cy="1037.4729"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26411);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-275.2239,-369.9383)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path967"
- cx="1623.0642"
- cy="1028.2596"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26413);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-47.77232,-378.5757)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path968"
- cx="1534.0031"
- cy="1025.1886"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26415);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-131.2672,-381.4548)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path969"
- cx="1354.5712"
- cy="985.2666"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26417);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-299.4846,-418.8817)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1077"
- cx="1176.5017"
- cy="440.66138"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26419);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-466.4247,-929.4491)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1078"
- cx="952.82904"
- cy="301.68018"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26421);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-676.1178,-1059.744)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1079"
- cx="805.16174"
- cy="362.48444"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient26423);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-814.5559,-1002.740)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1080"
- cx="1801.9163"
- cy="1341.8666"
- r="222.65308" />
- <circle
- style="fill:url(#radialGradient945);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.43209925pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,119.9015,-84.56923)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient945);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1081"
- cx="839.90698"
- cy="1359.2393"
- r="222.65308" />
- <ellipse
- style="fill:url(#radialGradient26425);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.25032326pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(1.342593,0.000000,0.000000,1.342593,-781.9822,-68.28239)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1082"
- cx="1456.9857"
- cy="284.8139"
- rx="111.32645"
- ry="13.605524" />
- <ellipse
- style="fill:url(#radialGradient26427);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.25032326pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.671296,0.000000,0.000000,8.204100e-2,581.2272,184.9735)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1088"
- transform="rotate(90)"
- cx="284.81326"
- cy="-1456.9861"
- rx="111.32645"
- ry="13.605524" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(4.110370e-17,0.671296,-8.204100e-2,5.023395e-18,1447.964,-517.6845)" />
<g
id="g1134"
- transform="matrix(0.494011,0,0,0.494011,712.26048,335.7392)">
- <ellipse
- style="fill:url(#radialGradient26429);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.25032326pt;stroke-opacity:1"
+ transform="matrix(0.494011,0.000000,0.000000,0.494011,667.7442,314.7555)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1089"
- cx="1323.6523"
- cy="687.48059"
- rx="111.32645"
- ry="13.605524" />
- <ellipse
- style="fill:url(#radialGradient26431);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.25032326pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.671296,0.000000,0.000000,8.204100e-2,456.2272,562.4735)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1090"
- transform="rotate(90)"
- cx="687.47992"
- cy="-1323.6527"
- rx="111.32645"
- ry="13.605524" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(4.110370e-17,0.671296,-8.204100e-2,5.023395e-18,1322.964,-140.1845)" />
</g>
<g
id="g1140"
- transform="matrix(0.928138,0,0,0.928138,738.2672,80.063381)">
- <ellipse
- style="fill:url(#radialGradient26433);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.928138,0.000000,0.000000,0.928138,692.1255,75.05942)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1091"
- cx="976.98578"
- cy="1114.147"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26435);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,523.5757,1003.493)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1092"
- transform="rotate(90)"
- cx="1114.1466"
- cy="-976.98596"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,956.9441,652.1640)" />
</g>
<g
id="g1095"
- transform="matrix(0.712552,0,0,0.712552,916.46624,564.99552)">
- <ellipse
- style="fill:url(#radialGradient26437);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.712552,0.000000,0.000000,0.712552,859.1871,529.6833)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1093"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26439);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1094"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1098"
- transform="translate(340.93781,-382.19787)">
- <ellipse
- style="fill:url(#radialGradient26441);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="translate(319.6292,-358.3105)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1099"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26443);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1100"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1101"
- transform="translate(-267.10421,-136.80949)">
- <ellipse
- style="fill:url(#radialGradient26445);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="translate(-250.4102,-128.2589)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1102"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26447);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1103"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1104"
- transform="translate(-197.61365,-445.17365)">
- <ellipse
- style="fill:url(#radialGradient26449);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="translate(-185.2628,-417.3503)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1105"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26451);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1106"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1107"
- transform="translate(-188.92736,-681.87573)">
- <ellipse
- style="fill:url(#radialGradient26453);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="translate(-177.1194,-639.2585)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1108"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26455);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1109"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1110"
- transform="matrix(0.688598,0,0,0.688598,195.4048,-458.01813)">
- <ellipse
- style="fill:url(#radialGradient26457);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.688598,0.000000,0.000000,0.688598,183.1920,-429.3920)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1111"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26459);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1112"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1113"
- transform="matrix(1.35931,0,0,1.35931,-481.07989,-1061.5058)">
- <ellipse
- style="fill:url(#radialGradient26461);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(1.359310,0.000000,0.000000,1.359310,-451.0124,-995.1617)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1114"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26463);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1115"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1116"
- transform="matrix(8,0,0,8,-7609.536,-6675.04)">
- <ellipse
- style="fill:url(#radialGradient26465);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(8.000000,0.000000,0.000000,8.000000,-7133.940,-6257.850)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1117"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26467);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1118"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1119"
- transform="matrix(1.52092,0,0,1.52092,30.092235,-665.14987)">
- <ellipse
- style="fill:url(#radialGradient26469);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(1.520920,0.000000,0.000000,1.520920,28.21147,-623.5780)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1120"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26471);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1121"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1122"
- transform="matrix(0.544874,0,0,0.544874,1204.9611,489.93877)">
- <ellipse
- style="fill:url(#radialGradient26473);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.544874,0.000000,0.000000,0.544874,1129.651,459.3176)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1123"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26475);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1124"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1125"
- transform="matrix(0.76046,0,0,0.76046,817.28747,650.34677)">
- <ellipse
- style="fill:url(#radialGradient26477);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.760460,0.000000,0.000000,0.760460,766.2070,609.7001)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1126"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26479);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1127"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1128"
- transform="matrix(2,0,0,2,-447.10997,-519.57163)">
- <ellipse
- style="fill:url(#radialGradient26481);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(2.000000,0.000000,0.000000,2.000000,-419.1656,-487.0984)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1129"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26483);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1130"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1131"
- transform="translate(562.43893,301.84939)">
- <ellipse
- style="fill:url(#radialGradient26485);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="translate(527.2865,282.9838)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1132"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26487);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1133"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1137"
- transform="matrix(1.496966,0,0,1.496966,-652.13707,-384.25973)">
- <ellipse
- style="fill:url(#radialGradient26489);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(1.496966,0.000000,0.000000,1.496966,-611.3785,-360.2435)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1138"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26491);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1139"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1143">
- <ellipse
- style="fill:url(#radialGradient26493);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1144"
- cx="976.98578"
- cy="1114.147"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26495);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,523.5757,1003.493)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1145"
- transform="rotate(90)"
- cx="1114.1466"
- cy="-976.98596"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,956.9441,652.1640)" />
</g>
<g
id="g1146"
- transform="matrix(0.5,0,0,0.5,781.82624,679.73995)">
- <ellipse
- style="fill:url(#radialGradient26497);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.500000,0.000000,0.000000,0.500000,732.9621,637.2562)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1147"
- cx="976.98578"
- cy="1114.147"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26499);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,523.5757,1003.493)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1148"
- transform="rotate(90)"
- cx="1114.1466"
- cy="-976.98596"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,956.9441,652.1640)" />
</g>
- <circle
- style="fill:url(#radialGradient1154);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.86419851pt;stroke-opacity:1"
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1154);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1149"
- cx="1107.7888"
- cy="1116.3395"
- r="445.30615" />
- <circle
- style="fill:url(#radialGradient1160);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.86419851pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.685186,0.000000,0.000000,2.685186,-2100.238,-1638.570)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1160);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1155"
- cx="1492.1206"
- cy="910.6275"
- r="445.30615" />
- <circle
- style="fill:url(#radialGradient1166);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:2.86419851pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.685186,0.000000,0.000000,2.685186,-1739.927,-1831.425)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1166);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1161"
- cx="1137.3397"
- cy="985.43817"
- r="445.30615" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.685186,0.000000,0.000000,2.685186,-2072.534,-1761.290)" />
<g
id="g1170"
- transform="matrix(4,0,0,4,-3918.0608,-2865.9157)">
- <ellipse
- style="fill:url(#radialGradient26501);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(4.000000,0.000000,0.000000,4.000000,-3673.182,-2686.796)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1171"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient26503);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1172"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<g
id="g1173"
- transform="matrix(0.5,0,0,0.5,280.05579,-273.06912)">
- <ellipse
- style="fill:url(#radialGradient26505);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ transform="matrix(0.500000,0.000000,0.000000,0.500000,262.5523,-256.0023)">
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1174"
- cx="1163.6525"
- cy="847.48029"
- rx="55.663227"
- ry="6.802762" />
- <ellipse
- style="fill:url(#radialGradient1087);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:0.12516163pt;stroke-opacity:1"
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(0.335648,0.000000,0.000000,4.102050e-2,698.5757,753.4930)" />
+ <path
+ sodipodi:type="arc"
+ style="fill:url(#radialGradient1087);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-opacity:1.0000000;"
id="path1175"
- transform="rotate(90)"
- cx="847.47998"
- cy="-1163.6525"
- rx="55.663227"
- ry="6.802762" />
+ sodipodi:cx="1168.9283"
+ sodipodi:cy="999.98224"
+ sodipodi:rx="155.47322"
+ sodipodi:ry="155.47322"
+ d="M 1324.4016 999.98224 A 155.47322 155.47322 0 1 0 1013.4551,999.98224 A 155.47322 155.47322 0 1 0 1324.4016 999.98224 z"
+ transform="matrix(2.055185e-17,0.335648,-4.102050e-2,2.511697e-18,1131.944,402.1640)" />
</g>
<rect
- style="fill:url(#linearGradient26507);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient910);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1191"
- width="641.02484"
- height="1357.7598"
- x="0.70746589"
- y="-1351.5966"
- transform="scale(1,-1)" />
+ width="600.96080"
+ height="1272.8998"
+ x="0.66324927"
+ y="-1267.1218"
+ transform="scale(1.000000,-1.000000)" />
<rect
- style="fill:url(#linearGradient3631);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient3631);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect3632"
- width="54.940926"
- height="642.99426"
- x="-271.94516"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-254.94858"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient845);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient845);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect836"
- width="54.940926"
- height="642.99426"
- x="-217.69345"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-204.08761"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient857);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient857);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect847"
- width="54.940926"
- height="642.99426"
- x="-163.86046"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-153.61919"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient26509);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient867);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect858"
- width="54.940926"
- height="642.99426"
- x="-324.95459"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-304.64494"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient867);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient867);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect868"
- width="54.940926"
- height="642.99426"
- x="-324.95459"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-304.64494"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient878);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient878);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect869"
- width="54.940926"
- height="642.99426"
- x="-375.70837"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-352.22659"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient889);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient889);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect879"
- width="54.940926"
- height="642.99426"
- x="-109.72294"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-102.86526"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient900);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient900);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect890"
- width="54.940926"
- height="642.99426"
- x="-55.585369"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-52.111282"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient910);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient910);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect901"
- width="54.940926"
- height="642.99426"
- x="-429.84579"
- y="-641.69373"
- transform="matrix(0,-1,-1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="-402.98044"
+ y="-601.58789"
+ transform="matrix(5.948381e-18,-1.000000,-1.000000,-8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient950);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient950);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1176"
- width="54.940926"
- height="642.99426"
- x="479.08209"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="449.13946"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1178);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1178);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1177"
- width="54.940926"
- height="642.99426"
- x="583.25934"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="546.80558"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1180);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1180);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1179"
- width="54.940926"
- height="642.99426"
- x="687.43652"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="644.47174"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1182);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1182);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1181"
- width="54.940926"
- height="642.99426"
- x="791.61414"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="742.13822"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1184);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1184);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1183"
- width="54.940926"
- height="642.99426"
- x="895.79126"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="839.80434"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1186);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1186);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1185"
- width="54.940926"
- height="642.99426"
- x="999.96851"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="937.47046"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1188);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1188);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1187"
- width="54.940926"
- height="642.99426"
- x="1104.1458"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="1035.1366"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
<rect
- style="fill:url(#linearGradient1190);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt"
+ style="fill:url(#linearGradient1190);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1pt;"
id="rect1189"
- width="54.940926"
- height="642.99426"
- x="1208.323"
- y="3.6554577"
- transform="matrix(0,1,1,0,0,0)" />
+ width="51.507120"
+ height="602.80713"
+ x="1132.8028"
+ y="3.4269917"
+ transform="matrix(-5.948381e-18,1.000000,1.000000,8.094348e-18,0.000000,0.000000)" />
</svg>
diff --git a/share/examples/lighting_filters.svg b/share/examples/lighting_filters.svg
index 605b84f36..95bf29723 100644
--- a/share/examples/lighting_filters.svg
+++ b/share/examples/lighting_filters.svg
@@ -1,180 +1,63 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="819.20001"
- height="273.06668"
- id="svg1901"
- sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- sodipodi:docname="lighting_filters.svg"
- version="1.0"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- inkscape:export-filename="/home/niko/inkscape/complex-lighting.png"
- inkscape:export-xdpi="90"
- inkscape:export-ydpi="90">
- <defs
- id="defs1903">
- <filter
- id="metallic-lighting"
- filterRes="256">
- <feGaussianBlur
- stdDeviation="10.0437"
- id="feGaussianBlur2792"
- in="SourceGraphic"
- result="result0" />
- <feDiffuseLighting
- id="feDiffuseLighting2794"
- in="result0"
- result="result1"
- diffuseConstant="1"
- surfaceScale="10"
- lighting-color="#ffffff">
- <feDistantLight
- id="feDistantLight1"
- azimuth="205"
- elevation="45" />
- </feDiffuseLighting>
- <feSpecularLighting
- id="feSpecularLighting2796"
- in="result0"
- result="result3"
- specularConstant="0.5"
- surfaceScale="20"
- specularExponent="20"
- lighting-color="#ffffff">
- <feDistantLight
- id="feDistantLight2"
- azimuth="205"
- elevation="45" />
- </feSpecularLighting>
- <feComposite
- id="feComposite2798"
- in="result1"
- in2="SourceGraphic"
- operator="arithmetic"
- k1="1"
- result="result2"
- k4="0"
- k2="0"
- k3="0" />
- <feComposite
- id="feComposite2800"
- in="result2"
- in2="result3"
- operator="arithmetic"
- k2="1"
- k3="1"
- k4="0"
- k1="0"
- result="result4" />
- <feComposite
- inkscape:collect="always"
- id="feComposite2799"
- in="result4"
- in2="SourceAlpha"
- operator="in" />
- </filter>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="1.3964844"
- inkscape:cx="409.60001"
- inkscape:cy="136.53334"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- gridtolerance="10000"
- inkscape:window-width="1278"
- inkscape:window-height="715"
- inkscape:window-x="51"
- inkscape:window-y="25"
- width="768px"
- height="256px"
- showgrid="false"
- inkscape:window-maximized="0" />
- <metadata
- id="metadata1906">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <cc:license
- rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
- <dc:title>Lighting effects example</dc:title>
- <dc:date>25 July 2007</dc:date>
- <dc:creator>
- <cc:Agent>
- <dc:title>Niko Kiirala</dc:title>
- </cc:Agent>
- </dc:creator>
- <dc:rights>
- <cc:Agent>
- <dc:title>Copyright 2007 Niko Kiirala</dc:title>
- </cc:Agent>
- </dc:rights>
- <dc:subject>
- <rdf:Bag>
- <rdf:li>feDiffuseLighting</rdf:li>
- <rdf:li>feSpecularLighting</rdf:li>
- <rdf:li>light</rdf:li>
- <rdf:li>lighting effects</rdf:li>
- </rdf:Bag>
- </dc:subject>
- <dc:description>An example, how to make metallic-looking objects with SVG lighting effects</dc:description>
- </cc:Work>
- <cc:License
- rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Reproduction" />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#Distribution" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#Notice" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#Attribution" />
- <cc:permits
- rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
- <cc:requires
- rdf:resource="http://creativecommons.org/ns#ShareAlike" />
- </cc:License>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Taso 1"
- inkscape:groupmode="layer"
- id="layer1"
- style="opacity:1">
- <path
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#dad645;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#metallic-lighting);enable-background:accumulate"
- d="m 121.53125,18.281251 -5.875,12.34375 -28.09375,59.1875 -64.375,12.312499 -13.4375,2.5625 9.9375,9.40625 47.625,45.03125 -8.1875,65 -1.71875,13.59375 12,-6.5625 57.53125,-31.40625 59.3125,27.90625 12.375,5.8125 -2.5,-13.4375 -12.09375,-64.375 44.875,-47.8125 9.34375,-9.968748 -13.5625,-1.78125 -65,-8.40625 -31.59375,-57.437501 z m 0.90625,30.718751 26.71875,48.531249 1.6875,3.124999 3.53125,0.4375 54.9375,7.15625 -37.90625,40.375 -2.4375,2.59375 0.65625,3.5 10.1875,54.4375 -50.125,-23.5625 -3.21875,-1.5 -3.125,1.6875 -48.625,26.5625 6.9375,-55 0.4375,-3.53125 L 79.5,151.375 39.25,113.3125 l 54.40625,-10.40625 3.5,-0.65625 1.53125,-3.218749 z"
- id="path2803"
- inkscape:connector-curvature="0"
- transform="scale(1.0666667)" />
- <path
- id="path2799"
- d="m 381.53125,18.281251 -5.875,12.34375 -28.09375,59.1875 -64.375,12.312499 -13.4375,2.5625 9.9375,9.40625 47.625,45.03125 -8.1875,65 -1.71875,13.59375 12,-6.5625 57.53125,-31.40625 59.3125,27.90625 12.375,5.8125 -2.5,-13.4375 -12.09375,-64.375 44.875,-47.8125 9.34375,-9.968748 -13.5625,-1.78125 -65,-8.40625 -31.59375,-57.437501 z m 0.90625,30.718751 26.71875,48.531249 1.6875,3.124999 3.53125,0.4375 54.9375,7.15625 -37.90625,40.375 -2.4375,2.59375 0.65625,3.5 10.1875,54.4375 -50.125,-23.5625 -3.21875,-1.5 -3.125,1.6875 -48.625,26.5625 6.9375,-55 0.4375,-3.53125 -2.59375,-2.4375 -40.25,-38.0625 54.40625,-10.40625 3.5,-0.65625 1.53125,-3.218749 z"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#c7e1e2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#metallic-lighting);enable-background:accumulate"
- inkscape:connector-curvature="0"
- transform="scale(1.0666667)" />
- <path
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#f4a430;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;filter:url(#metallic-lighting);enable-background:accumulate"
- d="m 641.53125,18.281251 -5.875,12.34375 -28.09375,59.1875 -64.375,12.312499 -13.4375,2.5625 9.9375,9.40625 47.625,45.03125 -8.1875,65 -1.71875,13.59375 12,-6.5625 57.53125,-31.40625 59.3125,27.90625 12.375,5.8125 -2.5,-13.4375 -12.09375,-64.375 44.875,-47.8125 9.34375,-9.968748 -13.5625,-1.78125 -65,-8.40625 -31.59375,-57.437501 z m 0.90625,30.718751 26.71875,48.531249 1.6875,3.124999 3.53125,0.4375 54.9375,7.15625 -37.90625,40.375 -2.4375,2.59375 0.65625,3.5 10.1875,54.4375 -50.125,-23.5625 -3.21875,-1.5 -3.125,1.6875 -48.625,26.5625 6.9375,-55 0.4375,-3.53125 -2.59375,-2.4375 -40.25,-38.0625 54.40625,-10.40625 3.5,-0.65625 1.53125,-3.218749 z"
- id="path2805"
- inkscape:connector-curvature="0"
- transform="scale(1.0666667)" />
- </g>
+<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="768" height="256" id="svg1901" sodipodi:version="0.32" inkscape:version="0.92" sodipodi:docname="lighting_filters.svg" version="1.0" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:export-filename="/home/niko/inkscape/complex-lighting.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
+<defs id="defs1903">
+<filter id="metallic-lighting" filterRes="256">
+<feGaussianBlur stdDeviation="10.0437" id="feGaussianBlur2792" in="SourceGraphic" result="result0" />
+<feDiffuseLighting id="feDiffuseLighting2794" in="result0" result="result1" diffuseConstant="1" surfaceScale="10" lighting-color="#ffffff">
+<feDistantLight id="feDistantLight1" azimuth="205" elevation="45" />
+</feDiffuseLighting>
+<feSpecularLighting id="feSpecularLighting2796" in="result0" result="result3" specularConstant="0.5" surfaceScale="20" specularExponent="20" lighting-color="#ffffff">
+<feDistantLight id="feDistantLight2" azimuth="205" elevation="45" />
+</feSpecularLighting>
+<feComposite id="feComposite2798" in="result1" in2="SourceGraphic" operator="arithmetic" k1="1" result="result2" k4="0" k2="0" k3="0" />
+<feComposite id="feComposite2800" in="result2" in2="result3" operator="arithmetic" k2="1" k3="1" k4="0" k1="0" result="result4" />
+<feComposite inkscape:collect="always" id="feComposite2799" in="result4" in2="SourceAlpha" operator="in" />
+</filter>
+</defs>
+<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.037109" inkscape:cx="100.3928" inkscape:cy="103.4055" inkscape:document-units="px" inkscape:current-layer="layer1" gridtolerance="10000" inkscape:window-width="1278" inkscape:window-height="715" inkscape:window-x="51" inkscape:window-y="24" width="768px" height="256px" showgrid="false" inkscape:window-maximized="0" />
+<metadata id="metadata1906">
+<rdf:RDF>
+<cc:Work rdf:about="">
+<dc:format>image/svg+xml</dc:format>
+<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
+<dc:title>Lighting effects example</dc:title>
+<dc:date>25 July 2007</dc:date>
+<dc:creator>
+<cc:Agent>
+<dc:title>Niko Kiirala</dc:title>
+</cc:Agent>
+</dc:creator>
+<dc:rights>
+<cc:Agent>
+<dc:title>Copyright 2007 Niko Kiirala</dc:title>
+</cc:Agent>
+</dc:rights>
+<dc:subject>
+<rdf:Bag>
+<rdf:li>feDiffuseLighting</rdf:li>
+<rdf:li>feSpecularLighting</rdf:li>
+<rdf:li>light</rdf:li>
+<rdf:li>lighting effects</rdf:li>
+</rdf:Bag>
+</dc:subject>
+<dc:description>An example, how to make metallic-looking objects with SVG lighting effects</dc:description>
+</cc:Work>
+<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
+<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
+<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
+<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+</cc:License>
+</rdf:RDF>
+</metadata>
+<g inkscape:label="Taso 1" inkscape:groupmode="layer" id="layer1" style="opacity:1">
+<path style="opacity:1;color:#000000;fill:#dad645;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#metallic-lighting);enable-background:accumulate" d="M 121.53125,18.281251 L 115.65625,30.625001 L 87.5625,89.812501 L 23.1875,102.125 L 9.75,104.6875 L 19.6875,114.09375 L 67.3125,159.125 L 59.125,224.125 L 57.40625,237.71875 L 69.40625,231.15625 L 126.9375,199.75 L 186.25,227.65625 L 198.625,233.46875 L 196.125,220.03125 L 184.03125,155.65625 L 228.90625,107.84375 L 238.25,97.875002 L 224.6875,96.093752 L 159.6875,87.687502 L 128.09375,30.250001 L 121.53125,18.281251 z M 122.4375,49.000002 L 149.15625,97.531251 L 150.84375,100.65625 L 154.375,101.09375 L 209.3125,108.25 L 171.40625,148.625 L 168.96875,151.21875 L 169.625,154.71875 L 179.8125,209.15625 L 129.6875,185.59375 L 126.46875,184.09375 L 123.34375,185.78125 L 74.71875,212.34375 L 81.65625,157.34375 L 82.09375,153.8125 L 79.5,151.375 L 39.25,113.3125 L 93.65625,102.90625 L 97.15625,102.25 L 98.6875,99.031251 L 122.4375,49.000002 z" id="path2803" />
+<path id="path2799" d="M 381.53125,18.281251 L 375.65625,30.625001 L 347.5625,89.812501 L 283.1875,102.125 L 269.75,104.6875 L 279.6875,114.09375 L 327.3125,159.125 L 319.125,224.125 L 317.40625,237.71875 L 329.40625,231.15625 L 386.9375,199.75 L 446.25,227.65625 L 458.625,233.46875 L 456.125,220.03125 L 444.03125,155.65625 L 488.90625,107.84375 L 498.25,97.875002 L 484.6875,96.093752 L 419.6875,87.687502 L 388.09375,30.250001 L 381.53125,18.281251 z M 382.4375,49.000002 L 409.15625,97.531251 L 410.84375,100.65625 L 414.375,101.09375 L 469.3125,108.25 L 431.40625,148.625 L 428.96875,151.21875 L 429.625,154.71875 L 439.8125,209.15625 L 389.6875,185.59375 L 386.46875,184.09375 L 383.34375,185.78125 L 334.71875,212.34375 L 341.65625,157.34375 L 342.09375,153.8125 L 339.5,151.375 L 299.25,113.3125 L 353.65625,102.90625 L 357.15625,102.25 L 358.6875,99.031251 L 382.4375,49.000002 z" style="opacity:1;color:#000000;fill:#c7e1e2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#metallic-lighting);enable-background:accumulate" />
+<path style="opacity:1;color:#000000;fill:#f4a430;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:14;stroke-linecap:round;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#metallic-lighting);enable-background:accumulate" d="M 641.53125,18.281251 L 635.65625,30.625001 L 607.5625,89.812501 L 543.1875,102.125 L 529.75,104.6875 L 539.6875,114.09375 L 587.3125,159.125 L 579.125,224.125 L 577.40625,237.71875 L 589.40625,231.15625 L 646.9375,199.75 L 706.25,227.65625 L 718.625,233.46875 L 716.125,220.03125 L 704.03125,155.65625 L 748.90625,107.84375 L 758.25,97.875002 L 744.6875,96.093752 L 679.6875,87.687502 L 648.09375,30.250001 L 641.53125,18.281251 z M 642.4375,49.000002 L 669.15625,97.531251 L 670.84375,100.65625 L 674.375,101.09375 L 729.3125,108.25 L 691.40625,148.625 L 688.96875,151.21875 L 689.625,154.71875 L 699.8125,209.15625 L 649.6875,185.59375 L 646.46875,184.09375 L 643.34375,185.78125 L 594.71875,212.34375 L 601.65625,157.34375 L 602.09375,153.8125 L 599.5,151.375 L 559.25,113.3125 L 613.65625,102.90625 L 617.15625,102.25 L 618.6875,99.031251 L 642.4375,49.000002 z" id="path2805" />
+</g>
</svg>
diff --git a/share/examples/live-path-effects-gears.svg b/share/examples/live-path-effects-gears.svg
index 90561ebca..bb2b2ea59 100644
--- a/share/examples/live-path-effects-gears.svg
+++ b/share/examples/live-path-effects-gears.svg
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
@@ -10,23 +9,20 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="683.06561"
- height="456.87448"
+ width="744.09448819"
+ height="1052.3622047"
id="svg2"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
+ inkscape:version="0.92"
sodipodi:docname="live-path-effects-gears.svg"
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
- version="1.1">
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4">
<inkscape:path-effect
effect="gears"
id="path-effect2210"
phi="20"
- teeth="10"
- is_visible="true"
- min_radius="5" />
+ teeth="10" />
</defs>
<sodipodi:namedview
id="base"
@@ -38,21 +34,15 @@
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="1.2891944"
- inkscape:cx="341.53281"
- inkscape:cy="228.43724"
+ inkscape:zoom="0.98994949"
+ inkscape:cx="317.20474"
+ inkscape:cy="868.11317"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1152"
inkscape:window-height="808"
- inkscape:window-x="0"
- inkscape:window-y="25"
- showgrid="false"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5"
- inkscape:window-maximized="0" />
+ inkscape:window-x="-4"
+ inkscape:window-y="-4" />
<metadata
id="metadata7">
<rdf:RDF>
@@ -61,150 +51,137 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
- id="layer1"
- transform="translate(29.964063,-35.030208)">
- <g
- id="g29433">
- <path
- inkscape:connector-curvature="0"
- inkscape:original-d="m 166.7472,92.971758 73.03748,107.090872 58.42998,-9.73554 42.60519,49.89462 101.03519,-64.49791 116.85996,91.27062 -23.12854,142.38219"
- inkscape:path-effect="#path-effect2210"
- id="path2208"
- d="m 201.01416,160.12226 c 0,0 -4.39515,-4.61201 -4.10772,-16.75347 1.85147,-1.40028 3.77041,-2.70903 5.74994,-3.92154 11.40846,4.1647 14.09771,9.94015 14.09771,9.94015 l 3.42368,7.53327 c 4.09604,-1.86155 8.43632,-3.13029 12.89012,-3.768 l -1.17286,-8.19122 c 0,0 -0.84488,-6.3146 6.52423,-15.96829 2.32093,-0.0446 4.64265,0.0245 6.95682,0.20713 6.78169,10.07504 5.56261,16.32818 5.56261,16.32818 l -1.65813,8.10693 c 4.40796,0.90157 8.66507,2.42629 12.64311,4.52824 l 3.86581,-7.31622 c 0,0 3.0281,-5.60522 14.66414,-9.08378 1.90388,1.32814 3.74156,2.74874 5.50644,4.2567 -0.43546,12.13705 -5.09722,16.47939 -5.09722,16.47939 l -6.10659,5.58402 c 3.03619,3.32032 5.58405,7.05611 7.56685,11.09486 l 7.42788,-3.64668 c 0,0 5.74445,-2.75485 17.20285,1.27043 0.75961,2.19356 1.41132,4.42301 1.95277,6.68034 -7.48626,9.56313 -13.81007,10.33604 -13.81007,10.33604 l -8.22254,0.9282 c 0.50469,4.47083 0.37011,8.99074 -0.39968,13.42362 l 8.15274,1.41577 c 0,0 6.26662,1.14779 13.17065,11.13938 -0.6748,2.22112 -1.45799,4.40785 -2.34677,6.55233 -11.67759,3.33641 -17.24796,0.24467 -17.24796,0.24467 l -7.19776,-4.08216 c -2.21958,3.91362 -4.98519,7.49121 -8.21355,10.62501 l 5.76354,5.93744 c 0,0 4.39515,4.61201 4.10772,16.75347 -1.85147,1.40028 -3.77041,2.70903 -5.74994,3.92154 -11.40846,-4.1647 -14.09771,-9.94015 -14.09771,-9.94015 l -3.42368,-7.53327 c -4.09604,1.86155 -8.43632,3.13029 -12.89012,3.768 l 1.17286,8.19122 c 0,0 0.84488,6.3146 -6.52423,15.96829 -2.32093,0.0446 -4.64265,-0.0245 -6.95682,-0.20713 -6.78169,-10.07504 -5.56261,-16.32818 -5.56261,-16.32818 l 1.65813,-8.10693 c -4.40796,-0.90157 -8.66507,-2.42629 -12.64311,-4.52824 l -3.86581,7.31622 c 0,0 -3.0281,5.60522 -14.66414,9.08378 -1.90388,-1.32814 -3.74156,-2.74874 -5.50644,-4.2567 0.43546,-12.13705 5.09722,-16.47939 5.09722,-16.47939 l 6.10659,-5.58402 c -3.03619,-3.32032 -5.58405,-7.05611 -7.56685,-11.09486 l -7.42788,3.64668 c 0,0 -5.74445,2.75485 -17.20285,-1.27043 -0.75961,-2.19356 -1.41132,-4.42301 -1.95277,-6.68034 7.48626,-9.56313 13.81007,-10.33604 13.81007,-10.33604 l 8.22254,-0.9282 c -0.50469,-4.47083 -0.37011,-8.99074 0.39968,-13.42362 l -8.15274,-1.41577 c 0,0 -6.26662,-1.14779 -13.17065,-11.13938 0.6748,-2.22112 1.45799,-4.40785 2.34677,-6.55233 11.67759,-3.33641 17.24796,-0.24467 17.24796,-0.24467 l 7.19776,4.08216 c 2.21958,-3.91362 4.98519,-7.49121 8.21355,-10.62501 l -5.76354,-5.93744 m 96.01565,88.18647 c 0,0 -6.25065,1.06676 -15.42621,-6.57718 -0.0545,-2.13728 0.007,-4.27593 0.1835,-6.40658 9.59804,-7.10623 15.77738,-5.68345 15.77738,-5.68345 l 8.73182,2.13579 c 1.02427,-4.18758 2.80186,-8.15388 5.24593,-11.70515 l -7.405,-5.0963 c 0,0 -5.17419,-3.66556 -6.2572,-15.55874 1.47274,-1.54982 3.02831,-3.01876 4.65988,-4.40038 11.8117,1.76197 15.1751,7.13748 15.1751,7.13748 l 4.66409,7.68456 c 3.68534,-2.2368 7.74688,-3.78445 11.98623,-4.56736 l -1.6325,-8.83975 c 0,0 -1.06676,-6.25065 6.57718,-15.42621 2.13728,-0.0545 4.27593,0.007 6.40658,0.1835 7.10623,9.59804 5.68345,15.77738 5.68345,15.77738 l -2.13579,8.73182 c 4.18758,1.02427 8.15388,2.80186 11.70515,5.24593 l 5.0963,-7.405 c 0,0 3.66556,-5.17419 15.55874,-6.2572 1.54982,1.47274 3.01876,3.02831 4.40038,4.65988 -1.76197,11.8117 -7.13748,15.1751 -7.13748,15.1751 l -7.68456,4.66409 c 2.2368,3.68534 3.78445,7.74688 4.56736,11.98623 l 8.83975,-1.6325 c 0,0 6.25065,-1.06676 15.42621,6.57718 0.0545,2.13728 -0.007,4.27593 -0.1835,6.40658 -9.59804,7.10623 -15.77738,5.68345 -15.77738,5.68345 l -8.73182,-2.13579 c -1.02427,4.18758 -2.80186,8.15388 -5.24593,11.70515 l 7.405,5.0963 c 0,0 5.17419,3.66556 6.2572,15.55874 -1.47274,1.54982 -3.02831,3.01876 -4.65988,4.40038 -11.8117,-1.76197 -15.1751,-7.13748 -15.1751,-7.13748 l -4.66409,-7.68456 c -3.68534,2.2368 -7.74688,3.78445 -11.98623,4.56736 l 1.6325,8.83975 c 0,0 1.06676,6.25065 -6.57718,15.42621 -2.13728,0.0545 -4.27593,-0.007 -6.40658,-0.1835 -7.10623,-9.59804 -5.68345,-15.77738 -5.68345,-15.77738 l 2.13579,-8.73182 c -4.18758,-1.02427 -8.15388,-2.80186 -11.70515,-5.24593 l -5.0963,7.405 c 0,0 -3.66556,5.17419 -15.55874,6.2572 -1.54982,-1.47274 -3.01876,-3.02831 -4.40038,-4.65988 1.76197,-11.8117 7.13748,-15.1751 7.13748,-15.1751 l 7.68456,-4.66409 c -2.2368,-3.68534 -3.78445,-7.74688 -4.56736,-11.98623 l -8.83975,1.6325 m 81.55657,-51.1664 c 0,0 -6.15223,2.03591 -17.57129,-2.91891 -0.54706,-2.39056 -0.98781,-4.8042 -1.32096,-7.23382 8.93088,-8.6709 15.4056,-8.94079 15.4056,-8.94079 l 7.55571,-0.26315 c -0.15962,-4.58306 0.2135,-9.16915 1.11187,-13.66613 l -7.4138,-1.48107 c 0,0 -6.34594,-1.31296 -13.75773,-11.3135 0.72151,-2.34381 1.54663,-4.65446 2.47293,-6.92514 12.06982,-3.04379 17.81203,-0.0402 17.81203,-0.0402 l 6.67502,3.54995 c 2.15329,-4.04885 4.76947,-7.83396 7.79597,-11.27928 l -5.68001,-4.98954 c 0,0 -4.83927,-4.31003 -6.25779,-16.67664 1.79675,-1.66904 3.66665,-3.25757 5.60418,-4.76089 11.97467,3.39891 15.44576,8.87124 15.44576,8.87124 l 4.00575,6.41186 c 3.88924,-2.42976 8.04747,-4.39967 12.39115,-5.87015 l -2.42426,-7.16108 c 0,0 -2.03591,-6.15223 2.91891,-17.571287 2.39056,-0.547061 4.8042,-0.987813 7.23382,-1.320959 8.6709,8.930876 8.94079,15.405596 8.94079,15.405596 l 0.26315,7.55571 c 4.58306,-0.15962 9.16915,0.2135 13.66613,1.11187 l 1.48107,-7.4138 c 0,0 1.31296,-6.34594 11.3135,-13.757726 2.34381,0.721509 4.65446,1.546627 6.92514,2.472922 3.04379,12.069824 0.0402,17.812034 0.0402,17.812034 l -3.54995,6.67502 c 4.04885,2.15329 7.83396,4.76947 11.27928,7.79597 l 4.98954,-5.68001 c 0,0 4.31003,-4.83927 16.67664,-6.25779 1.66904,1.79675 3.25757,3.66665 4.76089,5.60418 -3.39891,11.97467 -8.87124,15.44576 -8.87124,15.44576 l -6.41186,4.00575 c 2.42976,3.88924 4.39967,8.04747 5.87015,12.39115 l 7.16108,-2.42426 c 0,0 6.15223,-2.03591 17.57129,2.91891 0.54706,2.39056 0.98781,4.8042 1.32096,7.23382 -8.93088,8.6709 -15.4056,8.94079 -15.4056,8.94079 l -7.55571,0.26315 c 0.15962,4.58306 -0.2135,9.16915 -1.11187,13.66613 l 7.4138,1.48107 c 0,0 6.34594,1.31296 13.75773,11.3135 -0.72151,2.34381 -1.54663,4.65446 -2.47293,6.92514 -12.06982,3.04379 -17.81203,0.0402 -17.81203,0.0402 l -6.67502,-3.54995 c -2.15329,4.04885 -4.76947,7.83396 -7.79597,11.27928 l 5.68001,4.98954 c 0,0 4.83927,4.31003 6.25779,16.67664 -1.79675,1.66904 -3.66665,3.25757 -5.60418,4.76089 -11.97467,-3.39891 -15.44576,-8.87124 -15.44576,-8.87124 l -4.00575,-6.41186 c -3.88924,2.42976 -8.04747,4.39967 -12.39115,5.87015 l 2.42426,7.16108 c 0,0 2.03591,6.15223 -2.91891,17.57129 -2.39056,0.54706 -4.8042,0.98781 -7.23382,1.32096 -8.6709,-8.93088 -8.94079,-15.4056 -8.94079,-15.4056 l -0.26315,-7.55571 c -4.58306,0.15962 -9.16915,-0.2135 -13.66613,-1.11187 l -1.48107,7.4138 c 0,0 -1.31296,6.34594 -11.3135,13.75773 -2.34381,-0.72151 -4.65446,-1.54663 -6.92514,-2.47293 -3.04379,-12.06982 -0.0402,-17.81203 -0.0402,-17.81203 l 3.54995,-6.67502 c -4.04885,-2.15329 -7.83396,-4.76947 -11.27928,-7.79597 l -4.98954,5.68001 c 0,0 -4.31003,4.83927 -16.67664,6.25779 -1.66904,-1.79675 -3.25757,-3.66665 -4.76089,-5.60418 3.39891,-11.97467 8.87124,-15.44576 8.87124,-15.44576 l 6.41186,-4.00575 c -2.42976,-3.88924 -4.39967,-8.04747 -5.87015,-12.39115 l -7.16108,2.42426 m 145.03417,6.56976 c 0,0 -3.14321,-5.7495 -0.55886,-18.10402 2.29451,-1.00517 4.63051,-1.91286 7.00173,-2.72063 10.24795,7.36834 11.81137,13.73169 11.81137,13.73169 l 1.67631,7.00529 c 4.47921,-1.07183 9.05944,-1.66575 13.66389,-1.77177 l -0.16582,-7.20115 c 0,0 -0.11124,-6.55165 7.91851,-16.29004 2.49882,0.17628 4.98907,0.45816 7.46406,0.84487 5.64988,11.28681 4.07702,17.64784 4.07702,17.64784 l -1.77122,6.98189 c 4.46425,1.13253 8.79585,2.73519 12.92216,4.7811 l 3.19972,-6.45336 c 0,0 2.9462,-5.8529 14.58185,-10.7442 2.13067,1.31735 4.20468,2.72421 6.21646,4.21682 -0.24252,12.6196 -4.59133,17.52106 -4.59133,17.52106 l -4.81299,5.35903 c 3.42659,3.07745 6.51723,6.50953 9.22012,10.23868 l 5.83223,-4.22718 c 0,0 5.32871,-3.81332 17.90466,-2.73699 1.27442,2.15662 2.45706,4.36618 3.54476,6.62274 -6.07937,11.0614 -12.20787,13.38043 -12.20787,13.38043 l -6.75216,2.50848 c 1.60393,4.31736 2.7456,8.79261 3.40586,13.35071 l 7.12866,-1.03262 c 0,0 6.49047,-0.90015 17.12573,5.89723 0.12621,2.50185 0.14655,5.00791 0.061,7.51148 -10.52349,6.96916 -17.02773,6.1745 -17.02773,6.1745 l -7.14448,-0.91673 c -0.58617,4.56821 -1.65502,9.06141 -3.18865,13.40424 l 6.792,2.39852 c 0,0 6.16535,2.21923 12.4235,13.18046 -1.05091,2.27393 -2.19753,4.50239 -3.43676,6.67942 -12.55682,1.28037 -17.94674,-2.44592 -17.94674,-2.44592 l -5.9001,-4.13194 c -2.64198,3.77255 -5.67649,7.25435 -9.05266,10.38703 l 4.89936,5.28018 c 0,0 4.42782,4.83021 4.8752,17.44421 -1.98729,1.52507 -4.03818,2.96542 -6.14718,4.31719 -11.71353,-4.70174 -14.75437,-10.50603 -14.75437,-10.50603 l -3.30407,-6.40056 c -4.09255,2.11264 -8.39756,3.78541 -12.84283,4.99027 l 1.88435,6.95222 c 0,0 1.67592,6.33465 -3.78996,17.7117 -2.46839,0.42685 -4.95373,0.74912 -7.44936,0.96595 -8.18681,-9.60673 -8.18195,-16.15933 -8.18195,-16.15933 l 0.0489,-7.20289 c -4.60556,-0.0313 -9.19483,-0.55072 -13.69086,-1.54969 l -1.56234,7.03158 c 0,0 -1.4599,6.38789 -11.58688,13.92165 -2.38402,-0.76916 -4.73444,-1.6388 -7.04498,-2.60659 -2.78459,-12.31093 0.26486,-18.11071 0.26486,-18.11071 l 3.39063,-6.35513 c -4.0635,-2.16799 -7.88569,-4.76069 -11.40247,-7.73465 l -4.65113,5.5001 c 0,0 -4.26128,4.97775 -16.72938,6.94233 -1.7535,-1.78897 -3.43056,-3.6513 -5.02668,-5.58199 3.25554,-12.19485 8.65098,-15.91315 8.65098,-15.91315 l 5.95564,-4.05149 c -2.59054,-3.80805 -4.77003,-7.88004 -6.50192,-12.14768 l -6.6744,2.70861 c 0,0 -6.08645,2.42726 -18.03939,-1.62741 -0.72127,-2.39895 -1.34076,-4.82732 -1.85682,-7.27861 8.54987,-9.28509 15.05528,-10.07009 15.05528,-10.07009 l 7.15627,-0.81969 c -0.52412,-4.57575 -0.56161,-9.19418 -0.11186,-13.77783 l -7.16863,-0.70339 c 0,0 -6.5173,-0.67928 -15.2168,-9.82433 0.4762,-2.45935 1.05618,-4.89746 1.73841,-7.3078 11.88553,-4.24821 18.01059,-1.92008 18.01059,-1.92008 l 6.71749,2.59988 c 1.66238,-4.29519 3.77546,-8.40203 6.30383,-12.25164 l -6.02063,-3.95426 c 0,0 -5.45509,-3.6302 -8.90821,-15.7706 1.56457,-1.95634 3.21117,-3.84565 4.93539,-5.66286 12.49836,1.76188 16.83989,6.66979 16.83989,6.66979 l 4.73982,5.42386 c 3.46804,-3.03066 7.24762,-5.68508 11.27539,-7.91876 l -3.49337,-6.29924 m 15.66413,144.54684 c 0,0 0.43806,-6.40364 9.44813,-14.758 2.3567,0.40833 4.69309,0.92623 7.00159,1.55202 4.63578,11.3792 2.32682,17.36813 2.32682,17.36813 l -2.90619,7.36486 c 4.23405,1.67077 8.23669,3.8769 11.91026,6.56456 l 4.67502,-6.38995 c 0,0 3.8306,-5.15025 15.92705,-7.30717 1.76183,1.61763 3.44733,3.31647 5.05102,5.09099 -2.25218,12.07908 -7.43246,15.86897 -7.43246,15.86897 l -6.42659,4.62451 c 2.65862,3.69464 4.83314,7.71455 6.47048,11.96163 l 7.38754,-2.84806 c 0,0 6.00694,-2.26168 17.34925,2.46364 0.60758,2.31335 1.10705,4.65375 1.49679,7.01359 -8.42511,8.94395 -14.832,9.33154 -14.832,9.33154 l -7.9066,0.41591 c 0.23911,4.54548 -0.1049,9.10288 -1.02362,13.56097 l 7.75457,1.59807 c 0,0 6.27612,1.34494 13.26317,11.45225 -0.73956,2.27459 -1.58469,4.5135 -2.53265,6.70944 -11.92311,2.96917 -17.52248,-0.1686 -17.52248,-0.1686 l -6.87631,-3.92474 c -2.25633,3.95317 -5.00964,7.60111 -8.19275,10.85479 l 5.65959,5.53682 c 0,0 4.55267,4.52457 4.96613,16.80486 -1.8519,1.51368 -3.77332,2.94025 -5.758,4.27509 -11.63561,-3.9483 -14.6497,-9.61521 -14.6497,-9.61521 l -3.66284,-7.01931 c -4.03539,2.10576 -8.32385,3.68605 -12.76072,4.7023 l 1.76771,7.71767 c 0,0 1.38379,6.26767 -4.90761,16.82205 -2.37628,0.27217 -4.76394,0.43348 -7.15523,0.48342 -7.65389,-9.61221 -7.12574,-16.00905 -7.12574,-16.00905 l 0.71355,-7.88531 c -4.53325,-0.41022 -8.9953,-1.39931 -13.27726,-2.94314 l -2.68539,7.44822 c 0,0 -2.22444,6.02083 -13.22323,11.49835 -2.1462,-1.05575 -4.24204,-2.21091 -6.28072,-3.46173 -1.24211,-12.22431 2.6606,-17.32014 2.6606,-17.32014 l 4.86339,-6.24777 c -3.59183,-2.79595 -6.8108,-6.04039 -9.57836,-9.65415 l -6.28591,4.814 c 0,0 -5.12642,3.86243 -17.34056,2.52401 -1.23472,-2.04847 -2.37333,-4.15335 -3.41212,-6.3078 5.56403,-10.95528 11.6022,-13.1322 11.6022,-13.1322 l 7.46915,-2.62661 c -1.51004,-4.29399 -2.46393,-8.7637 -2.83841,-13.30004 l -7.89068,0.65138 c 0,0 -6.40081,0.47772 -15.95239,-7.25169 0.0688,-2.39082 0.2489,-4.77713 0.53979,-7.15119 10.60363,-6.20803 16.8602,-4.77488 16.8602,-4.77488 l 7.7035,1.82848 c 1.05119,-4.42873 2.66523,-8.7046 4.80273,-12.72327 l -6.99023,-3.71805 c 0,0 -5.64298,-3.05865 -9.49945,-14.72502 1.35043,-1.9741 2.7921,-3.88422 4.32033,-5.72413 12.27665,0.51023 16.7652,5.09842 16.7652,5.09842 l 5.49204,5.70305 c 3.27867,-3.15737 6.94819,-5.88184 10.91903,-8.10694 l -3.87043,-6.90703 c 0,0 -3.09354,-5.62393 -0.0305,-17.52327 2.20333,-0.93062 4.44883,-1.75808 6.72919,-2.47969 10.05193,7.06649 11.34736,13.35301 11.34736,13.35301 l 1.53691,7.76693 c 4.46519,-0.88356 9.02515,-1.19164 13.56861,-0.91672 l 0.47822,-7.90307"
- style="fill:none;fill-rule:evenodd;stroke:#008000;stroke-width:1.06666648px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.06666648px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 166.7472,92.971758 73.03748,107.090872 58.42998,-9.73554 42.60519,49.89462 101.03519,-64.49791 116.85996,91.27062 -23.12854,142.38219"
- id="path2300" />
- <ellipse
- ry="9.9047623"
- rx="8.589035"
- cy="96.99585"
- cx="168.76192"
- id="path2306"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:1.0666666;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(71.619047,102.85714)"
- id="use2310"
- xlink:href="#path2306"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(57.142858,-6.8571428)"
- id="use2312"
- xlink:href="#use2310"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(43.428572,45.714286)"
- id="use2314"
- xlink:href="#use2312"
- y="0"
- x="0" />
- <use
- height="1052.3622"
- width="744.09448"
- transform="translate(99.809524,-60.647619)"
- id="use2316"
- xlink:href="#use2314"
- y="0"
- x="0" />
- <flowRoot
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="flowRoot2322"
- xml:space="preserve"><flowRegion
- style="stroke-width:1.06666672px"
- id="flowRegion2324"><rect
- style="stroke-width:1.13777781px"
- y="43.662518"
- x="77.714287"
- height="50.285713"
- width="167.61906"
- id="rect2326" /></flowRegion><flowPara
- style="font-size:17.06666756px;stroke-width:1.06666672px"
- id="flowPara2328">The first point defines the start angle</flowPara></flowRoot> <flowRoot
- xml:space="preserve"
- id="flowRoot2330"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
- style="stroke-width:1.06666672px"
- id="flowRegion2332"><rect
- style="stroke-width:1.13777781px"
- id="rect2334"
- width="191.2381"
- height="50.285713"
- x="-24.913132"
- y="208.99586" /></flowRegion><flowPara
- id="flowPara2336"
- style="font-size:17.06666756px;stroke-width:1.06666672px">The 2nd point defines the center of the 1st gear</flowPara></flowRoot> <flowRoot
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="flowRoot2338"
- xml:space="preserve"><flowRegion
- style="stroke-width:1.06666672px"
- id="flowRegion2340"><rect
- style="stroke-width:1.13777781px"
- y="32.233952"
- x="308.57144"
- height="50.285713"
- width="191.2381"
- id="rect2342" /></flowRegion><flowPara
- style="font-size:17.06666756px;stroke-width:1.06666672px"
- id="flowPara2344">The 3rd point defines the radius of the 1st gear</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- id="path2346"
- d="m 147.21935,224.00421 84.3997,-24.91312"
- style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 147.21935,224.00421 84.3997,-24.91312"
- id="path2348"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- id="path2350"
- d="M 298.60754,183.05936 328.5937,74.640297"
- style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <flowRoot
- xml:space="preserve"
- id="flowRoot2352"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"><flowRegion
- style="stroke-width:1.06666672px"
- id="flowRegion2354"><rect
- style="stroke-width:1.13777781px"
- id="rect2356"
- width="191.2381"
- height="50.285713"
- x="304.26144"
- y="309.15042" /></flowRegion><flowPara
- id="flowPara2358"
- style="font-size:17.06666756px;stroke-width:1.06666672px">More points define the centers of more gears</flowPara></flowRoot> <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 406.16106,304.76226 439.95674,187.96225"
- id="path2360"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- id="path2362"
- d="m 362.7325,306.66703 -18.77575,-58.5143"
- style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
+ id="layer1">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#008000;stroke-width:0.99999987999999995px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 188.451,150.115 C 188.451,150.115 187.467,149.085 186.466,146.531 C 185.466,143.977 184.47,139.893 184.6,134.408 C 186.335,133.096 188.135,131.868 189.99,130.732 C 195.144,132.613 198.583,135.031 200.595,136.895 C 202.607,138.759 203.207,140.051 203.207,140.051 L 206.417,147.113 C 210.25,145.371 214.333,144.177 218.501,143.581 L 217.402,135.901 C 217.402,135.901 217.211,134.49 217.903,131.836 C 218.594,129.181 220.189,125.292 223.518,120.931 C 225.693,120.889 227.871,120.954 230.04,121.125 C 233.103,125.676 234.464,129.654 234.997,132.345 C 235.529,135.035 235.255,136.433 235.255,136.433 L 233.701,144.033 C 237.826,144.877 241.83,146.311 245.553,148.278 L 249.178,141.419 C 249.178,141.419 249.853,140.166 251.973,138.425 C 254.092,136.684 257.669,134.475 262.925,132.903 C 264.71,134.148 266.433,135.481 268.088,136.894 C 267.891,142.377 266.654,146.394 265.503,148.884 C 264.352,151.374 263.309,152.344 263.309,152.344 L 257.584,157.579 C 260.426,160.686 262.822,164.2 264.678,167.98 L 271.642,164.561 C 271.642,164.561 272.925,163.944 275.663,163.781 C 278.401,163.619 282.593,163.934 287.769,165.752 C 288.481,167.808 289.092,169.899 289.6,172.015 C 286.218,176.335 282.856,178.858 280.461,180.196 C 278.067,181.534 276.653,181.705 276.653,181.705 L 268.944,182.575 C 269.417,186.76 269.29,191.011 268.57,195.16 L 276.213,196.487 C 276.213,196.487 277.614,196.742 279.925,198.22 C 282.236,199.698 285.442,202.417 288.56,206.93 C 287.928,209.012 287.193,211.063 286.36,213.073 C 281.085,214.58 276.882,214.645 274.158,214.32 C 271.435,213.995 270.19,213.303 270.19,213.303 L 263.442,209.476 C 261.365,213.138 258.764,216.503 255.742,219.436 L 261.145,225.003 C 261.145,225.003 262.129,226.033 263.13,228.587 C 264.131,231.14 265.126,235.225 264.996,240.709 C 263.261,242.022 261.461,243.249 259.606,244.386 C 254.453,242.504 251.014,240.086 249.001,238.223 C 246.989,236.359 246.389,235.067 246.389,235.067 L 243.18,228.004 C 239.346,229.747 235.264,230.94 231.095,231.537 L 232.195,239.216 C 232.195,239.216 232.385,240.627 231.694,243.282 C 231.002,245.936 229.407,249.826 226.078,254.186 C 223.903,254.228 221.725,254.163 219.556,253.992 C 216.493,249.441 215.132,245.464 214.599,242.773 C 214.067,240.082 214.341,238.684 214.341,238.684 L 215.896,231.084 C 211.77,230.24 207.766,228.806 204.043,226.839 L 200.419,233.698 C 200.419,233.698 199.743,234.952 197.624,236.693 C 195.504,238.434 191.927,240.643 186.671,242.214 C 184.886,240.969 183.163,239.637 181.509,238.223 C 181.705,232.741 182.942,228.723 184.093,226.233 C 185.244,223.743 186.287,222.774 186.287,222.774 L 192.012,217.539 C 189.171,214.431 186.774,210.917 184.918,207.137 L 177.955,210.556 C 177.955,210.556 176.671,211.174 173.933,211.336 C 171.195,211.499 167.003,211.183 161.827,209.365 C 161.115,207.309 160.504,205.218 159.996,203.102 C 163.378,198.783 166.74,196.259 169.135,194.921 C 171.529,193.583 172.943,193.412 172.943,193.412 L 180.652,192.542 C 180.18,188.358 180.306,184.106 181.027,179.958 L 173.383,178.63 C 173.383,178.63 171.982,178.375 169.671,176.897 C 167.361,175.419 164.155,172.7 161.036,168.187 C 161.668,166.105 162.403,164.054 163.236,162.044 C 168.511,160.537 172.714,160.472 175.438,160.797 C 178.162,161.122 179.406,161.815 179.406,161.815 L 186.154,165.642 C 188.231,161.979 190.833,158.614 193.854,155.681 L 188.451,150.115 M 278.465,232.789 C 278.465,232.789 277.085,233.029 274.495,232.351 C 271.906,231.674 268.117,230.05 264.003,226.623 C 263.952,224.62 264.01,222.614 264.175,220.617 C 268.478,217.431 272.354,216.027 274.978,215.499 C 277.602,214.971 278.967,215.289 278.967,215.289 L 287.153,217.291 C 288.11,213.376 289.786,209.638 292.071,206.318 L 285.129,201.54 C 285.129,201.54 283.983,200.733 282.631,198.423 C 281.279,196.112 279.748,192.286 279.263,186.954 C 280.643,185.501 282.102,184.123 283.631,182.828 C 288.927,183.618 292.66,185.366 294.889,186.848 C 297.118,188.33 297.858,189.52 297.858,189.52 L 302.23,196.724 C 305.676,194.633 309.504,193.174 313.467,192.442 L 311.937,184.155 C 311.937,184.155 311.697,182.774 312.375,180.185 C 313.053,177.595 314.676,173.806 318.103,169.693 C 320.106,169.642 322.112,169.699 324.109,169.865 C 327.295,174.168 328.699,178.043 329.227,180.667 C 329.756,183.292 329.438,184.656 329.438,184.656 L 327.435,192.842 C 331.35,193.8 335.089,195.475 338.409,197.76 L 343.187,190.818 C 343.187,190.818 343.993,189.672 346.304,188.32 C 348.614,186.968 352.441,185.437 357.773,184.952 C 359.226,186.332 360.603,187.791 361.898,189.32 C 361.108,194.616 359.361,198.349 357.879,200.578 C 356.397,202.808 355.207,203.547 355.207,203.547 L 348.003,207.92 C 350.094,211.365 351.553,215.193 352.285,219.157 L 360.572,217.626 C 360.572,217.626 361.952,217.386 364.542,218.064 C 367.132,218.742 370.92,220.365 375.034,223.792 C 375.085,225.796 375.027,227.802 374.862,229.799 C 370.559,232.984 366.683,234.388 364.059,234.917 C 361.435,235.445 360.071,235.127 360.071,235.127 L 351.884,233.124 C 350.927,237.04 349.251,240.778 346.966,244.098 L 353.909,248.876 C 353.909,248.876 355.054,249.682 356.406,251.993 C 357.758,254.303 359.289,258.13 359.775,263.462 C 358.394,264.915 356.935,266.293 355.406,267.588 C 350.111,266.798 346.378,265.05 344.148,263.568 C 341.919,262.086 341.179,260.896 341.179,260.896 L 336.807,253.692 C 333.361,255.783 329.533,257.242 325.57,257.974 L 327.1,266.261 C 327.1,266.261 327.34,267.641 326.662,270.231 C 325.984,272.821 324.361,276.609 320.934,280.723 C 318.931,280.774 316.925,280.717 314.928,280.551 C 311.742,276.248 310.338,272.373 309.81,269.748 C 309.281,267.124 309.6,265.76 309.6,265.76 L 311.602,257.574 C 307.687,256.616 303.949,254.941 300.628,252.656 L 295.851,259.598 C 295.851,259.598 295.044,260.743 292.734,262.095 C 290.423,263.447 286.596,264.978 281.264,265.464 C 279.812,264.084 278.434,262.625 277.139,261.095 C 277.929,255.8 279.677,252.067 281.159,249.838 C 282.641,247.608 283.83,246.869 283.83,246.869 L 291.035,242.496 C 288.943,239.051 287.485,235.222 286.753,231.259 L 278.465,232.789 M 354.925,184.821 C 354.925,184.821 353.539,185.28 350.716,185.163 C 347.894,185.046 343.635,184.334 338.452,182.084 C 337.939,179.844 337.526,177.58 337.213,175.303 C 341.268,171.367 344.999,169.196 347.598,168.088 C 350.198,166.981 351.656,166.921 351.656,166.921 L 358.739,166.674 C 358.59,162.382 358.941,158.073 359.782,153.862 L 352.831,152.474 C 352.831,152.474 351.402,152.179 349.016,150.666 C 346.63,149.153 343.298,146.407 339.934,141.867 C 340.61,139.67 341.384,137.503 342.252,135.375 C 347.731,133.993 352.048,133.979 354.853,134.319 C 357.658,134.66 358.951,135.337 358.951,135.337 L 365.209,138.665 C 367.225,134.874 369.683,131.317 372.517,128.091 L 367.192,123.413 C 367.192,123.413 366.102,122.443 364.792,119.94 C 363.482,117.436 361.97,113.393 361.326,107.779 C 363.01,106.214 364.763,104.725 366.579,103.316 C 372.016,104.859 375.761,107.005 378.02,108.702 C 380.279,110.4 381.06,111.632 381.06,111.632 L 384.815,117.643 C 388.457,115.368 392.364,113.517 396.432,112.14 L 394.159,105.427 C 394.159,105.427 393.7,104.041 393.817,101.218 C 393.934,98.3955 394.646,94.1374 396.896,88.9536 C 399.136,88.4408 401.4,88.0275 403.677,87.7152 C 407.614,91.7695 409.785,95.5011 410.892,98.1004 C 411.999,100.7 412.059,102.158 412.059,102.158 L 412.306,109.241 C 416.598,109.092 420.907,109.443 425.118,110.284 L 426.507,103.333 C 426.507,103.333 426.802,101.904 428.315,99.5179 C 429.828,97.1318 432.573,93.8002 437.113,90.4355 C 439.31,91.1118 441.477,91.8856 443.605,92.7539 C 444.987,98.2331 445.001,102.55 444.661,105.355 C 444.32,108.16 443.643,109.453 443.643,109.453 L 440.315,115.71 C 444.106,117.727 447.663,120.185 450.889,123.019 L 455.567,117.694 C 455.567,117.694 456.537,116.604 459.04,115.294 C 461.544,113.984 465.587,112.471 471.201,111.828 C 472.766,113.512 474.255,115.265 475.665,117.081 C 474.122,122.517 471.975,126.263 470.278,128.522 C 468.581,130.781 467.348,131.562 467.348,131.562 L 461.337,135.317 C 463.612,138.959 465.463,142.866 466.84,146.934 L 473.553,144.661 C 473.553,144.661 474.939,144.202 477.762,144.319 C 480.585,144.436 484.843,145.148 490.027,147.398 C 490.539,149.638 490.953,151.902 491.265,154.179 C 487.211,158.116 483.479,160.287 480.88,161.394 C 478.28,162.501 476.822,162.561 476.822,162.561 L 469.739,162.808 C 469.888,167.1 469.538,171.409 468.696,175.62 L 475.647,177.009 C 475.647,177.009 477.076,177.304 479.462,178.817 C 481.848,180.329 485.18,183.075 488.545,187.615 C 487.868,189.812 487.095,191.979 486.226,194.107 C 480.747,195.489 476.43,195.503 473.625,195.163 C 470.82,194.822 469.527,194.145 469.527,194.145 L 463.27,190.817 C 461.253,194.608 458.795,198.165 455.961,201.391 L 461.286,206.069 C 461.286,206.069 462.376,207.039 463.686,209.542 C 464.996,212.046 466.509,216.089 467.153,221.703 C 465.468,223.268 463.715,224.757 461.899,226.167 C 456.463,224.624 452.717,222.477 450.458,220.78 C 448.199,219.083 447.418,217.85 447.418,217.85 L 443.663,211.839 C 440.021,214.114 436.114,215.965 432.046,217.342 L 434.319,224.055 C 434.319,224.055 434.778,225.441 434.661,228.264 C 434.544,231.087 433.832,235.345 431.582,240.529 C 429.342,241.041 427.078,241.455 424.801,241.767 C 420.865,237.713 418.694,233.981 417.586,231.382 C 416.479,228.782 416.419,227.324 416.419,227.324 L 416.172,220.241 C 411.88,220.39 407.571,220.04 403.36,219.198 L 401.972,226.149 C 401.972,226.149 401.677,227.578 400.164,229.964 C 398.651,232.35 395.905,235.682 391.365,239.047 C 389.168,238.37 387.001,237.596 384.873,236.728 C 383.491,231.249 383.477,226.932 383.817,224.127 C 384.158,221.322 384.835,220.029 384.835,220.029 L 388.163,213.772 C 384.372,211.755 380.815,209.297 377.589,206.463 L 372.911,211.788 C 372.911,211.788 371.941,212.878 369.438,214.188 C 366.934,215.498 362.891,217.011 357.277,217.655 C 355.712,215.97 354.223,214.217 352.814,212.401 C 354.357,206.965 356.503,203.219 358.2,200.96 C 359.898,198.701 361.13,197.92 361.13,197.92 L 367.142,194.165 C 364.866,190.523 363.015,186.616 361.638,182.548 L 354.925,184.821 M 490.894,190.98 C 490.894,190.98 490.184,189.682 489.755,186.844 C 489.326,184.006 489.195,179.627 490.37,174.008 C 492.521,173.065 494.712,172.214 496.934,171.457 C 501.595,174.808 504.456,178.127 506.055,180.51 C 507.655,182.893 508.008,184.33 508.008,184.33 L 509.579,190.898 C 513.774,189.894 518.076,189.336 522.389,189.237 L 522.234,182.486 C 522.234,182.486 522.208,181.006 523.147,178.294 C 524.086,175.581 526.005,171.643 529.657,167.214 C 531.999,167.379 534.335,167.643 536.655,168.006 C 539.224,173.139 540.215,177.407 540.524,180.261 C 540.833,183.114 540.477,184.551 540.477,184.551 L 538.816,191.096 C 542.998,192.157 547.066,193.662 550.931,195.579 L 553.931,189.529 C 553.931,189.529 554.596,188.207 556.688,186.241 C 558.78,184.276 562.309,181.681 567.601,179.456 C 569.598,180.691 571.543,182.01 573.429,183.409 C 573.319,189.149 572.212,193.388 571.16,196.058 C 570.107,198.728 569.125,199.835 569.125,199.835 L 564.613,204.859 C 567.822,207.742 570.725,210.965 573.256,214.458 L 578.724,210.495 C 578.724,210.495 579.927,209.634 582.693,208.865 C 585.459,208.097 589.79,207.44 595.51,207.929 C 596.704,209.951 597.813,212.023 598.833,214.138 C 596.068,219.169 593.118,222.408 590.945,224.283 C 588.772,226.159 587.388,226.682 587.388,226.682 L 581.058,229.034 C 582.56,233.077 583.633,237.281 584.251,241.55 L 590.934,240.582 C 590.934,240.582 592.4,240.378 595.206,240.983 C 598.011,241.589 602.152,243.019 606.989,246.111 C 607.108,248.456 607.127,250.806 607.047,253.153 C 602.26,256.322 598.143,257.82 595.348,258.47 C 592.552,259.121 591.083,258.941 591.083,258.941 L 584.385,258.082 C 583.836,262.36 582.832,266.581 581.396,270.648 L 587.763,272.897 C 587.763,272.897 589.156,273.398 591.359,275.237 C 593.562,277.077 596.564,280.268 599.41,285.254 C 598.425,287.385 597.35,289.475 596.188,291.516 C 590.477,292.098 586.136,291.51 583.358,290.787 C 580.58,290.064 579.363,289.222 579.363,289.222 L 573.832,285.349 C 571.357,288.882 568.507,292.152 565.345,295.087 L 569.938,300.037 C 569.938,300.037 570.938,301.127 572.034,303.78 C 573.13,306.433 574.305,310.654 574.509,316.391 C 572.646,317.82 570.723,319.171 568.746,320.438 C 563.418,318.3 559.847,315.762 557.723,313.831 C 555.6,311.9 554.914,310.589 554.914,310.589 L 551.816,304.588 C 547.983,306.567 543.939,308.138 539.776,309.267 L 541.542,315.784 C 541.542,315.784 541.921,317.215 541.659,320.073 C 541.396,322.931 540.475,327.214 537.989,332.389 C 535.676,332.789 533.345,333.091 531.006,333.295 C 527.282,328.925 525.299,325.019 524.316,322.322 C 523.333,319.625 523.335,318.145 523.335,318.145 L 523.381,311.392 C 519.067,311.363 514.757,310.875 510.546,309.94 L 509.081,316.532 C 509.081,316.532 508.752,317.974 507.191,320.383 C 505.63,322.792 502.824,326.157 498.218,329.583 C 495.984,328.862 493.779,328.047 491.614,327.14 C 490.347,321.54 490.407,317.16 490.79,314.315 C 491.173,311.47 491.862,310.161 491.862,310.161 L 495.041,304.203 C 491.235,302.172 487.645,299.737 484.351,296.952 L 479.99,302.108 C 479.99,302.108 479.028,303.232 476.527,304.64 C 474.025,306.048 469.977,307.723 464.307,308.616 C 462.663,306.94 461.09,305.193 459.594,303.383 C 461.075,297.837 463.163,293.986 464.825,291.645 C 466.486,289.304 467.704,288.465 467.704,288.465 L 473.288,284.666 C 470.861,281.1 468.814,277.275 467.192,273.278 L 460.935,275.817 C 460.935,275.817 459.561,276.366 456.691,276.45 C 453.822,276.534 449.459,276.136 444.023,274.292 C 443.347,272.043 442.766,269.766 442.282,267.468 C 446.171,263.245 449.81,260.806 452.369,259.505 C 454.927,258.204 456.397,258.027 456.397,258.027 L 463.106,257.259 C 462.615,252.973 462.579,248.635 463.001,244.342 L 456.28,243.683 C 456.28,243.683 454.808,243.53 452.229,242.271 C 449.649,241.011 445.971,238.632 442.014,234.472 C 442.461,232.167 443.005,229.881 443.644,227.621 C 449.05,225.689 453.406,225.22 456.276,225.258 C 459.146,225.295 460.529,225.821 460.529,225.821 L 466.827,228.259 C 468.384,224.236 470.368,220.378 472.737,216.773 L 467.092,213.066 C 467.092,213.066 465.86,212.246 464.161,209.932 C 462.462,207.619 460.311,203.802 458.741,198.281 C 460.207,196.447 461.751,194.675 463.368,192.972 C 469.052,193.773 473.127,195.382 475.651,196.749 C 478.175,198.116 479.155,199.225 479.155,199.225 L 483.599,204.309 C 486.847,201.471 490.397,198.978 494.169,196.886 L 490.894,190.98 M 505.579,326.493 C 505.579,326.493 505.677,325.055 506.866,322.54 C 508.056,320.024 510.356,316.441 514.437,312.657 C 516.646,313.04 518.837,313.526 521.001,314.112 C 523.101,319.266 523.671,323.486 523.686,326.268 C 523.702,329.051 523.182,330.395 523.182,330.395 L 520.458,337.299 C 524.422,338.864 528.184,340.937 531.624,343.454 L 536.007,337.463 C 536.007,337.463 536.865,336.306 539.226,334.833 C 541.587,333.36 545.459,331.59 550.938,330.613 C 552.59,332.129 554.17,333.722 555.673,335.385 C 554.653,340.856 552.852,344.714 551.361,347.064 C 549.869,349.413 548.706,350.263 548.706,350.263 L 542.681,354.598 C 545.17,358.057 547.214,361.836 548.747,365.812 L 555.673,363.142 C 555.673,363.142 557.02,362.633 559.803,362.67 C 562.585,362.708 566.8,363.311 571.937,365.452 C 572.507,367.62 572.975,369.815 573.341,372.027 C 569.525,376.078 565.923,378.35 563.399,379.519 C 560.874,380.689 559.436,380.775 559.436,380.775 L 552.023,381.165 C 552.247,385.421 551.924,389.705 551.064,393.878 L 558.334,395.377 C 558.334,395.377 559.743,395.677 562.063,397.213 C 564.384,398.749 567.603,401.535 570.768,406.113 C 570.075,408.245 569.282,410.345 568.393,412.403 C 562.993,413.748 558.735,413.712 555.979,413.331 C 553.222,412.951 551.966,412.245 551.966,412.245 L 545.52,408.566 C 543.407,412.267 540.819,415.696 537.839,418.742 L 543.145,423.933 C 543.145,423.933 544.167,424.948 545.289,427.494 C 546.411,430.041 547.613,434.125 547.8,439.687 C 546.065,441.106 544.263,442.444 542.402,443.695 C 537.132,441.907 533.57,439.575 531.457,437.764 C 529.344,435.954 528.668,434.681 528.668,434.681 L 525.234,428.1 C 521.456,430.072 517.425,431.557 513.271,432.509 L 514.928,439.744 C 514.928,439.744 515.24,441.151 514.807,443.9 C 514.374,446.648 513.177,450.734 510.327,455.515 C 508.1,455.77 505.861,455.921 503.619,455.968 C 500.153,451.614 498.417,447.727 497.618,445.061 C 496.819,442.395 496.939,440.96 496.939,440.96 L 497.608,433.567 C 493.364,433.183 489.169,432.253 485.161,430.808 L 482.643,437.791 C 482.643,437.791 482.145,439.142 480.295,441.221 C 478.444,443.299 475.228,446.089 470.246,448.57 C 468.235,447.581 466.269,446.497 464.358,445.325 C 463.795,439.788 464.437,435.579 465.206,432.905 C 465.975,430.23 466.852,429.087 466.852,429.087 L 471.412,423.23 C 468.049,420.612 465.023,417.563 462.432,414.179 L 456.539,418.692 C 456.539,418.692 455.389,419.56 452.709,420.308 C 450.029,421.057 445.815,421.665 440.282,421.059 C 439.125,419.139 438.057,417.165 437.083,415.145 C 439.604,410.183 442.419,406.989 444.512,405.155 C 446.605,403.321 447.96,402.834 447.96,402.834 L 454.963,400.371 C 453.549,396.351 452.652,392.149 452.302,387.902 L 444.904,388.513 C 444.904,388.513 443.468,388.621 440.808,387.802 C 438.149,386.982 434.275,385.216 429.949,381.715 C 430.013,379.474 430.182,377.236 430.455,375.01 C 435.258,372.199 439.353,371.034 442.105,370.622 C 444.857,370.211 446.261,370.534 446.261,370.534 L 453.483,372.248 C 454.468,368.102 455.985,364.082 457.986,360.32 L 451.433,356.834 C 451.433,356.834 450.165,356.149 448.372,354.022 C 446.578,351.894 444.274,348.314 442.527,343.03 C 443.793,341.179 445.145,339.388 446.577,337.663 C 452.138,337.894 456.213,339.128 458.75,340.27 C 461.288,341.412 462.295,342.443 462.295,342.443 L 467.443,347.79 C 470.513,344.834 473.962,342.273 477.68,340.189 L 474.051,333.714 C 474.051,333.714 473.356,332.452 472.997,329.693 C 472.638,326.933 472.635,322.676 474.023,317.286 C 476.088,316.414 478.194,315.638 480.331,314.961 C 484.884,318.162 487.645,321.403 489.163,323.736 C 490.68,326.068 490.97,327.48 490.97,327.48 L 492.41,334.761 C 496.591,333.934 500.877,333.644 505.131,333.902 L 505.579,326.493"
+ id="path2208"
+ inkscape:path-effect="#path-effect2210"
+ inkscape:original-d="M 156.3255,87.161023 L 224.79814,187.55872 L 279.57624,178.43165 L 319.51861,225.20785 L 414.2391,164.74106 L 523.79531,250.30727 L 502.11231,383.79057" />
+ <path
+ id="path2300"
+ d="M 156.3255,87.161023 L 224.79814,187.55872 L 279.57624,178.43165 L 319.51861,225.20785 L 414.2391,164.74106 L 523.79531,250.30727 L 502.11231,383.79057"
+ style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.99999987999999995px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:2.6989224;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ id="path2306"
+ sodipodi:cx="57.5"
+ sodipodi:cy="90.219322"
+ sodipodi:rx="21.785715"
+ sodipodi:ry="25"
+ d="M 79.285715,90.219322 A 21.785715,25 0 1 1 35.714285,90.219322 A 21.785715,25 0 1 1 79.285715,90.219322 z"
+ transform="matrix(0.3696101,0,0,0.3714286,136.96171,57.423574)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path2306"
+ id="use2310"
+ transform="translate(67.142857,96.428571)"
+ width="744.09448"
+ height="1052.3622" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#use2310"
+ id="use2312"
+ transform="translate(53.571429,-6.4285714)"
+ width="744.09448"
+ height="1052.3622" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#use2312"
+ id="use2314"
+ transform="translate(40.714286,42.857143)"
+ width="744.09448"
+ height="1052.3622" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#use2314"
+ id="use2316"
+ transform="translate(93.571429,-56.857143)"
+ width="744.09448"
+ height="1052.3622" />
+ <flowRoot
+ xml:space="preserve"
+ id="flowRoot2322"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ transform="translate(15.714286,16.428571)"><flowRegion
+ id="flowRegion2324"><rect
+ id="rect2326"
+ width="157.14287"
+ height="47.142857"
+ x="57.142857"
+ y="24.505039" /></flowRegion><flowPara
+ id="flowPara2328"
+ style="font-size:16px">The first point defines the start angle</flowPara></flowRoot> <flowRoot
+ transform="translate(-80.498917,171.42858)"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ id="flowRoot2330"
+ xml:space="preserve"><flowRegion
+ id="flowRegion2332"><rect
+ y="24.505039"
+ x="57.142857"
+ height="47.142857"
+ width="179.28572"
+ id="rect2334" /></flowRegion><flowPara
+ style="font-size:16px"
+ id="flowPara2336">The 2nd point defines the center of the 1st gear</flowPara></flowRoot> <flowRoot
+ xml:space="preserve"
+ id="flowRoot2338"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ transform="translate(232.14286,5.714291)"><flowRegion
+ id="flowRegion2340"><rect
+ id="rect2342"
+ width="179.28572"
+ height="47.142857"
+ x="57.142857"
+ y="24.505039" /></flowRegion><flowPara
+ id="flowPara2344"
+ style="font-size:16px">The 3rd point defines the radius of the 1st gear</flowPara></flowRoot> <path
+ style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 138.01814,210.00395 L 217.14286,186.6479"
+ id="path2346"
+ sodipodi:nodetypes="cc" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path2348"
+ d="M 138.01814,210.00395 L 217.14286,186.6479"
+ style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 279.94457,171.61815 L 308.05659,69.975278"
+ id="path2350"
+ sodipodi:nodetypes="cc" />
+ <flowRoot
+ transform="translate(228.10225,265.32349)"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ id="flowRoot2352"
+ xml:space="preserve"><flowRegion
+ id="flowRegion2354"><rect
+ y="24.505039"
+ x="57.142857"
+ height="47.142857"
+ width="179.28572"
+ id="rect2356" /></flowRegion><flowPara
+ style="font-size:16px"
+ id="flowPara2358">More points define the centers of more gears</flowPara></flowRoot> <path
+ sodipodi:nodetypes="cc"
+ id="path2360"
+ d="M 380.77599,285.71462 L 412.45944,176.21461"
+ style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 340.06172,287.50034 L 322.45945,232.64318"
+ id="path2362"
+ sodipodi:nodetypes="cc" />
</g>
</svg>
diff --git a/share/examples/live-path-effects-pathalongpath.svg b/share/examples/live-path-effects-pathalongpath.svg
index 20f570d56..0b66342f4 100644
--- a/share/examples/live-path-effects-pathalongpath.svg
+++ b/share/examples/live-path-effects-pathalongpath.svg
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
@@ -9,12 +8,13 @@
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="896.24622"
- height="621.69763"
+ width="744.09448"
+ height="1052.3622"
id="svg2"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- sodipodi:docname="live-path-effects-pathalongpath.svg"
+ inkscape:version="0.92"
+ sodipodi:docbase="C:\Documents and Settings\jf\Mes documents"
+ sodipodi:docname="live-path-effects-skeletal.svg"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
@@ -23,55 +23,46 @@
effect="skeletal"
id="path-effect2461"
origin="0.1,0.2"
- pattern="m 119.92529,-0.41956101 c 0,2.07947001 0.66149,2.85084001 1.40009,4.18464001 -0.55824,2.35879 -0.9151,4.73581 1.05007,7.32315 -0.70445,1.91797 0.19375,3.83593 1.57509,5.75389 -0.23147,1.84016 0.97303,3.44189 2.10014,5.05646 0.2025,2.09233 1.31475,4.18466 3.1502,6.27698 -16.62605,-5.23081 -17.73136,-18.00712 -20.30128,-20.40018 -1.3648,-1.27087 -2.84182,-1.12057 -3.89543,-2.71105 -1.05361,-1.59048 -1.68379,-4.92175001 -2.75499,-5.48407001 1.0712,-0.56232 1.70138,-3.89358999 2.75499,-5.48407999 1.05361,-1.59048 2.53063,-1.44017 3.89543,-2.71104 2.56992,-2.39306 3.67523,-15.16937 20.30128,-20.40018 -1.83545,2.09232 -2.9477,4.18465 -3.1502,6.27698 -1.12711,1.61457 -2.33161,3.21629 -2.10014,5.05645 -1.38134,1.91797 -2.27954,3.83593 -1.57509,5.7539 -1.96517,2.58734 -1.60831,4.96436 -1.05007,7.32314 -0.7386,1.33381 -1.40009,2.10518 -1.40009,4.18464999 M 102.24917,-9.399491 c -0.50999,1.05008 -0.84165,2.35643 -0.91048,3.69661 m -3.406928,-6.6709 c -0.73499,1.62646 -1.24811,3.22404 -1.4144,4.76238 m -55.721236,-24.34024 c -4.402832,5.37781 -6.306585,11.24808 -7.637983,16.5111 m 59.156689,6.40841 c 0.29264,-2.0932 0.70182,-4.27943 1.87327,-6.2821 m -24.721506,0.51427 c 1.05952,-4.94994 2.7664,-10.37401 6.56931,-14.90154 m 0.21143,16.15134 c 0.98512,-4.10804 2.29883,-8.73081 5.248796,-13.0388 m 0.19268,14.4285 c 0.77063,-3.41657 2.11011,-7.128 4.90647,-10.56448 m 1.0241,12.13861 c 0.65058,-3.19205 1.46038,-6.45168 2.91012,-8.84798 m -51.156506,3.04359 c 1.2901,-5.70117 3.07598,-11.77005 7.15389,-16.25686 m -1.80699,15.86113 c 1.30018,-5.15177 3.40101,-10.88078 8.00932,-16.29847 m -1.54285,16.25213 c 1.27455,-5.14497 3.21522,-10.86584 7.39428,-16.27822 m -0.82528,16.65686 c 1.2799,-5.19166 3.13902,-10.99754 7.15012,-16.44001 m 5.83755,1.07352 c -1.9613,1.97423 -5.08901,8.69433 -6.66792,16.06424 m -31.131845,29.4534 C 31.02686,5.738139 30.600382,-0.45243101 26.863458,-0.37462101 c 3.873531,0.08066 3.930001,-6.59636999 6.294685,-15.06591999 -1.099438,5.16013 -1.594721,10.68094 -0.0507,15.06591999 C 31.648043,3.659839 31.768408,8.716679 32.943271,13.696999 Z M 101.2948,4.002579 c -0.12009,-2.60299 0.0315,-4.46257001 -2.829888,-4.37720001 3.210308,0.09578 2.490518,-2.24980999 2.873778,-5.32825999 -0.0225,2.13602 0.30743,4.26213 0.73548,5.32825999 v 10e-6 c -0.36574,0.91095 -0.76908,2.59037001 -0.77937,4.37719001 z m -4.873528,1.94336 c -0.46025,-4.27056 0.69891,-6.41614001 -3.85032,-6.32056001 4.8613,0.10213 3.06863,-2.41922999 3.94641,-7.23677999 -0.26587,3.36894 0.55763,6.18955 1.94755,7.23677999 -1.25893,0.94854 -2.17186,3.40831001 -2.04364,6.32056001 z m -4.22148,1.42394 c -0.51772,-4.25728 -0.63808,-7.82898001 -4.78139,-7.74450001 4.43753,0.09047 4.1784,-3.98033999 4.89643,-8.65750999 -0.37818,3.24998 -0.35311,6.76924 0.25612,8.65750999 C 92.017822,1.339789 91.874662,4.370259 92.199792,7.369879 Z m -22.883516,5.76919 c -1.51841,-7.47864 -1.6733,-13.59141001 -5.40347,-13.51369001 3.86173,0.08047 3.84608,-6.56588999 5.55379,-14.42533999 -1.00722,5.10964 -1.08324,10.45297 0.68539,14.42533999 C 68.463476,3.297119 68.413876,8.256599 69.316276,13.139069 Z m 6.76256,-1.213 c -1.61839,-7.05493 -2.04215,-12.38231001 -5.92685,-12.30069001 4.01974,0.08445 4.13324,-5.79219999 6.09535,-13.17553999 -0.9672,5.26942 -1.31946,10.58629 0.26785,13.17553999 C 75.005646,1.958549 75.063016,6.925809 76.078836,11.926069 Z m 5.432006,-1.39244 c -1.278726,-6.15255 -0.947226,-10.99098001 -4.995656,-10.90825001 4.20845,0.086 3.74211,-5.25829999 5.173626,-11.78583999 -1.208376,4.4296 -1.532606,9.09997 0.13952,11.78583999 C 80.253876,2.021669 80.503246,6.293799 81.510842,10.533629 Z m 5.72079,-1.52241 c -0.9544,-5.04906 -1.6352,-9.46500001 -5.4033,-9.38584001 3.89293,0.08179 4.81724,-4.87332999 5.79105,-10.21170999 -0.97574,4.05036 -1.25034,8.23044 -0.20098,10.21170999 -0.983,1.71176001 -0.93037,5.50398001 -0.18677,9.38584001 z m -48.043146,5.65271 c -1.76207,-8.10062 -2.473997,-15.11433001 -6.081042,-15.03855001 3.734182,0.07845 4.17302,-7.48725999 6.265552,-16.01609999 -0.91475,4.91846 -1.32537,10.49601 -0.25615,16.01609999 C 38.108106,4.729069 38.236876,9.909499 39.188486,14.663929 Z m 5.32115,0.42075 c -2.07954,-8.79475 -1.62045,-15.54088001 -5.39279,-15.45930001 3.8887,0.0841 3.10903,-7.17949999 5.60305,-16.41182999 -1.38637,5.69066 -1.86904,11.79471 0.40634,16.41182999 -2.16437,4.27508001 -1.99498,9.96966001 -0.6166,15.45930001 z m 6.48115,0.06371 c -2.07828,-8.84097 -1.96942,-15.60484001 -5.86455,-15.52301001 4.009,0.08423 3.60346,-7.20149999 6.06013,-16.45816999 -1.26094,5.71567 -1.73628,11.8483 0.21356,16.45816999 C 49.545316,3.893529 49.721436,9.637169 50.990786,15.148389 Z m 6.57456,-0.3654 c -2.03394,-8.6303 -2.26515,-15.23844001 -6.16542,-15.15761001 4.01854,0.08328 3.95104,-7.03842999 6.35544,-16.07952999 -1.17932,5.58339 -1.68853,11.52938 -0.08174,16.07952999 C 56.143836,3.842269 56.352086,9.409209 57.565346,14.782989 Z m 6.33194,-0.70012 c -1.90137,-8.16842 -2.44426,-14.53689001 -6.22366,-14.45749001 3.90248,0.08199 4.20168,-6.81961999 6.40149,-15.38177999 -1.00525,5.30203 -1.40706,10.93687 -0.16231,15.38177999 C 62.730386,3.735449 62.890676,9.007129 63.897286,14.082869 Z M 101.2948,4.002579 c -0.009,1.63322 0.32756,3.35707 0.95437,4.64767 m -5.827898,-2.70431 c 0.07892,1.79242 0.62597,3.72126 1.51049,5.67861 m -3.74366,2.94044 c -1.34409,-2.2978 -1.70209,-4.84137 -1.98831,-7.19511 m -1.67029,11.3152 c -1.99726,-2.76331 -2.67078,-6.35632 -3.29787,-9.67386 m -0.63635,12.96449 c -2.99873,-3.78952 -4.33547,-7.83848 -5.08444,-11.44208 m -5.432006,1.39244 c 1.20508,5.93187 3.68273,11.93015 5.417296,13.91366 m -5.460226,3.11254 c -4.00847,-4.88739 -5.67534,-10.6698 -6.71963,-15.8132 m -5.41899,0.9438 c 1.52662,7.69782 4.81382,14.94322 6.84575,16.98854 m -5.83755,1.07352 c -4.21634,-5.8294 -6.07301,-11.9853 -7.34014,-17.36194 m 1.0153,17.57879 c -4.39197,-5.7944 -6.33661,-11.88207 -7.58986,-17.21339 m 1.73843,17.18729 c -4.85461,-5.81407 -6.95529,-11.90407 -8.21958,-17.251 m 2.01725,16.81366 c -4.28448,-4.8334 -6.05024,-11.31242 -7.3384,-17.23441 m -6.245215,-0.96693 c 1.314627,5.45965 3.202188,11.70993 7.852855,17.50541 m 79.479184,-50.45326 c 2.45016,-2.61541 5.77537,-3.48721 5.77537,-3.48721 m -9.4506,8.89239 c 2.97519,-2.61541 7.35046,-3.83594 7.35046,-3.83594 m -10.15064,10.636 c 4.02526,-4.53338 8.57555,-4.8821 8.57555,-4.8821 m -10.67568,9.41547 c 5.07533,-2.09233 9.62561,-2.09233 9.62561,-2.09233 m -1.05007,23.01594 c 2.45016,2.61541 5.77537,3.48721 5.77537,3.48721 m -9.4506,-8.89239 c 2.97519,2.61541 7.35046,3.83593 7.35046,3.83593 M 113.7999,6.206129 c 4.02526,4.53338 8.57555,4.8821 8.57555,4.8821 m -10.67568,-9.41547 c 5.07533,2.09232 9.62561,2.09232 9.62561,2.09232 M 19.293941,-10.620001 c 0,0.43311 -0.313621,0.78462 -0.700043,0.78462 -0.386426,0 -0.700042,-0.35151 -0.700042,-0.78462 0,-0.43312 0.313616,-0.78462 0.700042,-0.78462 0.386422,0 0.700043,0.3515 0.700043,0.78462 z m 6.562918,38.18494 c 4.725297,-0.08718 0,-21.35916 0,-28.15922001 0,-6.80005999 1.938324,-21.58620999 7.175453,-28.33357999 5.325814,-6.86163 -34.315884,15.93349 -31.414481,33.73876 3.237706,1.83079 8.138013,2.78977 12.07576,4.27183 -3.675231,0.26154 -7.963003,-0.8718 -11.025699,-1.65643 1.750114,3.66158 7.875501,13.77449 23.188967,20.13864 z m -4.637785,-39.36187 c 0,1.3234 -0.921261,2.39746 -2.056379,2.39746 -1.135123,0 -2.056384,-1.07406 -2.056384,-2.39746 0,-1.32339 0.921261,-2.39745 2.056384,-2.39745 1.135118,0 2.056379,1.07406 2.056379,2.39745 z m -1.925133,1.17693 c 0,0.43311 -0.313621,0.78462 -0.700043,0.78462 -0.386426,0 -0.700042,-0.35151 -0.700042,-0.78462 0,-0.43312 0.313616,-0.78462 0.700042,-0.78462 0.386422,0 0.700043,0.3515 0.700043,0.78462 z"
- copytype="single_stretched"
- is_visible="true"
- prop_scale="1.0666667"
- scale_y_rel="false"
- spacing="0"
- normal_offset="0"
- tang_offset="0"
- prop_units="false"
- vertical_pattern="false"
- fuse_tolerance="0" />
+ pattern="M 119.92529,-0.41956101 C 119.92529,1.659909 120.58678,2.431279 121.32538,3.765079 C 120.76714,6.123869 120.41028,8.500889 122.37545,11.088229 C 121.671,13.006199 122.5692,14.924159 123.95054,16.842119 C 123.71907,18.682279 124.92357,20.284009 126.05068,21.898579 C 126.25318,23.990909 127.36543,26.083239 129.20088,28.175559 C 112.57483,22.944749 111.46952,10.168439 108.8996,7.775379 C 107.5348,6.504509 106.05778,6.654809 105.00417,5.064329 C 103.95056,3.473849 103.32038,0.14257899 102.24918,-0.41974101 C 103.32038,-0.98206101 103.95056,-4.313331 105.00417,-5.903821 C 106.05778,-7.494301 107.5348,-7.343991 108.8996,-8.614861 C 111.46952,-11.007921 112.57483,-23.784231 129.20088,-29.015041 C 127.36543,-26.922721 126.25318,-24.830391 126.05068,-22.738061 C 124.92357,-21.123491 123.71907,-19.521771 123.95054,-17.681611 C 122.5692,-15.763641 121.671,-13.845681 122.37545,-11.927711 C 120.41028,-9.340371 120.76714,-6.963351 121.32538,-4.604571 C 120.58678,-3.270761 119.92529,-2.499391 119.92529,-0.41992101 M 102.24917,-9.399491 C 101.73918,-8.349411 101.40752,-7.043061 101.33869,-5.702881 M 97.931762,-12.373781 C 97.196772,-10.747321 96.683652,-9.149741 96.517362,-7.611401 M 40.796126,-31.951641 C 36.393294,-26.573831 34.489541,-20.703561 33.158143,-15.440541 M 92.314832,-9.032131 C 92.607472,-11.125331 93.016652,-13.311561 94.188102,-15.314231 M 69.466596,-14.799961 C 70.526116,-19.749901 72.232996,-25.173971 76.035906,-29.701501 M 76.247336,-13.550161 C 77.232456,-17.658201 78.546166,-22.280971 81.496132,-26.588961 M 81.688812,-12.160461 C 82.459442,-15.577031 83.798922,-19.288461 86.595282,-22.724941 M 87.619382,-10.586331 C 88.269962,-13.778381 89.079762,-17.038011 90.529502,-19.434311 M 39.372996,-16.390721 C 40.663096,-22.091891 42.448976,-28.160771 46.526886,-32.647581 M 44.719896,-16.786451 C 46.020076,-21.938221 48.120906,-27.667231 52.729216,-33.084921 M 51.186366,-16.832791 C 52.460916,-21.977761 54.401586,-27.698631 58.580646,-33.111011 M 57.755366,-16.454151 C 59.035266,-21.645811 60.894386,-27.451691 64.905486,-32.894161 M 70.743036,-31.820641 C 68.781736,-29.846411 65.654026,-23.126311 64.075116,-15.756401 M 32.943271,13.696999 C 31.02686,5.738139 30.600382,-0.45243101 26.863458,-0.37462101 C 30.736989,-0.29396101 30.793459,-6.970991 33.158143,-15.440541 C 32.058705,-10.280411 31.563422,-4.759601 33.107444,-0.37462101 C 31.648043,3.659839 31.768408,8.716679 32.943271,13.696999 z M 101.2948,4.002579 C 101.17471,1.399589 101.32632,-0.45999101 98.464912,-0.37462101 C 101.67522,-0.27884101 100.95543,-2.624431 101.33869,-5.702881 C 101.31622,-3.566861 101.64612,-1.440751 102.07417,-0.37462101 L 102.07417,-0.37461101 C 101.70843,0.53633899 101.30509,2.215759 101.2948,4.002579 z M 96.421272,5.945939 C 95.961022,1.675379 97.120182,-0.47020101 92.570952,-0.37462101 C 97.432252,-0.27249101 95.639582,-2.793851 96.517362,-7.611401 C 96.251492,-4.242461 97.074992,-1.421851 98.464912,-0.37462101 C 97.205982,0.57391899 96.293052,3.033689 96.421272,5.945939 z M 92.199792,7.369879 C 91.682072,3.112599 91.561712,-0.45910101 87.418402,-0.37462101 C 91.855932,-0.28415101 91.596802,-4.354961 92.314832,-9.032131 C 91.936652,-5.782151 91.961722,-2.262891 92.570952,-0.37462101 C 92.017822,1.339789 91.874662,4.370259 92.199792,7.369879 z M 69.316276,13.139069 C 67.797866,5.660429 67.642976,-0.45234101 63.912806,-0.37462101 C 67.774536,-0.29415101 67.758886,-6.940511 69.466596,-14.799961 C 68.459376,-9.690321 68.383356,-4.346991 70.151986,-0.37462101 C 68.463476,3.297119 68.413876,8.256599 69.316276,13.139069 z M 76.078836,11.926069 C 74.460446,4.871139 74.036686,-0.45624101 70.151986,-0.37462101 C 74.171726,-0.29017101 74.285226,-6.166821 76.247336,-13.550161 C 75.280136,-8.280741 74.927876,-2.963871 76.515186,-0.37462101 C 75.005646,1.958549 75.063016,6.925809 76.078836,11.926069 z M 81.510842,10.533629 C 80.232116,4.381079 80.563616,-0.45735101 76.515186,-0.37462101 C 80.723636,-0.28862101 80.257296,-5.632921 81.688812,-12.160461 C 80.480436,-7.730861 80.156206,-3.060491 81.828332,-0.37462101 C 80.253876,2.021669 80.503246,6.293799 81.510842,10.533629 z M 87.231632,9.011219 C 86.277232,3.962159 85.596432,-0.45378101 81.828332,-0.37462101 C 85.721262,-0.29283101 86.645572,-5.247951 87.619382,-10.586331 C 86.643642,-6.535971 86.369042,-2.355891 87.418402,-0.37462101 C 86.435402,1.337139 86.488032,5.129359 87.231632,9.011219 z M 39.188486,14.663929 C 37.426416,6.563309 36.714489,-0.45040101 33.107444,-0.37462101 C 36.841626,-0.29617101 37.280464,-7.861881 39.372996,-16.390721 C 38.458246,-11.472261 38.047626,-5.894711 39.116846,-0.37462101 C 38.108106,4.729069 38.236876,9.909499 39.188486,14.663929 z M 44.509636,15.084679 C 42.430096,6.289929 42.889186,-0.45620101 39.116846,-0.37462101 C 43.005546,-0.29052101 42.225876,-7.554121 44.719896,-16.786451 C 43.333526,-11.095791 42.850856,-4.991741 45.126236,-0.37462101 C 42.961866,3.900459 43.131256,9.595039 44.509636,15.084679 z M 50.990786,15.148389 C 48.912506,6.307419 49.021366,-0.45645101 45.126236,-0.37462101 C 49.135236,-0.29039101 48.729696,-7.576121 51.186366,-16.832791 C 49.925426,-11.117121 49.450086,-4.984491 51.399926,-0.37462101 C 49.545316,3.893529 49.721436,9.637169 50.990786,15.148389 z M 57.565346,14.782989 C 55.531406,6.152689 55.300196,-0.45545101 51.399926,-0.37462101 C 55.418466,-0.29134101 55.350966,-7.413051 57.755366,-16.454151 C 56.576046,-10.870761 56.066836,-4.924771 57.673626,-0.37462101 C 56.143836,3.842269 56.352086,9.409209 57.565346,14.782989 z M 63.897286,14.082869 C 61.995916,5.914449 61.453026,-0.45402101 57.673626,-0.37462101 C 61.576106,-0.29263101 61.875306,-7.194241 64.075116,-15.756401 C 63.069866,-10.454371 62.668056,-4.819531 63.912806,-0.37462101 C 62.730386,3.735449 62.890676,9.007129 63.897286,14.082869 z M 101.2948,4.002579 C 101.2854,5.635799 101.62236,7.359649 102.24917,8.650249 M 96.421272,5.945939 C 96.500192,7.738359 97.047242,9.667199 97.931762,11.624549 M 94.188102,14.564989 C 92.844012,12.267189 92.486012,9.723619 92.199792,7.369879 M 90.529502,18.685079 C 88.532242,15.921769 87.858722,12.328759 87.231632,9.011219 M 86.595282,21.975709 C 83.596552,18.186189 82.259812,14.137229 81.510842,10.533629 M 76.078836,11.926069 C 77.283916,17.857939 79.761566,23.856219 81.496132,25.839729 M 76.035906,28.952269 C 72.027436,24.064879 70.360566,18.282469 69.316276,13.139069 M 63.897286,14.082869 C 65.423906,21.780689 68.711106,29.026089 70.743036,31.071409 M 64.905486,32.144929 C 60.689146,26.315529 58.832476,20.159629 57.565346,14.782989 M 58.580646,32.361779 C 54.188676,26.567379 52.244036,20.479709 50.990786,15.148389 M 52.729216,32.335679 C 47.874606,26.521609 45.773926,20.431609 44.509636,15.084679 M 46.526886,31.898339 C 42.242406,27.064939 40.476646,20.585919 39.188486,14.663929 M 32.943271,13.696999 C 34.257898,19.156649 36.145459,25.406929 40.796126,31.202409 M 120.27531,-19.250851 C 122.72547,-21.866261 126.05068,-22.738061 126.05068,-22.738061 M 116.60008,-13.845671 C 119.57527,-16.461081 123.95054,-17.681611 123.95054,-17.681611 M 113.7999,-7.045611 C 117.82516,-11.578991 122.37545,-11.927711 122.37545,-11.927711 M 111.69977,-2.512241 C 116.7751,-4.604571 121.32538,-4.604571 121.32538,-4.604571 M 120.27531,18.411369 C 122.72547,21.026779 126.05068,21.898579 126.05068,21.898579 M 116.60008,13.006189 C 119.57527,15.621599 123.95054,16.842119 123.95054,16.842119 M 113.7999,6.206129 C 117.82516,10.739509 122.37545,11.088229 122.37545,11.088229 M 111.69977,1.672759 C 116.7751,3.765079 121.32538,3.765079 121.32538,3.765079 M 19.293941,-10.620001 C 19.293941,-10.186891 18.98032,-9.835381 18.593898,-9.835381 C 18.207472,-9.835381 17.893856,-10.186891 17.893856,-10.620001 C 17.893856,-11.053121 18.207472,-11.404621 18.593898,-11.404621 C 18.98032,-11.404621 19.293941,-11.053121 19.293941,-10.620001 z M 25.856859,27.564939 C 30.582156,27.477759 25.856859,6.205779 25.856859,-0.59428101 C 25.856859,-7.394341 27.795183,-22.180491 33.032312,-28.927861 C 38.358126,-35.789491 -1.283572,-12.994371 1.617831,4.810899 C 4.855537,6.641689 9.755844,7.600669 13.693591,9.082729 C 10.01836,9.344269 5.730588,8.210929 2.667892,7.426299 C 4.418006,11.087879 10.543393,21.200789 25.856859,27.564939 z M 21.219074,-11.796931 C 21.219074,-10.473531 20.297813,-9.399471 19.162695,-9.399471 C 18.027572,-9.399471 17.106311,-10.473531 17.106311,-11.796931 C 17.106311,-13.120321 18.027572,-14.194381 19.162695,-14.194381 C 20.297813,-14.194381 21.219074,-13.120321 21.219074,-11.796931 z M 19.293941,-10.620001 C 19.293941,-10.186891 18.98032,-9.835381 18.593898,-9.835381 C 18.207472,-9.835381 17.893856,-10.186891 17.893856,-10.620001 C 17.893856,-11.053121 18.207472,-11.404621 18.593898,-11.404621 C 18.98032,-11.404621 19.293941,-11.053121 19.293941,-10.620001 z"
+ copytype="single_stretched" />
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1Mend"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path5779"
- d="M -4.2666667,0 -6.4,2.1333333 1.0666667,0 -6.4,-2.1333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1Mstart"
style="overflow:visible">
<path
id="path5782"
- d="M 4.2666667,0 6.4,-2.1333333 -1.0666667,0 6.4,2.1333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+ transform="scale(0.4) translate(10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1Lend"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path17355"
- d="M -10.666667,0 -14.933333,4.2666667 0,0 -14.933333,-4.2666667 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
</marker>
</defs>
<sodipodi:namedview
@@ -81,15 +72,15 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="0.94740589"
- inkscape:cx="448.12311"
- inkscape:cy="310.84882"
+ inkscape:zoom="0.84461975"
+ inkscape:cx="472.3569"
+ inkscape:cy="830.30012"
inkscape:document-units="mm"
inkscape:current-layer="svg2"
inkscape:window-width="1152"
inkscape:window-height="808"
- inkscape:window-x="0"
- inkscape:window-y="25"
+ inkscape:window-x="-4"
+ inkscape:window-y="-4"
inkscape:grid-points="false"
inkscape:grid-bbox="false"
gridtolerance="50"
@@ -97,17 +88,14 @@
height="297mm"
units="mm"
showgrid="true"
+ gridspacingx="1mm"
+ gridspacingy="1mm"
grid_units="mm"
inkscape:object-paths="false"
inkscape:object-nodes="false"
inkscape:object-points="false"
objecttolerance="12.4"
- inkscape:guide-bbox="false"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5"
- inkscape:window-maximized="0" />
+ inkscape:guide-bbox="false" />
<metadata
id="metadata7">
<rdf:RDF>
@@ -116,330 +104,331 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
+ id="g3195"
+ transform="translate(516.20863,200.09004)">
+ <path
+ sodipodi:type="arc"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3197"
+ sodipodi:cx="-44.990662"
+ sodipodi:cy="199.31558"
+ sodipodi:rx="37.886871"
+ sodipodi:ry="34.92696"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ transform="translate(58.014272,-17.759472)" />
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="-82.877533"
+ y="346.71921"
+ id="text3199"
+ transform="translate(84.061496,-150.36352)"><tspan
+ sodipodi:role="line"
+ id="tspan3201"
+ x="-82.877533"
+ y="346.71921"
+ style="font-size:40px;font-weight:bold;writing-mode:lr-tb;fill:#0000ff">3</tspan></text>
+ <path
+ transform="translate(58.014272,-17.759472)"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ sodipodi:ry="34.92696"
+ sodipodi:rx="37.886871"
+ sodipodi:cy="199.31558"
+ sodipodi:cx="-44.990662"
+ id="path3203"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
+ </g>
+ <g
+ id="g3205"
+ transform="translate(644.07682,-17.759471)">
+ <path
+ sodipodi:type="arc"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3207"
+ sodipodi:cx="-44.990662"
+ sodipodi:cy="199.31558"
+ sodipodi:rx="37.886871"
+ sodipodi:ry="34.92696"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ transform="translate(58.014272,-17.759472)" />
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="-82.877533"
+ y="346.71921"
+ id="text3209"
+ transform="translate(84.061496,-150.36352)"><tspan
+ sodipodi:role="line"
+ id="tspan3211"
+ x="-82.877533"
+ y="346.71921"
+ style="font-size:40px;font-weight:bold;writing-mode:lr-tb;fill:#0000ff">4</tspan></text>
+ </g>
+ <g
inkscape:label="Calque 1"
id="layer1"
- inkscape:groupmode="layer"
- transform="translate(31.804144,69.750943)" />
+ inkscape:groupmode="layer" />
+ <text
+ xml:space="preserve"
+ style="font-size:32px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ id="text10546"
+ y="265.19595"
+ x="194.35773"
+ transform="translate(-31.967048,-168.123)"><tspan
+ sodipodi:role="line"
+ id="tspan10548"
+ y="265.19595"
+ x="194.35773">+</tspan></text>
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 247.1188,269.88102 C 297.86188,208.2082 345.42582,221.1401 391.46382,269.88102"
+ sodipodi:nodetypes="cc"
+ id="path8133"
+ transform="translate(-31.967048,-168.123)" />
<g
- id="g29744"
- transform="translate(31.804144,69.750943)">
- <g
- transform="translate(550.62254,213.42938)"
- id="g3195">
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="193.65985"
- cx="13.891851"
- id="path3197"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text3199"
- y="209.44606"
- x="1.2628939"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="font-weight:bold;font-size:42.66666794px;writing-mode:lr-tb;fill:#0000ff;stroke-width:1.06666672px"
- y="209.44606"
- x="1.2628939"
- id="tspan3201"
- sodipodi:role="line">3</tspan></text>
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="193.65985"
- cx="13.891851"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path3203" />
- </g>
- <g
- transform="translate(687.01527,-18.943436)"
- id="g3205">
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="193.65985"
- cx="13.891851"
- id="path3207"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text3209"
- y="209.44606"
- x="1.2628939"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="font-weight:bold;font-size:42.66666794px;writing-mode:lr-tb;fill:#0000ff;stroke-width:1.06666672px"
- y="209.44606"
- x="1.2628939"
- id="tspan3211"
- sodipodi:role="line">4</tspan></text>
- </g>
- <text
- x="173.21672"
- y="103.54449"
- id="text10546"
- style="font-style:normal;font-weight:normal;font-size:34.13333511px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- x="173.21672"
- y="103.54449"
- id="tspan10548"
- sodipodi:role="line">+</tspan></text>
+ style="stroke:#000000;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="g10352"
+ transform="translate(-52.598418,165.2633)">
<path
- inkscape:connector-curvature="0"
- id="path8133"
- sodipodi:nodetypes="cc"
- d="m 229.4952,108.54189 c 54.12595,-65.784343 104.86082,-51.990317 153.96802,0"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <g
- transform="translate(-56.104979,176.28085)"
- id="g10352"
- style="stroke:#000000;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
- <path
- inkscape:connector-curvature="0"
- id="path8125"
- sodipodi:nodetypes="ccccccsscsscccccc"
- d="m 194.57722,-89.944953 c 0,2.218101 0.70559,3.040896 1.49343,4.463624 -0.59546,2.516035 -0.97611,5.051528 1.12007,7.811355 -0.75141,2.045831 0.20667,4.091657 1.6801,6.137489 -0.24691,1.962837 1.03789,3.671343 2.24015,5.393552 0.216,2.231814 1.4024,4.463634 3.36021,6.695448 -17.73445,-5.579536 -18.91345,-19.207598 -21.6547,-21.760199 -1.45579,-1.355589 -3.03127,-1.195266 -4.15513,-2.891778 -1.12385,-1.696518 -1.79604,-5.249869 -2.93865,-5.84968 1.14261,-0.599811 1.8148,-4.153163 2.93865,-5.84968 1.12386,-1.696512 2.69934,-1.53619 4.15513,-2.891779 2.74125,-2.552599 3.92025,-16.180659 21.6547,-21.760189 -1.95781,2.2318 -3.14421,4.46362 -3.36021,6.69544 -1.20226,1.72221 -2.48706,3.43071 -2.24015,5.39355 -1.47343,2.04583 -2.43151,4.09166 -1.6801,6.13749 -2.09618,2.759826 -1.71553,5.29532 -1.12007,7.811355 -0.78784,1.422728 -1.49343,2.245524 -1.49343,4.463624"
- style="fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path8246"
- d="m 175.72269,-99.523536 c -0.54399,1.120079 -0.89776,2.513521 -0.97118,3.943051 m -3.63406,-7.115635 c -0.78399,1.7349 -1.33132,3.438983 -1.50869,5.079871 m -59.43599,-25.962921 c -4.69636,5.73633 -6.72703,11.99795 -8.14718,17.61184 m 63.10047,6.835639 c 0.31215,-2.232749 0.74861,-4.564719 1.99815,-6.700899 m -26.36961,0.54855 c 1.13016,-5.27994 2.95083,-11.06561 7.00727,-15.89498 m 0.22552,17.2281 c 1.0508,-4.38191 2.45209,-9.31287 5.59872,-13.90806 m 0.20553,15.39041 c 0.822,-3.64435 2.25078,-7.60321 5.23357,-11.26878 m 1.09237,12.94784 c 0.69395,-3.40485 1.55774,-6.88179 3.10413,-9.43784 m -54.56695,3.2465 c 1.37611,-6.08125 3.28105,-12.55472 7.63082,-17.34065 m -1.92746,16.91853 c 1.38686,-5.49522 3.62775,-11.60616 8.54328,-17.38503 m -1.64571,17.33561 c 1.35952,-5.48797 3.42957,-11.59023 7.88723,-17.36344 m -0.8803,17.76732 c 1.36523,-5.53777 3.34829,-11.73071 7.6268,-17.53601 m 6.22672,1.14509 c -2.09205,2.10584 -5.42828,9.27395 -7.11245,17.13519"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path8248"
- sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
- d="m 101.79639,-74.887282 c -2.044172,-8.489452 -2.499082,-15.092732 -6.485135,-15.009727 4.131767,0.08603 4.192002,-7.036134 6.714335,-16.070321 -1.17274,5.50414 -1.70104,11.393004 -0.0541,16.070321 -1.5567,4.303416 -1.42831,9.697379 -0.17512,15.009727 z m 72.9083,-10.340716 c -0.12809,-2.776527 0.0336,-4.76008 -3.01855,-4.669011 3.42433,0.102165 2.65656,-2.399806 3.06537,-5.683476 -0.024,2.27841 0.32792,4.546264 0.78451,5.683476 v 1.1e-5 c -0.39012,0.971681 -0.82035,2.763055 -0.83133,4.669 z m -5.19843,2.072913 c -0.49093,-4.555261 0.74551,-6.843877 -4.10701,-6.741924 5.18539,0.108939 3.27321,-2.580518 4.20951,-7.71924 -0.2836,3.593536 0.5948,6.602186 2.07738,7.71924 -1.34285,1.011777 -2.31665,3.635525 -2.17988,6.741924 z m -4.50291,1.518877 c -0.55224,-4.541099 -0.68062,-8.350912 -5.10015,-8.260801 4.73337,0.0965 4.45696,-4.245699 5.22286,-9.234682 -0.40339,3.466644 -0.37665,7.220528 0.27319,9.234682 -0.59,1.828696 -0.74271,5.061203 -0.3959,8.260801 z m -24.40909,6.153802 c -1.61964,-7.977222 -1.78485,-14.497513 -5.7637,-14.414603 4.11918,0.08584 4.10249,-7.003626 5.92404,-15.387031 -1.07437,5.450285 -1.15545,11.149833 0.73109,15.387031 -1.80108,3.916522 -1.85399,9.206634 -0.89143,14.414603 z m 7.2134,-1.293873 c -1.72628,-7.525261 -2.17829,-13.20779 -6.32197,-13.12073 4.28772,0.09008 4.40878,-6.178352 6.5017,-14.053911 -1.03168,5.620709 -1.40742,11.292039 0.28571,14.053911 -1.61018,2.488712 -1.54898,7.78712 -0.46544,13.12073 z m 5.79414,-1.485263 c -1.36398,-6.562728 -1.01038,-11.723711 -5.3287,-11.635467 4.48901,0.09172 3.99158,-5.608858 5.51854,-12.571561 -1.28894,4.724903 -1.63479,9.706627 0.14882,12.571561 -1.67943,2.556042 -1.41343,7.112979 -0.33866,11.635467 z m 6.10218,-1.623908 c -1.01803,-5.385661 -1.74421,-10.096005 -5.76352,-10.011559 4.15246,0.08724 5.13839,-5.198222 6.17712,-10.892501 -1.04079,4.320389 -1.3337,8.779146 -0.21438,10.892501 -1.04853,1.825876 -0.99239,5.870906 -0.19922,10.011559 z m -51.24603,6.029561 c -1.87954,-8.640669 -2.63893,-16.121957 -6.48644,-16.04112 3.98312,0.08368 4.45122,-7.986412 6.68325,-17.083841 -0.97573,5.24635 -1.41373,11.195739 -0.27322,17.083841 -1.07599,5.443937 -0.93864,10.969722 0.0764,16.04112 z m 5.6759,0.448794 c -2.21818,-9.381064 -1.72848,-16.576937 -5.75231,-16.489914 4.14794,0.08971 3.31629,-7.658134 5.97658,-17.505961 -1.47879,6.07004 -1.99364,12.581034 0.43343,17.505961 -2.30866,4.560084 -2.12798,10.634295 -0.6577,16.489914 z m 6.91322,0.06796 c -2.21683,-9.430365 -2.10071,-16.645165 -6.25552,-16.557873 4.27627,0.08983 3.84369,-7.681607 6.46414,-17.555382 -1.345,6.0967 -1.85203,12.638183 0.2278,17.555382 -1.97825,4.552693 -1.79039,10.679235 -0.43642,16.557873 z m 7.01287,-0.389756 c -2.16954,-9.205655 -2.41616,-16.254336 -6.57645,-16.168117 4.28644,0.08883 4.21444,-7.50766 6.77913,-17.151502 -1.25794,5.95562 -1.80109,12.298006 -0.0871,17.151502 -1.63178,4.49801 -1.40965,10.436077 -0.1155,16.168117 z m 6.75407,-0.746803 c -2.02813,-8.712978 -2.60722,-15.506013 -6.63858,-15.421314 4.16265,0.08745 4.4818,-7.274265 6.82826,-16.407242 -1.07227,5.6555 -1.50086,11.666004 -0.17313,16.407242 -1.26125,4.384069 -1.09027,10.007192 -0.0165,15.421314 z"
- style="fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path8242"
- sodipodi:nodetypes="cccccccccccccccccccccccccc"
- d="m 174.70469,-85.227998 c -0.01,1.742099 0.3494,3.580869 1.018,4.957516 m -6.21643,-2.884603 c 0.0842,1.911916 0.6677,3.969346 1.61119,6.057188 m -3.99324,3.136473 c -1.43369,-2.450991 -1.81556,-5.164134 -2.12086,-7.674784 m -1.78164,12.069542 c -2.13041,-2.947533 -2.84884,-6.780072 -3.51773,-10.318784 m -0.67877,13.828791 c -3.19865,-4.042158 -4.62451,-8.361046 -5.42341,-12.204883 m -5.79414,1.485263 c 1.28542,6.327333 3.92824,12.725493 5.77845,14.841235 m -5.82424,3.320047 c -4.2757,-5.213215 -6.0537,-11.381115 -7.16761,-16.867409 m -5.78025,1.006711 c 1.62839,8.211011 5.13474,15.939441 7.30213,18.121118 m -6.22672,1.145082 c -4.49743,-6.218022 -6.47788,-12.78432 -7.82948,-18.519397 m 1.08298,18.750709 c -4.68477,-6.180694 -6.75905,-12.67421 -8.09585,-18.360953 m 1.85433,18.333114 c -5.17825,-6.201677 -7.41898,-12.69768 -8.76755,-18.401073 m 2.15173,17.934578 c -4.57011,-5.155634 -6.45359,-12.066582 -7.82763,-18.383372 m -6.66156,-1.031393 c 1.40227,5.823619 3.41567,12.490593 8.37638,18.672437"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path8129"
- sodipodi:nodetypes="cccccccc"
- d="m 194.95057,-110.03166 c 2.6135,-2.78977 6.1604,-3.71969 6.1604,-3.71969 m -10.08064,9.48522 c 3.17353,-2.78977 7.84049,-4.09167 7.84049,-4.09167 m -10.82735,11.345061 c 4.29361,-4.835601 9.14725,-5.207571 9.14725,-5.207571 m -11.38739,10.04317 c 5.41368,-2.231815 10.26732,-2.231815 10.26732,-2.231815"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- d="m 194.95057,-69.858625 c 2.6135,2.789767 6.1604,3.719692 6.1604,3.719692 m -10.08064,-9.485215 c 3.17353,2.789767 7.84049,4.091663 7.84049,4.091663 m -10.82735,-11.34506 c 4.29361,4.835599 9.14725,5.207571 9.14725,5.207571 m -11.38739,-10.043169 c 5.41368,2.231814 10.26732,2.231814 10.26732,2.231814"
- sodipodi:nodetypes="cccccccc"
- id="path8131"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path8135"
- d="m 87.237104,-100.82542 c 0,0.46199 -0.334529,0.83693 -0.746713,0.83693 -0.412187,0 -0.746711,-0.37494 -0.746711,-0.83693 0,-0.46199 0.334524,-0.83693 0.746711,-0.83693 0.412184,0 0.746713,0.37494 0.746713,0.83693 z"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
- <path
- inkscape:connector-curvature="0"
- id="path8123"
- d="m 94.23755,-60.094812 c 5.040317,-0.09299 0,-22.783106 0,-30.036502 0,-7.253396 2.067545,-23.025296 7.65382,-30.222486 5.68086,-7.31907 -36.603613,16.99572 -33.508783,35.988004 3.453553,1.952842 8.680547,2.975755 12.88081,4.556628 -3.920246,0.278971 -8.49387,-0.92993 -11.760745,-1.76686 1.866788,3.90568 8.400534,14.69278 24.734898,21.481216 z m -4.946971,-41.985998 c 0,1.41162 -0.982678,2.55729 -2.193471,2.55729 -1.210798,0 -2.193476,-1.14567 -2.193476,-2.55729 0,-1.41162 0.982678,-2.55728 2.193476,-2.55728 1.210793,0 2.193471,1.14566 2.193471,2.55728 z"
- style="fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- d="m 87.237104,-100.82542 c 0,0.46199 -0.334529,0.83693 -0.746713,0.83693 -0.412187,0 -0.746711,-0.37494 -0.746711,-0.83693 0,-0.46199 0.334524,-0.83693 0.746711,-0.83693 0.412184,0 0.746713,0.37494 0.746713,0.83693 z"
- id="path9876"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
- </g>
+ style="fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 182.41614,-84.323393 C 182.41614,-82.243924 183.07763,-81.472553 183.81623,-80.138746 C 183.25799,-77.779963 182.90113,-75.402938 184.8663,-72.815601 C 184.16185,-70.897634 185.06005,-68.979672 186.44139,-67.061705 C 186.20992,-65.221545 187.41442,-63.619821 188.54153,-62.00525 C 188.74403,-59.912924 189.85628,-57.820593 191.69173,-55.728267 C 175.06568,-60.959082 173.96037,-73.73539 171.39045,-76.128454 C 170.02565,-77.399318 168.54863,-77.249016 167.49502,-78.839496 C 166.44141,-80.429981 165.81123,-83.761248 164.74003,-84.323571 C 165.81123,-84.885893 166.44141,-88.217161 167.49502,-89.807646 C 168.54863,-91.398126 170.02565,-91.247824 171.39045,-92.518688 C 173.96037,-94.911751 175.06568,-107.68806 191.69173,-112.91887 C 189.85628,-110.82655 188.74403,-108.73422 188.54153,-106.64189 C 187.41442,-105.02732 186.20992,-103.4256 186.44139,-101.58544 C 185.06005,-99.667468 184.16185,-97.749506 184.8663,-95.831539 C 182.90113,-93.244204 183.25799,-90.867178 183.81623,-88.508395 C 183.07763,-87.174588 182.41614,-86.403217 182.41614,-84.323748"
+ sodipodi:nodetypes="ccccccsscsscccccc"
+ id="path8125" />
<path
- inkscape:connector-curvature="0"
- d="M 406.94424,91.809077 H 509.97725"
- sodipodi:nodetypes="cc"
- id="path10580"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 164.74002,-93.303315 C 164.23003,-92.253241 163.89837,-90.946889 163.82954,-89.606705 M 160.42261,-96.277612 C 159.68762,-94.651147 159.1745,-93.053566 159.00821,-91.515233 M 103.28697,-115.85547 C 98.884138,-110.47766 96.980385,-104.60739 95.648987,-99.34437 M 154.80568,-92.93596 C 155.09832,-95.029159 155.5075,-97.215387 156.67895,-99.218055 M 131.95744,-98.703792 C 133.01696,-103.65373 134.72384,-109.0778 138.52675,-113.60533 M 138.73818,-97.453986 C 139.7233,-101.56203 141.03701,-106.1848 143.98698,-110.49279 M 144.17966,-96.064288 C 144.95029,-99.480863 146.28977,-103.19229 149.08613,-106.62877 M 150.11023,-94.490163 C 150.76081,-97.682213 151.57061,-100.94184 153.02035,-103.33814 M 101.86384,-100.29455 C 103.15394,-105.99572 104.93982,-112.0646 109.01773,-116.55141 M 107.21074,-100.69028 C 108.51092,-105.84205 110.61175,-111.57106 115.22006,-116.98875 M 113.67721,-100.73662 C 114.95176,-105.88159 116.89243,-111.60246 121.07149,-117.01484 M 120.24621,-100.35798 C 121.52611,-105.54964 123.38523,-111.35552 127.39633,-116.79799 M 133.23388,-115.72447 C 131.27258,-113.75024 128.14487,-107.03014 126.56596,-99.660228"
+ id="path8246" />
<path
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:original-d="M 537.06153,116.74169 C 592.8608,24.184631 718.2434,33.558355 760.23771,120.40345"
- inkscape:path-effect="#path-effect2461"
- id="path2459"
- d="m 750.2052,103.24307 c -1.81179,1.27173 -1.68251,2.89895 -2.01867,4.95491 -2.80872,0.44614 -5.11324,1.31655 -5.39069,6.031 -2.4568,-0.0434 -3.20351,2.56163 -3.65095,5.75296 -1.87618,0.643 -2.24458,3.4159 -2.80095,5.93078 -1.79063,1.39358 -2.79844,4.11821 -3.52265,7.74806 -3.53481,-14.15683 -4.8027,-20.9955 -4.66549,-28.62254 0.11851,-6.587932 1.59012,-10.758824 0.63417,-13.45357 -1.01535,-2.862178 -3.34537,-4.718725 -3.90166,-7.399353 -0.55629,-2.680627 0.60994,-6.296665 -0.85776,-8.162516 2.19227,0.910764 5.47023,-1.016454 8.37465,-0.791993 2.90441,0.22447 5.3149,2.573888 8.5136,3.77498 3.01158,1.130825 7.38998,-0.354033 15.06539,1.700984 6.83311,1.829497 19.78603,7.91971 31.75661,26.397448 -4.15275,-3.46151 -7.55864,-4.87502 -9.74139,-4.25377 -2.92384,-1.70277 -5.9103,-3.38822 -7.3098,-1.87265 -3.53717,-1.876394 -6.39435,-2.481422 -7.21799,0.0113 -4.8074,-2.406919 -6.49062,-0.0989 -7.85532,2.25823 -2.09876,-0.57865 -3.5921,-1.28102 -5.41078,-0.004 M 729.81589,68.396846 c -1.62152,0.177889 -3.05032,0.854543 -4.02071,1.916496 m -2.4692,-10.323807 c -0.60188,0.12839 -1.17237,0.277177 -1.70798,0.447074 0,0 0,0 0,0 -1.60716,0.513345 -2.89556,1.213768 -3.77679,2.118751 M 585.73664,30.57798 c -4.2422,4.849804 -6.62376,9.406516 -7.93403,13.367295 -1.37563,4.188154 -1.6384,7.930373 -1.58557,11.209834 m 133.93323,1.395398 c 1.5919,-1.661946 3.55329,-3.349735 7.04992,-3.847294 M 660.31148,36.265236 c 2.85928,-4.884627 7.87404,-10.694441 18.67997,-13.476164 m -2.78019,17.014002 c 3.04736,-3.717657 7.45765,-8.173495 16.04463,-10.385692 M 688.38202,44.3206 c 2.69992,-2.899247 7.12144,-5.941861 15.03524,-6.757447 m -2.47481,12.949793 c 2.67567,-2.557816 5.87234,-5.038193 10.22444,-5.808837 m -122.0576,2.530007 c 0.31529,-6.603456 1.92092,-14.93121 10.9676,-22.793582 m 0.95568,17.52045 c 1.10544,-5.914928 4.29545,-14.169072 15.26882,-22.257255 m -0.1542,17.784867 c 1.69308,-5.777983 5.34604,-13.437969 15.92762,-20.281625 m -0.11104,17.891413 c 2.32135,-5.612289 6.57389,-12.867638 17.39324,-18.571821 m 15.85162,1.951152 c -2.98678,0.843964 -6.8593,3.102275 -10.39242,6.354404 -3.07748,2.831669 -5.74848,6.278301 -7.49452,9.984932 m -55.57657,47.224444 c -7.30969,-5.305193 -12.22751,-10.401923 -18.51578,-5.595657 3.34659,-2.449773 4.09724,-5.000133 3.98109,-8.417144 -0.11512,-3.386762 -1.14003,-7.529471 -0.99339,-12.873585 0.53654,6.167946 2.85814,11.521273 8.1157,13.850466 -0.48557,5.309194 2.80958,9.643512 7.41238,13.03592 z m 127.86022,-3.437174 c 1.37869,-2.284978 2.961,-3.927581 -2.23024,-7.2211 5.74354,3.887602 5.66092,1.168887 8.42008,-1.069879 -1.37936,1.796632 -2.14107,4.077965 -2.09291,5.521521 l -10e-6,9e-6 c -1.2259,0.307475 -2.94681,1.234052 -4.09692,2.769449 z m -9.42317,-3.783478 c 0.7781,-2.190521 1.96824,-3.472631 1.93286,-4.806413 -0.034,-1.28071 -1.31028,-2.807891 -5.65822,-4.985387 4.62515,2.438506 6.24752,2.828536 7.46956,1.972393 1.16867,-0.818755 1.72646,-2.767703 3.91484,-4.446076 -1.69703,1.96612 -2.14899,4.35046 -1.60441,6.444785 0.21939,0.84366 0.60122,1.649698 1.1383,2.383076 -0.86336,-0.194594 -1.74835,-0.21234 -2.59829,-0.05967 -1.93169,0.346381 -3.63385,1.556467 -4.59464,3.497291 z m -8.16074,-2.784845 c 1.07015,-4.297485 2.67458,-8.350115 -5.60366,-11.608432 8.85893,3.696045 9.79085,0.02211 13.7325,-3.877059 -2.34639,2.692632 -3.93382,6.101333 -3.69346,8.478536 -1.90472,1.091953 -3.5697,3.851221 -4.43538,7.006955 z M 657.6594,65.952627 c -1.32545,-4.793515 -2.02717,-9.227245 -3.93731,-11.864575 -1.31989,-1.822686 -3.30065,-2.947208 -6.53424,-2.862487 3.25389,-0.0178 5.22063,-1.010822 6.74571,-2.792076 2.34089,-2.734266 3.48494,-7.292297 6.37792,-12.168253 -2.87694,5.28933 -3.1433,10.907823 0.24243,15.464964 -3.97418,3.58003 -4.19245,8.93732 -2.89451,14.222427 z m 12.97287,0.453928 C 669.0539,58.624973 668.80138,52.397877 660.55391,51.7302 c 4.29221,0.437922 6.64177,-0.712735 8.7576,-2.980297 2.09251,-2.242573 3.8433,-5.53552 6.89975,-8.946829 -3.37278,5.103784 -4.93834,10.533128 -2.15735,13.903215 -3.70472,1.81707 -4.31827,7.110784 -3.42164,12.700266 z m 10.56228,1.033243 c -0.27542,-3.498504 0.0325,-6.45484 -0.60616,-8.796555 -0.62963,-2.308542 -2.26688,-4.11988 -6.53448,-4.936954 4.41787,0.939304 6.64429,0.157313 8.51573,-1.742843 1.8437,-1.871984 3.20749,-4.782423 5.81238,-7.642846 -4.10809,3.75738 -5.87691,8.395423 -3.27311,12.142344 -3.98324,1.492144 -4.5254,6.124525 -3.91436,10.976854 z m 11.12181,2.12546 c 0.25212,-5.524308 0.58405,-10.870032 -7.20745,-13.102314 7.96335,2.462681 11.45056,-1.413617 15.83354,-5.949998 -3.75426,3.14473 -5.80722,7.131005 -4.52468,9.91462 -2.66245,0.907769 -3.9197,4.755078 -4.10141,9.137692 z m -89.7301,7.924572 c -4.3448,-4.244758 -8.09103,-8.358028 -11.96879,-9.463358 -1.98527,-0.566845 -4.06772,-0.374397 -6.28472,0.979101 2.28802,-1.332046 3.50168,-2.971145 4.13682,-5.015352 1.27985,-4.115978 0.072,-9.803013 0.63972,-16.756105 0.16006,5.786488 2.01577,11.341036 6.61335,15.759492 0.32436,5.832231 3.15131,10.669198 6.86362,14.496222 z m 9.37202,-3.338829 c -3.40246,-3.766576 -5.66944,-7.327808 -7.94356,-9.610994 -2.25246,-2.261436 -4.63224,-3.290019 -8.29208,-1.546399 3.79862,-1.710489 4.61105,-4.018717 4.69908,-7.48412 0.0815,-3.208945 -0.57528,-8.108973 0.61085,-13.548504 -1.19299,6.966076 0.41596,13.153627 6.63951,16.221799 -2.91016,5.838253 -0.0467,11.375721 4.2862,15.968218 z m 11.61898,-3.367613 c -2.97924,-4.137833 -5.0164,-7.900103 -7.24441,-10.364668 -2.20802,-2.442449 -4.71847,-3.640949 -8.66077,-2.235937 4.07639,-1.357501 5.36888,-3.649989 6.04545,-7.157128 0.6698,-3.47207 0.64016,-8.04704 2.42966,-13.537059 -1.62529,6.732974 -0.74053,13.126218 4.45274,16.987239 -2.85803,5.339938 -0.65396,11.187414 2.97733,16.307553 z m 12.02698,-2.566283 c -4.80554,-8.476536 -6.98984,-15.6771 -15.00431,-13.74127 4.20782,-0.925016 5.92141,-3.063592 7.15737,-6.432195 1.22426,-3.33673 1.88036,-7.808363 4.20647,-12.945256 -2.16178,6.334217 -2.14326,12.629926 1.88175,17.046946 -2.71562,4.869733 -1.17986,10.703063 1.75872,16.071775 z m 11.79854,-1.573952 c -3.6404,-8.476884 -5.58931,-15.555625 -13.55726,-14.497823 4.15725,-0.463738 6.22379,-2.373104 7.93045,-5.470591 1.69233,-3.071452 2.93817,-7.256994 5.54572,-11.857688 -2.38731,5.742976 -2.88958,11.691003 -0.13384,16.408514 -2.46835,4.427153 -1.75552,10.062018 0.21493,15.417588 z m 72.20256,11.961168 c -1.04178,1.392176 -1.57031,3.284968 -1.41831,5.121044 m -8.00486,-8.904522 c -0.67409,1.36169 -0.89018,3.103018 -0.80381,5.093714 0,0 0,0 0,0 0.0224,0.522711 0.0658,1.062914 0.12725,1.618225 m -7.67078,-0.920766 c -1.02253,-3.395654 -0.44715,-6.031141 0.1866,-8.576018 m -8.12996,9.456815 c -2.01486,-4.251014 -1.74983,-8.099554 -1.57511,-11.927555 m -6.17878,12.423868 C 682.6926,76.24 681.52786,71.673415 681.19455,67.439798 m -10.56228,-1.033243 c 1.01982,6.357384 3.99433,14.144507 5.96272,16.69903 m -9.49591,1.118928 c -5.48823,-6.494671 -7.82411,-12.429228 -9.43968,-18.271886 m -10.25662,0.690526 c 1.41987,3.859116 3.54579,7.89953 5.43599,11.064122 2.05613,3.43569 4.08701,6.25627 5.58439,7.519156 m -9.14686,0.666896 C 642.43674,79.364763 638.88475,74.003662 635.60424,68.217105 m 3.87715,18.424419 C 631.71758,80.997171 627.40534,76.100169 623.57726,70.783388 m 6.8911,17.244878 c -9.0216,-4.712558 -14.09642,-8.991278 -18.51008,-13.877265 m 9.0113,15.883529 c -8.12759,-2.93834 -13.38275,-7.659254 -18.38332,-12.5447 m -10.84114,4.551665 c 2.83369,2.056625 5.76364,4.074348 9.54519,6.040984 3.20031,1.646958 6.73984,3.091485 10.99595,4.39326 m 154.85972,-0.05738 c 5.84178,3.473133 10.85343,10.43209 10.85343,10.43209 M 757.16895,88.63662 c 3.38647,1.973573 6.69976,4.881908 9.31293,7.563655 2.55051,2.617446 4.20773,4.777525 4.20773,4.777525 M 747.42047,88.256757 c 4.88418,1.869296 8.90926,4.992856 11.74157,7.75941 2.80331,2.738222 4.30958,4.972913 4.30958,4.972913 M 740.69936,88.039785 c 9.35088,6.639951 14.91694,15.207525 14.91694,15.207525 m -21.49228,12.05234 c 0.21355,5.1647 2.21992,10.61307 2.21992,10.61307 m -1.63177,-19.5009 c 1.30697,6.12017 4.43272,13.57012 4.43272,13.57012 m -2.3669,-22.426785 c 1.6843,9.148355 6.01785,16.673825 6.01785,16.673825 m -5.34752,-23.132289 c 5.65557,9.249399 10.73821,17.101289 10.73821,17.101289 M 553.31569,79.028138 c 0.31907,0.333824 0.0539,1.103727 -0.58115,1.72285 -0.63503,0.61914 -1.41175,0.864993 -1.7381,0.538014 -0.32636,-0.326985 -0.0765,-1.106314 0.56871,-1.735227 0.64524,-0.628917 1.43145,-0.85948 1.75054,-0.525637 z m 36.4112,22.255582 c 2.98834,-2.379975 -0.10792,-7.003615 -4.90852,-11.716093 -4.75986,-4.672488 -11.23129,-9.13772 -13.44768,-12.001448 -4.28212,-5.532814 -11.17107,-21.027383 -2.7899,-34.587858 1.79095,-2.897718 -0.92639,-1.796997 -6.95505,4.267635 -5.83583,5.870637 -12.68228,14.609049 -18.08092,25.378045 -5.35105,10.674086 -8.37972,21.601502 -8.62281,30.633839 -0.23907,8.88286 2.23916,14.90012 7.03913,16.07102 5.139,-4.70269 11.78244,-12.21372 18.15818,-17.06328 -4.63358,5.68718 -10.646,11.89467 -14.65461,16.70052 2.87391,-0.51169 7.53266,-1.81004 15.19209,-4.92181 7.40184,-3.00712 16.96945,-7.64786 29.07009,-12.76057 z M 555.74614,75.069145 c 0.94295,1.047914 0.11774,3.319722 -1.74878,5.107855 -1.86682,1.788419 -4.17196,2.514394 -5.18117,1.527416 -1.00909,-0.986856 -0.31854,-3.341011 1.6408,-5.216466 1.9596,-1.875713 4.34601,-2.466927 5.28915,-1.418805 z m -2.43045,3.958993 c 0.31907,0.333824 0.0539,1.103727 -0.58115,1.72285 -0.63503,0.61914 -1.41175,0.864993 -1.7381,0.538014 -0.32636,-0.326985 -0.0765,-1.106314 0.56871,-1.735227 0.64524,-0.628917 1.43145,-0.85948 1.75054,-0.525637 z"
- style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text3070"
- y="187.97684"
- x="42.938457"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- y="187.97684"
- x="42.938457"
- id="tspan3072"
- sodipodi:role="line">Transform shape </tspan><tspan
- style="stroke-width:1.06666672px"
- id="tspan3137"
- y="217.31017"
- x="42.938457"
- sodipodi:role="line">into single path</tspan></text>
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 95.434115,-70.206827 C 93.517704,-78.165688 93.091226,-84.356263 89.354302,-84.278446 C 93.227833,-84.197794 93.284303,-90.874822 95.648987,-99.34437 C 94.549549,-94.184237 94.054266,-88.663431 95.598288,-84.278446 C 94.138887,-80.243993 94.259252,-75.187153 95.434115,-70.206827 z M 163.78565,-79.901248 C 163.66556,-82.504242 163.81717,-84.363823 160.95576,-84.278446 C 164.16607,-84.182668 163.44628,-86.528264 163.82954,-89.606705 C 163.80707,-87.470695 164.13697,-85.344582 164.56502,-84.278446 L 164.56502,-84.278436 C 164.19928,-83.367485 163.79594,-81.688072 163.78565,-79.901248 z M 158.91212,-77.957892 C 158.45187,-82.228449 159.61103,-84.374027 155.0618,-84.278446 C 159.9231,-84.176316 158.13043,-86.697682 159.00821,-91.515233 C 158.74234,-88.146293 159.56584,-85.325684 160.95576,-84.278446 C 159.69683,-83.329905 158.7839,-80.870141 158.91212,-77.957892 z M 154.69064,-76.533945 C 154.17292,-80.791225 154.05256,-84.362925 149.90925,-84.278446 C 154.34678,-84.187975 154.08765,-88.258789 154.80568,-92.93596 C 154.4275,-89.685982 154.45257,-86.166715 155.0618,-84.278446 C 154.50867,-82.564043 154.36551,-79.533568 154.69064,-76.533945 z M 131.80712,-70.764756 C 130.28871,-78.243401 130.13382,-84.356174 126.40365,-84.278446 C 130.26538,-84.197981 130.24973,-90.844345 131.95744,-98.703792 C 130.95022,-93.594145 130.8742,-88.250819 132.64283,-84.278446 C 130.95432,-80.606707 130.90472,-75.647227 131.80712,-70.764756 z M 138.56968,-71.977762 C 136.95129,-79.032694 136.52753,-84.360065 132.64283,-84.278446 C 136.66257,-84.193996 136.77607,-90.070651 138.73818,-97.453986 C 137.77098,-92.184573 137.41872,-86.867701 139.00603,-84.278446 C 137.49649,-81.945278 137.55386,-76.978021 138.56968,-71.977762 z M 144.00169,-73.370196 C 142.72296,-79.522753 143.05446,-84.361175 139.00603,-84.278446 C 143.21448,-84.192453 142.74814,-89.53675 144.17966,-96.064288 C 142.97128,-91.634688 142.64705,-86.964322 144.31918,-84.278446 C 142.74472,-81.882157 142.99409,-77.610028 144.00169,-73.370196 z M 149.72248,-74.892609 C 148.76808,-79.941667 148.08728,-84.357614 144.31918,-84.278446 C 148.21211,-84.196659 149.13642,-89.151779 150.11023,-94.490163 C 149.13449,-90.439801 148.85989,-86.259716 149.90925,-84.278446 C 148.92625,-82.566687 148.97888,-78.774472 149.72248,-74.892609 z M 101.67933,-69.239896 C 99.91726,-77.340523 99.205333,-84.354231 95.598288,-84.278446 C 99.33247,-84.199998 99.771308,-91.765707 101.86384,-100.29455 C 100.94909,-95.376091 100.53847,-89.798542 101.60769,-84.278446 C 100.59895,-79.174755 100.72772,-73.994332 101.67933,-69.239896 z M 107.00048,-68.819152 C 104.92094,-77.613899 105.38003,-84.36003 101.60769,-84.278446 C 105.49639,-84.194351 104.71672,-91.457947 107.21074,-100.69028 C 105.82437,-94.999618 105.3417,-88.895565 107.61708,-84.278446 C 105.45271,-80.003367 105.6221,-74.308794 107.00048,-68.819152 z M 113.48163,-68.75544 C 111.40335,-77.596407 111.51221,-84.360282 107.61708,-84.278446 C 111.62608,-84.194223 111.22054,-91.479952 113.67721,-100.73662 C 112.41627,-95.020953 111.94093,-88.88832 113.89077,-84.278446 C 112.03616,-80.010296 112.21228,-74.266663 113.48163,-68.75544 z M 120.05619,-69.120836 C 118.02225,-77.751138 117.79104,-84.359276 113.89077,-84.278446 C 117.90931,-84.19517 117.84181,-91.316877 120.24621,-100.35798 C 119.06689,-94.774587 118.55768,-88.828598 120.16447,-84.278446 C 118.63468,-80.061561 118.84293,-74.494624 120.05619,-69.120836 z M 126.38813,-69.820964 C 124.48676,-77.989381 123.94387,-84.357851 120.16447,-84.278446 C 124.06695,-84.196462 124.36615,-91.098069 126.56596,-99.660228 C 125.56071,-94.358197 125.1589,-88.723356 126.40365,-84.278446 C 125.22123,-80.168381 125.38152,-74.896703 126.38813,-69.820964 z"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ id="path8248" />
<path
- inkscape:connector-curvature="0"
- d="m 236.9781,301.02818 c 0,2.2181 0.70559,3.0409 1.49343,4.46362 -0.59546,2.51604 -0.97611,5.05153 1.12008,7.81136 -0.75142,2.04583 0.20666,4.09166 1.68009,6.13748 -0.2469,1.96285 1.0379,3.67135 2.24015,5.39356 0.216,2.23182 1.4024,4.46363 3.36021,6.69544 -17.73445,-5.57953 -18.91345,-19.20759 -21.65469,-21.76019 -1.45579,-1.35559 -3.03128,-1.19527 -4.15513,-2.89179 -1.12385,-1.69651 -1.79604,-5.24986 -2.93866,-5.84967 1.14262,-0.59981 1.81481,-4.15316 2.93866,-5.84969 1.12385,-1.69651 2.69934,-1.53618 4.15513,-2.89177 2.74124,-2.5526 3.92024,-16.18066 21.65469,-21.76019 -1.95781,2.2318 -3.14421,4.46362 -3.36021,6.69544 -1.20225,1.72221 -2.48705,3.43071 -2.24015,5.39355 -1.47343,2.04583 -2.43151,4.09166 -1.68009,6.13749 -2.09619,2.75983 -1.71554,5.29532 -1.12008,7.81135 -0.78784,1.42273 -1.49343,2.24553 -1.49343,4.46363 m -18.85453,-9.57821 c -0.54399,1.12008 -0.89776,2.51352 -0.97118,3.94306 m -3.63405,-7.11564 c -0.78399,1.73489 -1.33132,3.43898 -1.5087,5.07988 m -59.43599,-25.96293 c -4.69635,5.73633 -6.72702,11.99795 -8.14718,17.61184 m 63.10047,6.83564 c 0.31215,-2.23275 0.74861,-4.56473 1.99816,-6.7009 m -26.36961,0.54855 c 1.13015,-5.27994 2.95082,-11.06561 7.00726,-15.89498 m 0.22553,17.2281 c 1.05079,-4.38191 2.45208,-9.31287 5.59872,-13.90806 m 0.20552,15.3904 c 0.82201,-3.64434 2.25079,-7.6032 5.23357,-11.26877 m 1.09237,12.94785 c 0.69396,-3.40486 1.55774,-6.8818 3.10413,-9.43785 m -54.56694,3.2465 c 1.3761,-6.08125 3.28104,-12.55472 7.63081,-17.34065 m -1.92745,16.91854 c 1.38686,-5.49523 3.62774,-11.60617 8.54327,-17.38504 m -1.6457,17.33561 c 1.35952,-5.48797 3.42956,-11.59023 7.88723,-17.36344 m -0.8803,17.76732 c 1.36523,-5.53777 3.34829,-11.73071 7.62679,-17.53601 m 6.22672,1.14509 c -2.09205,2.10584 -5.42827,9.27395 -7.11244,17.13519 m -33.2073,31.41696 c -2.04418,-8.48946 -2.49908,-15.09273 -6.48514,-15.00973 4.13176,0.0861 4.192,-7.03613 6.71433,-16.07032 -1.17273,5.50414 -1.70103,11.39301 -0.0541,16.07032 -1.55669,4.30342 -1.4283,9.69738 -0.17511,15.00973 z m 72.9083,-10.34072 c -0.1281,-2.77652 0.0336,-4.76007 -3.01855,-4.66901 3.42433,0.10218 2.65655,-2.3998 3.06536,-5.68347 -0.024,2.2784 0.32793,4.54626 0.78452,5.68347 v 10e-6 c -0.39013,0.97169 -0.82036,2.76306 -0.83133,4.669 z m -5.19843,2.07292 c -0.49094,-4.55527 0.7455,-6.84388 -4.10701,-6.74193 5.18539,0.10894 3.2732,-2.58051 4.2095,-7.71923 -0.28359,3.59353 0.59481,6.60218 2.07739,7.71923 -1.34286,1.01177 -2.31665,3.63553 -2.17988,6.74193 z m -4.50292,1.51887 c -0.55223,-4.5411 -0.68061,-8.35091 -5.10014,-8.2608 4.73336,0.0965 4.45696,-4.2457 5.22285,-9.23468 -0.40339,3.46665 -0.37665,7.22052 0.2732,9.23468 -0.59001,1.8287 -0.74271,5.0612 -0.39591,8.2608 z m -24.40908,6.1538 c -1.61964,-7.97722 -1.78486,-14.4975 -5.7637,-14.4146 4.11917,0.0859 4.10248,-7.00363 5.92404,-15.38703 -1.07437,5.45029 -1.15546,11.14983 0.73108,15.38703 -1.80108,3.91652 -1.85398,9.20663 -0.89142,14.4146 z m 7.21339,-1.29387 c -1.72628,-7.52526 -2.17829,-13.20779 -6.32197,-13.12073 4.28772,0.09 4.40879,-6.17835 6.50171,-14.05391 -1.03168,5.62071 -1.40743,11.29204 0.2857,14.05391 -1.61017,2.48871 -1.54898,7.78712 -0.46544,13.12073 z m 5.79415,-1.48527 c -1.36398,-6.56272 -1.01038,-11.72371 -5.32871,-11.63546 4.48902,0.0917 3.99159,-5.60886 5.51854,-12.57157 -1.28894,4.72491 -1.63478,9.70664 0.14882,12.57157 -1.67942,2.55604 -1.41343,7.11298 -0.33865,11.63546 z m 6.10217,-1.6239 c -1.01802,-5.38566 -1.74421,-10.096 -5.76352,-10.01156 4.15246,0.0872 5.13839,-5.19822 6.17712,-10.89249 -1.04079,4.32038 -1.33369,8.77913 -0.21437,10.89249 -1.04854,1.82587 -0.9924,5.87091 -0.19923,10.01156 z m -51.24602,6.02956 c -1.87954,-8.64066 -2.63894,-16.12195 -6.48645,-16.04112 3.98313,0.0836 4.45123,-7.98641 6.68326,-17.08384 -0.97574,5.24635 -1.41373,11.19574 -0.27323,17.08384 -1.07599,5.44393 -0.93863,10.96973 0.0764,16.04112 z m 5.67589,0.4488 c -2.21818,-9.38107 -1.72848,-16.57694 -5.75231,-16.48992 4.14795,0.0897 3.3163,-7.65814 5.97659,-17.50595 -1.4788,6.07003 -1.99364,12.58103 0.43343,17.50595 -2.30866,4.56008 -2.12798,10.6343 -0.65771,16.48992 z m 6.91323,0.0679 c -2.21683,-9.43036 -2.10072,-16.64516 -6.25552,-16.55787 4.27626,0.0898 3.84369,-7.6816 6.46414,-17.55538 -1.34501,6.09671 -1.85204,12.63818 0.22779,17.55538 -1.97825,4.55269 -1.79039,10.67924 -0.43641,16.55787 z m 7.01286,-0.38976 c -2.16953,-9.20565 -2.41616,-16.25433 -6.57645,-16.16811 4.28645,0.0888 4.21445,-7.50766 6.77914,-17.1515 -1.25794,5.95561 -1.8011,12.298 -0.0872,17.1515 -1.63177,4.49801 -1.40964,10.43608 -0.1155,16.16811 z m 6.75407,-0.74679 c -2.02813,-8.71298 -2.60721,-15.50602 -6.63857,-15.42132 4.16265,0.0875 4.48179,-7.27426 6.82826,-16.40724 -1.07227,5.6555 -1.50087,11.666 -0.17313,16.40724 -1.26125,4.38407 -1.09028,10.0072 -0.0165,15.42132 z m 39.89069,-10.75231 c -0.01,1.7421 0.3494,3.58087 1.01799,4.95751 m -6.21642,-2.88459 c 0.0842,1.91191 0.6677,3.96934 1.61119,6.05718 m -3.99324,3.13647 c -1.4337,-2.45099 -1.81556,-5.16413 -2.12087,-7.67478 m -1.78164,12.06954 c -2.13041,-2.94753 -2.84883,-6.78007 -3.51773,-10.31878 m -0.67877,13.82879 c -3.19864,-4.04216 -4.6245,-8.36105 -5.4234,-12.20489 m -5.79415,1.48527 c 1.28542,6.32733 3.92825,12.7255 5.77846,14.84124 m -5.82425,3.32004 c -4.2757,-5.21321 -6.05369,-11.38111 -7.1676,-16.86741 m -5.78026,1.00672 c 1.6284,8.21101 5.13474,15.93943 7.30213,18.12111 m -6.22672,1.14509 c -4.49743,-6.21803 -6.47787,-12.78432 -7.82948,-18.51941 m 1.08299,18.75071 c -4.68477,-6.18069 -6.75905,-12.6742 -8.09585,-18.36095 m 1.85432,18.33311 c -5.17825,-6.20167 -7.41897,-12.69767 -8.76755,-18.40106 m 2.15173,17.93457 c -4.57011,-5.15563 -6.45359,-12.06658 -7.82762,-18.38337 m -6.66156,-1.0314 c 1.40226,5.82363 3.41566,12.4906 8.37637,18.67244 m 84.77781,-53.81681 c 2.6135,-2.78977 6.16039,-3.71969 6.16039,-3.71969 m -10.08064,9.48522 c 3.17354,-2.78977 7.84049,-4.09167 7.84049,-4.09167 m -10.82735,11.34506 c 4.29361,-4.8356 9.14726,-5.20757 9.14726,-5.20757 m -11.3874,10.04317 c 5.41369,-2.23182 10.26732,-2.23182 10.26732,-2.23182 m -1.12007,24.55034 c 2.6135,2.78977 6.16039,3.71969 6.16039,3.71969 m -10.08064,-9.48522 c 3.17354,2.78977 7.84049,4.09166 7.84049,4.09166 m -10.82735,-11.34506 c 4.29361,4.83561 9.14726,5.20758 9.14726,5.20758 m -11.3874,-10.04317 c 5.41369,2.23181 10.26732,2.23181 10.26732,2.23181 M 129.63799,290.14771 c 0,0.46199 -0.33453,0.83693 -0.74672,0.83693 -0.41218,0 -0.7467,-0.37494 -0.7467,-0.83693 0,-0.46199 0.33452,-0.83693 0.7467,-0.83693 0.41219,0 0.74672,0.37494 0.74672,0.83693 z m 7.00044,40.7306 c 5.04032,-0.093 0,-22.7831 0,-30.0365 0,-7.25339 2.06755,-23.02529 7.65383,-30.22248 5.68086,-7.31907 -36.60362,16.99572 -33.50878,35.98801 3.45354,1.95284 8.68054,2.97575 12.88081,4.55662 -3.92026,0.27897 -8.49388,-0.92992 -11.76075,-1.76686 1.86679,3.90568 8.40053,14.69278 24.73489,21.48121 z m -4.94696,-41.98599 c 0,1.41163 -0.98268,2.55729 -2.19348,2.55729 -1.21079,0 -2.19347,-1.14566 -2.19347,-2.55729 0,-1.41162 0.98268,-2.55728 2.19347,-2.55728 1.2108,0 2.19348,1.14566 2.19348,2.55728 z m -2.05348,1.25539 c 0,0.46199 -0.33453,0.83693 -0.74672,0.83693 -0.41218,0 -0.7467,-0.37494 -0.7467,-0.83693 0,-0.46199 0.33452,-0.83693 0.7467,-0.83693 0.41219,0 0.74672,0.37494 0.74672,0.83693 z"
- style="fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:0.56666666;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3076" />
- <text
- id="text3121"
- y="397.61752"
- x="166.70224"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- y="397.61752"
- x="166.70224"
- id="tspan3123"
- sodipodi:role="line">Copy to clipboard</tspan><tspan
- style="font-size:12.80000019px;stroke-width:1.06666672px"
- id="tspan3143"
- y="426.95087"
- x="166.70224"
- sodipodi:role="line">(it is easiest later on to move the nose</tspan><tspan
- style="font-size:12.80000019px;stroke-width:1.06666672px"
- id="tspan3145"
- y="456.28418"
- x="166.70224"
- sodipodi:role="line">of the fish to the top-left corner of the </tspan><tspan
- id="tspan3153"
- style="font-size:12.80000019px;stroke-width:1.06666672px"
- y="485.61752"
- x="166.70224"
- sodipodi:role="line">document (0,0) before copying to the </tspan><tspan
- id="tspan3163"
- style="font-size:12.80000019px;stroke-width:1.06666672px"
- y="514.95087"
- x="166.70224"
- sodipodi:role="line">clipboard, so you don't have to manually </tspan><tspan
- id="tspan3169"
- style="font-size:12.80000019px;stroke-width:1.06666672px"
- y="544.28418"
- x="166.70224"
- sodipodi:role="line">tweak the origin parameter)</tspan></text>
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 163.78565,-79.901248 C 163.77625,-78.26803 164.11321,-76.544183 164.74002,-75.253577 M 158.91212,-77.957892 C 158.99104,-76.165471 159.53809,-74.23663 160.42261,-72.279278 M 156.67895,-69.338835 C 155.33486,-71.636639 154.97686,-74.180211 154.69064,-76.533945 M 153.02035,-65.218749 C 151.02309,-67.982062 150.34957,-71.575067 149.72248,-74.892609 M 149.08613,-61.928118 C 146.0874,-65.717641 144.75066,-69.766598 144.00169,-73.370196 M 138.56968,-71.977762 C 139.77476,-66.045887 142.25241,-60.047612 143.98698,-58.064104 M 138.52675,-54.95156 C 134.51828,-59.838949 132.85141,-65.621355 131.80712,-70.764756 M 126.38813,-69.820964 C 127.91475,-62.123141 131.20195,-54.877738 133.23388,-52.832416 M 127.39633,-51.758902 C 123.17999,-57.588297 121.32332,-63.744202 120.05619,-69.120836 M 121.07149,-51.542047 C 116.67952,-57.336447 114.73488,-63.424118 113.48163,-68.75544 M 115.22006,-51.568146 C 110.36545,-57.382218 108.26477,-63.472221 107.00048,-68.819152 M 109.01773,-52.005485 C 104.73325,-56.838892 102.96749,-63.317905 101.67933,-69.239896 M 95.434115,-70.206827 C 96.748742,-64.747184 98.636303,-58.496896 103.28697,-52.701417"
+ sodipodi:nodetypes="cccccccccccccccccccccccccc"
+ id="path8242" />
<path
- inkscape:connector-curvature="0"
- id="path3125"
- d="m 471.06011,330.68404 c 69.45926,-60.61899 140.18141,-59.3561 191.96015,6.31449"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <text
- id="text3127"
- y="388.77725"
- x="463.48273"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- y="388.77725"
- x="463.48273"
- id="tspan3129"
- sodipodi:role="line">Draw the skeleton path</tspan></text>
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 182.76616,-103.15468 C 185.21632,-105.77009 188.54153,-106.64189 188.54153,-106.64189 M 179.09093,-97.749501 C 182.06612,-100.36491 186.44139,-101.58544 186.44139,-101.58544 M 176.29075,-90.949443 C 180.31601,-95.482818 184.8663,-95.831539 184.8663,-95.831539 M 174.19062,-86.416069 C 179.26595,-88.508395 183.81623,-88.508395 183.81623,-88.508395"
+ sodipodi:nodetypes="cccccccc"
+ id="path8129" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path8131"
+ sodipodi:nodetypes="cccccccc"
+ d="M 182.76616,-65.492461 C 185.21632,-62.877054 188.54153,-62.00525 188.54153,-62.00525 M 179.09093,-70.897639 C 182.06612,-68.282232 186.44139,-67.061705 186.44139,-67.061705 M 176.29075,-77.697698 C 180.31601,-73.164324 184.8663,-72.815601 184.8663,-72.815601 M 174.19062,-82.231072 C 179.26595,-80.138746 183.81623,-80.138746 183.81623,-80.138746" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ d="M 81.784785,-94.523832 C 81.784785,-94.090718 81.471164,-93.739209 81.084742,-93.739209 C 80.698316,-93.739209 80.3847,-94.090718 80.3847,-94.523832 C 80.3847,-94.956945 80.698316,-95.308454 81.084742,-95.308454 C 81.471164,-95.308454 81.784785,-94.956945 81.784785,-94.523832 z"
+ id="path8135" />
+ <path
+ style="fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 88.347703,-56.338886 C 93.073,-56.426068 88.347703,-77.698048 88.347703,-84.498107 C 88.347703,-91.298166 90.286027,-106.08432 95.523156,-112.83169 C 100.84897,-119.69332 61.207272,-96.898202 64.108675,-79.092934 C 67.346381,-77.262144 72.246688,-76.303163 76.184435,-74.821095 C 72.509204,-74.55956 68.221432,-75.692904 65.158736,-76.477526 C 66.90885,-72.815951 73.034237,-62.703045 88.347703,-56.338886 z M 83.709918,-95.700756 C 83.709918,-94.377361 82.788657,-93.3033 81.653539,-93.3033 C 80.518416,-93.3033 79.597155,-94.377361 79.597155,-95.700756 C 79.597155,-97.024152 80.518416,-98.098213 81.653539,-98.098213 C 82.788657,-98.098213 83.709918,-97.024152 83.709918,-95.700756 z"
+ id="path8123" />
+ <path
+ style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+ id="path9876"
+ d="M 81.784785,-94.523832 C 81.784785,-94.090718 81.471164,-93.739209 81.084742,-93.739209 C 80.698316,-93.739209 80.3847,-94.090718 80.3847,-94.523832 C 80.3847,-94.956945 80.698316,-95.308454 81.084742,-95.308454 C 81.471164,-95.308454 81.784785,-94.956945 81.784785,-94.523832 z" />
+ </g>
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Lend);stroke-opacity:1"
+ id="path10580"
+ sodipodi:nodetypes="cc"
+ d="M 413.47727,254.19401 L 510.07072,254.19401"
+ transform="translate(-31.967048,-168.123)" />
+ <path
+ style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 703.788,96.4602 C 702.086,97.655 702.215,99.1793 701.903,101.117 C 700.62,101.318 699.396,101.625 698.484,102.44 C 697.571,103.255 696.979,104.574 696.855,106.78 C 695.701,106.756 694.95,107.361 694.437,108.339 C 693.925,109.318 693.648,110.673 693.441,112.187 C 691.659,112.795 691.347,115.374 690.825,117.765 C 689.155,119.067 688.208,121.638 687.537,125.057 C 685.968,118.807 684.739,113.665 684.009,109.26 C 683.28,104.855 683.032,101.193 683.079,98.0952 C 683.125,94.9971 683.461,92.4698 683.704,90.3993 C 683.947,88.3288 684.092,86.7148 683.639,85.4472 C 683.158,84.1008 682.363,82.9786 681.628,81.8897 C 680.892,80.8007 680.217,79.7439 679.952,78.4839 C 679.687,77.2239 679.83,75.7547 679.863,74.3718 C 679.896,72.989 679.818,71.6919 679.126,70.8139 C 680.158,71.2442 681.433,71.0074 682.802,70.6916 C 684.171,70.3758 685.633,69.9804 686.999,70.0891 C 688.365,70.1978 689.627,70.8093 690.912,71.5318 C 692.198,72.2542 693.506,73.0867 695.01,73.6545 C 696.426,74.189 698.152,74.1437 700.434,74.1761 C 702.717,74.2086 705.561,74.3111 709.168,75.2844 C 712.774,76.2578 717.169,78.0963 722.282,81.8489 C 724.839,83.7252 727.569,86.0847 730.396,89.0831 C 733.224,92.0815 736.151,95.7196 739.024,100.16 C 735.123,96.8979 731.944,95.5577 729.877,96.144 C 728.513,95.346 727.121,94.5408 725.907,94.1211 C 724.693,93.7015 723.663,93.6652 723.014,94.3701 C 721.365,93.4914 719.854,92.9004 718.668,92.8261 C 717.482,92.7519 716.624,93.1913 716.239,94.3674 C 713.972,93.227 712.447,93.2138 711.338,93.7388 C 710.229,94.2638 709.526,95.3353 708.868,96.4757 C 706.901,95.9282 705.49,95.2653 703.788,96.46 M 684.549,63.6646 C 683.029,63.8277 681.682,64.4615 680.772,65.4556 M 678.428,55.7566 C 677.863,55.8759 677.326,56.0144 676.823,56.1728 M 676.823,56.1728 C 676.823,56.1728 676.823,56.1728 676.823,56.1728 C 675.312,56.6513 674.101,57.3064 673.274,58.1543 M 548.902,28.1389 C 544.885,32.7169 542.672,36.934 541.42,40.6914 M 541.42,40.6914 C 540.11,44.6516 539.866,48.1057 539.91,51.2147 M 666.026,52.5041 C 667.541,50.9269 669.342,49.37 672.652,48.9061 M 619.088,33.4258 C 620.482,31.0536 622.312,28.6039 625.072,26.3717 C 627.833,24.1395 631.533,22.1131 636.664,20.8005 M 634.059,36.7515 C 635.541,34.95 637.273,33.0749 639.651,31.3578 C 642.028,29.6408 645.056,28.0745 649.151,27.0272 M 645.521,40.9995 C 646.825,39.6036 648.482,38.2389 650.751,37.1043 C 653.021,35.9698 655.907,35.0607 659.662,34.6801 M 657.351,46.8243 C 659.882,44.4128 662.859,42.1084 666.963,41.3902 M 552.051,43.7596 C 552.21,40.5524 552.673,37.119 554.145,33.5079 C 555.616,29.8969 558.101,26.0897 562.398,22.3656 M 563.277,38.7965 C 563.829,35.871 564.843,32.6412 566.991,29.1192 C 569.139,25.5972 572.423,21.7629 577.666,17.9096 M 577.507,34.5861 C 578.344,31.7478 579.596,28.6765 581.873,25.4486 C 584.149,22.2207 587.453,18.8197 592.509,15.5602 M 592.397,32.3343 C 593.541,29.582 595.074,26.6413 597.587,23.6587 C 600.101,20.6761 603.599,17.6364 608.773,14.9191 M 623.691,16.7511 C 620.915,17.5318 617.213,19.6797 613.912,22.7059 M 613.912,22.7059 C 611.041,25.3366 608.488,28.6187 606.857,32.0665 M 554.466,76.4218 C 550.958,73.8869 548.121,71.5015 545.408,70.2564 C 544.052,69.6338 542.721,69.302 541.348,69.4095 C 539.975,69.5171 538.556,70.0644 537.059,71.2086 C 538.635,70.0548 539.601,68.8832 540.16,67.5905 C 540.719,66.2978 540.871,64.8869 540.82,63.2972 C 540.769,61.7076 540.515,59.9406 540.282,57.9445 C 540.049,55.9483 539.836,53.7228 539.91,51.2147 C 540.154,54.0715 540.818,56.7997 542.046,59.0619 C 543.274,61.3242 545.058,63.1168 547.518,64.1997 C 547.285,66.6848 547.944,68.9561 549.195,70.9898 C 550.446,73.0235 552.289,74.8245 554.466,76.4218 L 554.466,76.4218 M 674.969,73.2281 C 675.643,72.1097 676.317,71.2188 676.23,70.1954 C 676.143,69.1721 675.296,67.9907 672.854,66.4413 C 675.541,68.2597 676.863,68.5628 677.872,68.1086 C 678.88,67.6544 679.536,66.4564 680.772,65.4556 C 679.472,67.1492 678.767,69.2654 678.816,70.6366 L 678.816,70.6366 C 677.679,70.919 676.04,71.7988 674.969,73.2281 L 674.969,73.2281 M 666.093,69.6527 C 666.82,67.5978 667.937,66.3968 667.901,65.1446 C 667.883,64.5185 667.573,63.8758 666.757,63.1179 C 665.941,62.36 664.62,61.4828 662.566,60.4539 C 664.738,61.5988 666.207,62.274 667.286,62.549 C 668.365,62.824 669.05,62.7031 669.599,62.32 C 670.697,61.5538 671.218,59.7254 673.274,58.1543 C 671.678,60.0004 671.257,62.2204 671.778,64.2011 M 671.778,64.2011 C 671.986,64.994 672.347,65.7509 672.854,66.4413 C 672.042,66.2568 671.208,66.238 670.409,66.3793 M 670.409,66.3793 C 668.603,66.6984 666.991,67.8367 666.093,69.6527 L 666.093,69.6527 M 658.404,67.0212 C 658.929,64.9024 659.532,63.0109 659.055,61.2098 C 658.816,60.3093 658.304,59.4304 657.364,58.5749 C 656.424,57.7193 655.055,56.885 653.107,56.1185 C 655.176,56.9814 656.772,57.435 658.085,57.5495 C 659.397,57.664 660.423,57.4411 661.308,56.9869 C 663.079,56.0786 664.272,54.2346 666.026,52.5041 C 663.822,55.0279 662.334,58.2126 662.566,60.4539 C 660.789,61.4673 659.211,64.0691 658.404,67.0212 L 658.404,67.0212 M 616.6,61.2576 C 615.964,58.9729 615.487,56.8301 614.949,54.9374 C 614.411,53.0446 613.809,51.4015 612.886,50.1333 M 612.886,50.1333 C 611.635,48.4141 609.773,47.3699 606.73,47.4495 C 609.795,47.4326 611.657,46.4911 613.084,44.8322 M 613.084,44.8322 C 614.187,43.5507 615.018,41.8496 615.904,39.8898 C 616.79,37.93 617.726,35.711 619.088,33.4258 C 617.746,35.8823 616.997,38.4554 616.993,40.9319 C 616.988,43.4085 617.723,45.7839 619.322,47.9248 C 617.455,49.5978 616.465,51.7013 616.098,53.991 C 615.731,56.2808 615.982,58.7612 616.6,61.2576 L 616.6,61.2576 M 628.827,61.692 C 628.061,57.9489 627.623,54.7272 626.427,52.3079 C 625.232,49.8886 623.234,48.2417 619.322,47.9248 C 621.342,48.1308 622.904,47.9681 624.215,47.4815 C 625.526,46.9948 626.584,46.1859 627.569,45.1353 C 629.538,43.0341 631.184,39.9478 634.059,36.7515 C 632.484,39.1268 631.314,41.6064 630.877,43.8767 C 630.439,46.1469 630.724,48.1995 632.039,49.7863 C 630.313,50.628 629.282,52.3033 628.807,54.4112 C 628.331,56.519 628.401,59.0617 628.827,61.692 L 628.827,61.692 M 638.781,62.6732 C 638.517,59.3916 638.803,56.6194 638.199,54.4226 C 637.897,53.3242 637.365,52.3687 636.403,51.5811 C 635.442,50.7935 634.048,50.1711 632.039,49.7863 C 634.119,50.2284 635.68,50.271 636.949,49.9727 C 638.217,49.6743 639.19,49.0372 640.057,48.1605 C 641.791,46.407 643.072,43.6791 645.521,40.9995 C 643.607,42.7433 642.213,44.7224 641.617,46.6921 C 641.022,48.6618 641.218,50.614 642.454,52.3833 C 640.587,53.0775 639.516,54.5199 638.993,56.3443 C 638.47,58.1687 638.488,60.3793 638.781,62.6732 L 638.781,62.6732 M 649.261,64.6844 C 649.378,62.0121 649.505,59.517 648.695,57.3794 C 647.885,55.2418 646.113,53.4321 642.454,52.3833 C 646.211,53.5452 648.878,53.2337 651.171,52.0674 C 653.465,50.9011 655.351,48.8883 657.351,46.8243 C 655.593,48.2917 654.224,49.9667 653.452,51.5955 C 652.679,53.2243 652.497,54.8025 653.107,56.1185 C 651.866,56.5384 650.936,57.6554 650.306,59.1774 C 649.676,60.6995 649.343,62.6265 649.261,64.6844 L 649.261,64.6844 M 564.684,72.1251 C 562.62,70.116 560.728,68.1737 558.895,66.592 C 557.063,65.0104 555.285,63.7903 553.434,63.2676 M 553.434,63.2676 C 551.562,62.7382 549.605,62.9256 547.518,64.1997 C 549.674,62.9445 550.821,61.3966 551.42,59.4836 M 551.42,59.4836 C 552.026,57.551 552.065,55.2562 552.004,52.6236 C 551.943,49.991 551.778,47.0218 552.051,43.7596 C 552.121,46.4319 552.585,49.1174 553.583,51.6315 C 554.58,54.1456 556.108,56.4853 558.248,58.5352 C 558.544,64.022 561.168,68.5132 564.684,72.1251 L 564.684,72.1251 M 573.518,68.9754 C 570.319,65.4476 568.19,62.1104 566.052,59.9721 C 564.983,58.903 563.902,58.1402 562.649,57.8436 C 561.397,57.547 559.969,57.7158 558.248,58.5352 C 560.039,57.7287 561.124,56.79 561.775,55.6354 C 562.426,54.4809 562.64,53.1147 562.684,51.506 C 562.727,49.8974 562.598,48.0479 562.59,45.9362 C 562.582,43.8245 562.693,41.4492 563.277,38.7965 C 562.721,42.009 562.803,45.1324 563.771,47.7748 C 564.739,50.4171 566.58,52.5699 569.505,54.0032 C 568.135,56.7362 568.122,59.4196 568.953,61.9316 C 569.784,64.4437 571.454,66.7971 573.518,68.9754 L 573.518,68.9754 M 584.471,65.8004 C 581.668,61.9235 579.754,58.3977 577.658,56.089 C 576.61,54.9347 575.508,54.0897 574.196,53.6919 C 572.884,53.2941 571.359,53.3428 569.505,54.0032 C 571.426,53.3633 572.689,52.511 573.555,51.3972 C 574.422,50.2833 574.889,48.9114 575.206,47.283 C 575.523,45.6545 575.689,43.7708 575.974,41.6477 C 576.259,39.5245 576.662,37.1609 577.507,34.5861 C 576.75,37.6988 576.56,40.8069 577.187,43.5611 C 577.813,46.3152 579.246,48.7081 581.683,50.5112 C 580.337,53.0116 580.181,55.6464 580.785,58.2358 C 581.388,60.8251 582.746,63.3784 584.471,65.8004 L 584.471,65.8004 M 595.808,63.3834 C 593.496,59.3226 591.86,55.7157 589.88,53.2848 C 588.891,52.0693 587.807,51.1514 586.484,50.6465 C 585.162,50.1416 583.598,50.0488 581.683,50.5112 C 583.666,50.0753 585.058,49.3604 586.105,48.3506 C 587.152,47.3407 587.851,46.0387 588.429,44.474 C 589.007,42.9093 589.461,41.0828 590.035,39.0415 C 590.608,37.0001 591.301,34.7429 592.397,32.3343 C 591.391,35.2673 590.871,38.252 591.094,41.0004 C 591.316,43.7489 592.274,46.2547 594.161,48.3159 C 592.882,50.5959 592.602,53.1138 592.987,55.6755 C 593.371,58.2373 594.415,60.8491 595.808,63.3834 L 595.808,63.3834 M 606.931,61.9035 C 605.18,57.8473 603.869,54.2609 602.074,51.7565 C 600.279,49.252 597.945,47.8137 594.161,48.3159 C 596.119,48.0973 597.582,47.5441 598.762,46.6752 C 599.941,45.8064 600.835,44.6239 601.632,43.184 C 603.227,40.304 604.401,36.3798 606.857,32.0665 C 605.744,34.7321 605.052,37.4888 604.977,40.1187 C 604.901,42.7486 605.437,45.2476 606.73,47.4495 C 605.568,49.5229 605.153,51.8867 605.262,54.3503 C 605.37,56.8139 605.998,59.3806 606.931,61.9035 L 606.931,61.9035 M 674.969,73.2281 C 673.99,74.5345 673.499,76.3041 673.647,78.035 M 666.093,69.6527 C 665.461,70.9291 665.262,72.5631 665.348,74.4334 C 665.348,74.4334 665.348,74.4334 665.348,74.4334 M 665.348,74.4334 C 665.37,74.9243 665.412,75.4317 665.472,75.9534 M 658.247,75.0706 C 657.288,71.9192 657.824,69.3641 658.404,67.0212 M 650.767,75.8796 C 649.828,73.9134 649.401,72.0002 649.24,70.131 C 649.078,68.2619 649.183,66.4402 649.261,64.6844 M 643.462,76.3294 C 641.862,73.6766 640.751,71.2364 640.02,68.9653 C 639.289,66.6943 638.936,64.5953 638.781,62.6732 M 628.827,61.692 C 629.334,64.8123 630.289,68.0584 631.313,70.8618 C 632.337,73.6652 633.435,76.0263 634.469,77.3598 M 625.515,78.3962 C 622.981,75.4165 621.097,72.4774 619.685,69.5954 C 618.273,66.7134 617.334,63.894 616.6,61.2576 M 606.931,61.9035 C 608.301,65.6068 610.225,69.2282 612.058,72.2764 M 612.058,72.2764 C 614.015,75.5255 615.888,78.1194 617.33,79.328 M 608.697,79.9504 C 605.617,77.0301 603.082,74.1862 600.991,71.4057 C 598.899,68.6253 597.249,65.9132 595.808,63.3834 M 599.453,80.6551 C 595.939,78.1179 593.011,75.6095 590.567,73.1135 C 588.122,70.6175 586.161,68.1383 584.471,65.8004 M 590.947,81.9639 C 586.857,79.8437 583.449,77.7151 580.6,75.5329 C 577.751,73.3507 575.463,71.1201 573.518,68.9754 M 581.985,83.8599 C 578.234,82.5173 575.046,80.726 572.224,78.68 C 569.403,76.6341 566.956,74.3366 564.684,72.1251 M 554.466,76.4218 C 557.059,78.2963 559.957,80.2718 563.44,82.0701 M 563.44,82.0701 C 566.416,83.5908 569.817,84.9665 573.792,86.168 M 719.672,86.3149 C 722.385,87.9339 724.985,90.3657 726.854,92.424 C 728.722,94.4824 729.877,96.144 729.877,96.144 M 710.296,82.7402 C 713.403,84.5571 716.659,87.4066 719.055,89.8697 C 721.452,92.3327 723.014,94.3701 723.014,94.3701 M 701.139,82.3627 C 705.675,84.1088 709.551,87.108 712.183,89.6824 C 714.814,92.2567 716.239,94.3674 716.239,94.3674 M 694.824,82.1438 C 699.163,85.2307 702.738,88.8307 705.154,91.6486 C 707.569,94.4665 708.868,96.4757 708.868,96.4757 M 688.714,107.766 C 688.822,110.219 689.378,112.701 689.874,114.588 C 690.37,116.475 690.825,117.765 690.825,117.765 M 689.243,99.4045 C 689.869,102.303 690.979,105.471 691.863,107.944 C 692.748,110.416 693.441,112.187 693.441,112.187 M 691.162,91.08 C 691.979,95.4605 693.417,99.3205 694.628,102.154 C 695.838,104.988 696.855,106.78 696.855,106.78 M 691.776,85.0097 C 694.464,89.395 696.999,93.3863 698.851,96.3228 C 700.703,99.2593 701.903,101.117 701.903,101.117 M 518.337,73.6736 C 518.636,73.9866 518.386,74.7089 517.787,75.2931 C 517.188,75.8772 516.459,76.1083 516.153,75.8017 C 515.847,75.4952 516.085,74.7613 516.691,74.1707 C 517.297,73.5801 518.037,73.3606 518.337,73.6736 L 518.337,73.6736 M 552.518,94.4998 C 553.963,93.3487 553.916,91.7357 552.97,89.8167 C 552.024,87.8978 550.163,85.6946 547.929,83.506 C 545.696,81.3174 543.086,79.1517 540.747,77.2256 C 538.409,75.2995 536.348,73.6069 535.309,72.2646 C 533.231,69.5798 530.669,64.7219 529.561,58.8646 C 529.007,55.936 528.825,52.7564 529.273,49.5079 C 529.721,46.2595 530.803,42.9395 532.75,39.7996 C 533.74,38.203 533.471,37.9068 532.239,38.6489 C 531.008,39.391 528.829,41.1808 526.204,43.8167 C 523.58,46.4526 520.523,49.9402 517.535,54.02 C 514.547,58.0998 511.636,62.7715 509.17,67.6762 C 506.703,72.5809 504.684,77.7142 503.293,82.6546 C 501.902,87.595 501.136,92.3372 501.018,96.4751 C 500.899,100.613 501.42,104.143 502.529,106.746 C 503.638,109.348 505.328,111.022 507.597,111.573 C 510.013,109.357 512.736,106.455 515.653,103.559 C 518.57,100.664 521.68,97.7797 524.68,95.4938 C 522.498,98.1714 519.978,100.936 517.547,103.634 C 515.115,106.332 512.772,108.962 510.886,111.225 C 512.106,111.005 513.941,110.571 516.335,109.817 C 518.729,109.062 521.681,107.988 525.16,106.566 C 528.639,105.144 532.644,103.373 537.189,101.318 C 541.734,99.2631 546.817,96.918 552.518,94.4998 L 552.518,94.4998 M 520.628,69.9505 C 521.512,70.9335 520.745,73.0561 518.975,74.7515 C 517.205,76.4468 515.051,77.1215 514.104,76.1961 C 513.158,75.2707 513.824,73.046 515.656,71.293 C 517.487,69.54 519.743,68.9675 520.628,69.9505 L 520.628,69.9505 M 518.337,73.6736 C 518.636,73.9866 518.386,74.7089 517.787,75.2931 C 517.188,75.8772 516.459,76.1083 516.153,75.8017 C 515.847,75.4952 516.085,74.7613 516.691,74.1707 C 517.297,73.5801 518.037,73.3606 518.337,73.6736 L 518.337,73.6736"
+ id="path2459"
+ inkscape:path-effect="#path-effect2461"
+ inkscape:original-d="M 503.49518,109.44533 C 555.807,22.673092 673.35319,31.460958 712.72285,112.87823"
+ sodipodi:nodetypes="cc" />
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="101.82097"
+ y="192.80379"
+ id="text3070"
+ transform="translate(-61.566164,-16.575507)"><tspan
+ sodipodi:role="line"
+ id="tspan3072"
+ x="101.82097"
+ y="192.80379">Transform shape </tspan><tspan
+ sodipodi:role="line"
+ x="101.82097"
+ y="220.30379"
+ id="tspan3137">into single path</tspan></text>
+ <path
+ id="path3076"
+ style="fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:0.53125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
+ d="M 222.16697,282.21392 C 222.16697,284.29339 222.82846,285.06476 223.56706,286.39856 C 223.00882,288.75735 222.65196,291.13437 224.61713,293.72171 C 223.91268,295.63968 224.81088,297.55764 226.19222,299.4756 C 225.96075,301.31577 227.16525,302.91749 228.29236,304.53206 C 228.49486,306.62439 229.60711,308.71672 231.44256,310.80904 C 214.81651,305.57823 213.7112,292.80192 211.14128,290.40886 C 209.77648,289.13799 208.29946,289.28829 207.24585,287.69781 C 206.19224,286.10733 205.56206,282.77606 204.49086,282.21374 C 205.56206,281.65142 206.19224,278.32015 207.24585,276.72966 C 208.29946,275.13918 209.77648,275.28949 211.14128,274.01862 C 213.7112,271.62556 214.81651,258.84925 231.44256,253.61844 C 229.60711,255.71076 228.49486,257.80309 228.29236,259.89542 C 227.16525,261.50999 225.96075,263.11171 226.19222,264.95187 C 224.81088,266.86984 223.91268,268.7878 224.61713,270.70577 C 222.65196,273.29311 223.00882,275.67013 223.56706,278.02891 C 222.82846,279.36272 222.16697,280.13409 222.16697,282.21356M 204.49085,273.23399 C 203.98086,274.28407 203.6492,275.59042 203.58037,276.93061 M 200.17344,270.2597 C 199.43845,271.88616 198.92533,273.48374 198.75904,275.02208 M 143.0378,250.68184 C 138.63497,256.05965 136.73122,261.92992 135.39982,267.19294 M 194.55651,273.60135 C 194.84915,271.50815 195.25833,269.32192 196.42978,267.31926 M 171.70827,267.83352 C 172.76779,262.88358 174.47467,257.45951 178.27758,252.93198 M 178.48901,269.08332 C 179.47413,264.97528 180.78784,260.35251 183.73781,256.04452 M 183.93049,270.47302 C 184.70112,267.05645 186.0406,263.34502 188.83696,259.90854 M 189.86106,272.04715 C 190.51164,268.8551 191.32144,265.59547 192.77118,263.19917 M 141.61467,266.24276 C 142.90477,260.54159 144.69065,254.47271 148.76856,249.9859 M 146.96157,265.84703 C 148.26175,260.69526 150.36258,254.96625 154.97089,249.54856 M 153.42804,265.80069 C 154.70259,260.65572 156.64326,254.93485 160.82232,249.52247 M 159.99704,266.17933 C 161.27694,260.98767 163.13606,255.18179 167.14716,249.73932 M 172.98471,250.81284 C 171.02341,252.78707 167.8957,259.50717 166.31679,266.87708M 135.18495,296.33048 C 133.26853,288.37162 132.84206,282.18105 129.10513,282.25886 C 132.97866,282.33952 133.03513,275.66249 135.39982,267.19294 C 134.30038,272.35307 133.8051,277.87388 135.34912,282.25886 C 133.88972,286.29332 134.01008,291.35016 135.18495,296.33048 z M 203.53648,286.63606 C 203.41639,284.03307 203.568,282.17349 200.70659,282.25886 C 203.9169,282.35464 203.19711,280.00905 203.58037,276.93061 C 203.5579,279.06661 203.8878,281.19273 204.31585,282.25886 L 204.31585,282.25887 C 203.95011,283.16983 203.54677,284.84924 203.53648,286.63606 z M 198.66295,288.57942 C 198.2027,284.30886 199.36186,282.16328 194.81263,282.25886 C 199.67393,282.36099 197.88126,279.83963 198.75904,275.02208 C 198.49317,278.39102 199.31667,281.21163 200.70659,282.25886 C 199.44766,283.2074 198.53473,285.66717 198.66295,288.57942 z M 194.44147,290.00336 C 193.92375,285.74608 193.80339,282.17438 189.66008,282.25886 C 194.09761,282.34934 193.83848,278.27852 194.55651,273.60135 C 194.17833,276.85133 194.2034,280.37059 194.81263,282.25886 C 194.2595,283.97327 194.11634,287.00374 194.44147,290.00336 z M 171.55795,295.77255 C 170.03954,288.29391 169.88465,282.18114 166.15448,282.25886 C 170.01621,282.33933 170.00056,275.69296 171.70827,267.83352 C 170.70105,272.94317 170.62503,278.28649 172.39366,282.25886 C 170.70515,285.9306 170.65555,290.89008 171.55795,295.77255 z M 178.32051,294.55955 C 176.70212,287.50462 176.27836,282.17724 172.39366,282.25886 C 176.4134,282.34331 176.5269,276.46666 178.48901,269.08332 C 177.52181,274.35274 177.16955,279.66961 178.75686,282.25886 C 177.24732,284.59203 177.30469,289.55929 178.32051,294.55955 z M 183.75252,293.16711 C 182.47379,287.01456 182.80529,282.17613 178.75686,282.25886 C 182.96531,282.34486 182.49897,277.00056 183.93049,270.47302 C 182.72211,274.90262 182.39788,279.57299 184.07001,282.25886 C 182.49555,284.65515 182.74492,288.92728 183.75252,293.16711 z M 189.47331,291.6447 C 188.51891,286.59564 187.83811,282.1797 184.07001,282.25886 C 187.96294,282.34065 188.88725,277.38553 189.86106,272.04715 C 188.88532,276.09751 188.61072,280.27759 189.66008,282.25886 C 188.67708,283.97062 188.72971,287.76284 189.47331,291.6447 z M 141.43016,297.29741 C 139.66809,289.19679 138.95616,282.18308 135.34912,282.25886 C 139.0833,282.33731 139.52214,274.7716 141.61467,266.24276 C 140.69992,271.16122 140.2893,276.73877 141.35852,282.25886 C 140.34978,287.36255 140.47855,292.54298 141.43016,297.29741 z M 146.75131,297.71816 C 144.67177,288.92341 145.13086,282.17728 141.35852,282.25886 C 145.24722,282.34296 144.46755,275.07936 146.96157,265.84703 C 145.5752,271.53769 145.09253,277.64175 147.36791,282.25886 C 145.20354,286.53394 145.37293,292.22852 146.75131,297.71816 z M 153.23246,297.78187 C 151.15418,288.9409 151.26304,282.17703 147.36791,282.25886 C 151.37691,282.34309 150.97137,275.05736 153.42804,265.80069 C 152.1671,271.51636 151.69176,277.64899 153.6416,282.25886 C 151.78699,286.52701 151.96311,292.27065 153.23246,297.78187 z M 159.80702,297.41647 C 157.77308,288.78617 157.54187,282.17803 153.6416,282.25886 C 157.66014,282.34214 157.59264,275.22043 159.99704,266.17933 C 158.81772,271.76272 158.30851,277.70871 159.9153,282.25886 C 158.38551,286.47575 158.59376,292.04269 159.80702,297.41647 z M 166.13896,296.71635 C 164.23759,288.54793 163.6947,282.17946 159.9153,282.25886 C 163.81778,282.34085 164.11698,275.43924 166.31679,266.87708 C 165.31154,272.17911 164.90973,277.81395 166.15448,282.25886 C 164.97206,286.36893 165.13235,291.64061 166.13896,296.71635 zM 203.53648,286.63606 C 203.52708,288.26928 203.86404,289.99313 204.49085,291.28373 M 198.66295,288.57942 C 198.74187,290.37184 199.28892,292.30068 200.17344,294.25803 M 196.42978,297.19847 C 195.08569,294.90067 194.72769,292.3571 194.44147,290.00336 M 192.77118,301.31856 C 190.77392,298.55525 190.1004,294.96224 189.47331,291.6447 M 188.83696,304.60919 C 185.83823,300.81967 184.50149,296.77071 183.75252,293.16711 M 178.32051,294.55955 C 179.52559,300.49142 182.00324,306.4897 183.73781,308.47321 M 178.27758,311.58575 C 174.26911,306.69836 172.60224,300.91596 171.55795,295.77255 M 166.13896,296.71635 C 167.66558,304.41417 170.95278,311.65957 172.98471,313.70489 M 167.14716,314.77841 C 162.93082,308.94901 161.07415,302.79311 159.80702,297.41647 M 160.82232,314.99526 C 156.43035,309.20086 154.48571,303.11319 153.23246,297.78187 M 154.97089,314.96916 C 150.11628,309.15509 148.0156,303.06509 146.75131,297.71816 M 148.76856,314.53182 C 144.48408,309.69842 142.71832,303.2194 141.43016,297.29741 M 135.18495,296.33048 C 136.49957,301.79013 138.38713,308.04041 143.0378,313.83589M 222.51699,263.38263 C 224.96715,260.76722 228.29236,259.89542 228.29236,259.89542 M 218.84176,268.78781 C 221.81695,266.1724 226.19222,264.95187 226.19222,264.95187 M 216.04158,275.58787 C 220.06684,271.05449 224.61713,270.70577 224.61713,270.70577 M 213.94145,280.12124 C 219.01678,278.02891 223.56706,278.02891 223.56706,278.02891M 222.51699,301.04485 C 224.96715,303.66026 228.29236,304.53206 228.29236,304.53206 M 218.84176,295.63967 C 221.81695,298.25508 226.19222,299.4756 226.19222,299.4756 M 216.04158,288.83961 C 220.06684,293.37299 224.61713,293.72171 224.61713,293.72171 M 213.94145,284.30624 C 219.01678,286.39856 223.56706,286.39856 223.56706,286.39856M 121.53562,272.01348 C 121.53562,272.44659 121.22199,272.7981 120.83557,272.7981 C 120.44915,272.7981 120.13553,272.44659 120.13553,272.01348 C 120.13553,271.58036 120.44915,271.22886 120.83557,271.22886 C 121.22199,271.22886 121.53562,271.58036 121.53562,272.01348 zM 128.09853,310.19842 C 132.82383,310.11124 128.09853,288.83926 128.09853,282.0392 C 128.09853,275.23914 130.03686,260.45299 135.27399,253.70562 C 140.5998,246.84399 100.9581,269.63911 103.85951,287.44438 C 107.09721,289.27517 111.99752,290.23415 115.93527,291.71621 C 112.26003,291.97775 107.97226,290.84441 104.90957,290.05978 C 106.65968,293.72136 112.78507,303.83426 128.09853,310.19842 z M 123.46075,270.83655 C 123.46075,272.15995 122.53949,273.23401 121.40437,273.23401 C 120.26925,273.23401 119.34799,272.15995 119.34799,270.83655 C 119.34799,269.51316 120.26925,268.4391 121.40437,268.4391 C 122.53949,268.4391 123.46075,269.51316 123.46075,270.83655 zM 121.53562,272.01348 C 121.53562,272.44659 121.22199,272.7981 120.83557,272.7981 C 120.44915,272.7981 120.13553,272.44659 120.13553,272.01348 C 120.13553,271.58036 120.44915,271.22886 120.83557,271.22886 C 121.22199,271.22886 121.53562,271.58036 121.53562,272.01348 z" />
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="214.29762"
+ y="353.823"
+ id="text3121"
+ transform="translate(-58.014272,18.943436)"><tspan
+ sodipodi:role="line"
+ id="tspan3123"
+ x="214.29762"
+ y="353.823">Copy to clipboard</tspan><tspan
+ sodipodi:role="line"
+ x="214.29762"
+ y="372.96726"
+ id="tspan3143"
+ style="font-size:12px">(it is easiest later on to move the nose</tspan><tspan
+ sodipodi:role="line"
+ x="214.29762"
+ y="387.96726"
+ id="tspan3145"
+ style="font-size:12px">of the fish to the top-left corner of the </tspan><tspan
+ sodipodi:role="line"
+ x="214.29762"
+ y="402.96726"
+ style="font-size:12px"
+ id="tspan3153">document (0,0) before copying to the </tspan><tspan
+ sodipodi:role="line"
+ x="214.29762"
+ y="417.96726"
+ style="font-size:12px"
+ id="tspan3163">clipboard, so you don't have to manually </tspan><tspan
+ sodipodi:role="line"
+ x="214.29762"
+ y="432.96726"
+ style="font-size:12px"
+ id="tspan3169">tweak the origin parameter)</tspan></text>
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 439.25092,345.53523 C 504.36898,288.70493 570.671,289.88889 619.21356,351.45506"
+ id="path3125"
+ transform="translate(2.3679295,-35.518942)" />
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="460.56229"
+ y="364.47867"
+ id="text3127"
+ transform="translate(-26.047224,0)"><tspan
+ sodipodi:role="line"
+ id="tspan3129"
+ x="460.56229"
+ y="364.47867">Draw the skeleton path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="632.23718"
+ y="202.2755"
+ id="text3131"
+ transform="translate(-266.39207,-30.783083)"><tspan
+ sodipodi:role="line"
+ id="tspan3133"
+ x="632.23718"
+ y="202.2755">Press Ctrl-Shift-7 and apply </tspan><tspan
+ sodipodi:role="line"
+ x="632.23718"
+ y="229.7755"
+ id="tspan3171">Skeletal Strokes to the skeleton path.</tspan><tspan
+ sodipodi:role="line"
+ x="632.23718"
+ y="257.2755"
+ id="tspan3135">Press the paste button next to &quot;pattern&quot;</tspan></text>
+ <g
+ id="g3179">
+ <path
+ transform="translate(58.014272,-17.759472)"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ sodipodi:ry="34.92696"
+ sodipodi:rx="37.886871"
+ sodipodi:cy="199.31558"
+ sodipodi:cx="-44.990662"
+ id="path3177"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
<text
- id="text3131"
- y="182.92525"
- x="390.23477"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ transform="translate(84.061496,-150.36352)"
+ id="text3173"
+ y="346.71921"
+ x="-82.877533"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- y="182.92525"
- x="390.23477"
- id="tspan3133"
- sodipodi:role="line">Press Ctrl-Shift-7 and apply </tspan><tspan
- style="stroke-width:1.06666672px"
- id="tspan3171"
- y="212.25858"
- x="390.23477"
- sodipodi:role="line">Skeletal Strokes to the skeleton path.</tspan><tspan
- style="stroke-width:1.06666672px"
- id="tspan3135"
- y="241.59192"
- x="390.23477"
- sodipodi:role="line">Press the paste button next to &quot;pattern&quot;</tspan></text>
- <g
- id="g3179">
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="193.65985"
- cx="13.891851"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path3177" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1.2628939"
- y="209.44606"
- id="text3173"><tspan
- sodipodi:role="line"
- id="tspan3175"
- x="1.2628939"
- y="209.44606"
- style="font-weight:bold;font-size:42.66666794px;writing-mode:lr-tb;fill:#0000ff;stroke-width:1.06666672px">1</tspan></text>
- </g>
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="418.45529"
- cx="150.28459"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- id="path3186" />
+ style="font-size:40px;font-weight:bold;writing-mode:lr-tb;fill:#0000ff"
+ y="346.71921"
+ x="-82.877533"
+ id="tspan3175"
+ sodipodi:role="line">1</tspan></text>
+ </g>
+ <path
+ transform="translate(185.88246,192.98625)"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ sodipodi:ry="34.92696"
+ sodipodi:rx="37.886871"
+ sodipodi:cy="199.31558"
+ sodipodi:cx="-44.990662"
+ id="path3186"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:type="arc" />
+ <text
+ transform="translate(211.92969,60.3822)"
+ id="text3188"
+ y="346.71921"
+ x="-82.877533"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ xml:space="preserve"><tspan
+ style="font-size:40px;font-weight:bold;writing-mode:lr-tb;fill:#0000ff"
+ y="346.71921"
+ x="-82.877533"
+ id="tspan3190"
+ sodipodi:role="line">2</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="466.48212"
+ y="-32.149517"
+ id="text3213"
+ transform="translate(-14.207577,-11.839647)"><tspan
+ sodipodi:role="line"
+ id="tspan3215"
+ x="466.48212"
+ y="-32.149517">Press F2 and notice that the </tspan><tspan
+ sodipodi:role="line"
+ x="466.48212"
+ y="-4.6495171"
+ id="tspan3217">red skeleton path is live </tspan><tspan
+ sodipodi:role="line"
+ x="466.48212"
+ y="22.850483"
+ id="tspan3219">edittable on-canvas</tspan></text>
+ <g
+ id="g3221"
+ transform="translate(426.22731,-182.33057)">
+ <path
+ sodipodi:type="arc"
+ style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.53125;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="path3223"
+ sodipodi:cx="-44.990662"
+ sodipodi:cy="199.31558"
+ sodipodi:rx="37.886871"
+ sodipodi:ry="34.92696"
+ d="M -7.1037903,199.31558 A 37.886871,34.92696 0 1 1 -82.877533,199.31558 A 37.886871,34.92696 0 1 1 -7.1037903,199.31558 z"
+ transform="translate(58.014272,-17.759472)" />
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="137.65564"
- y="434.24152"
- id="text3188"><tspan
+ style="font-size:22px;font-style:normal;font-weight:normal;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
+ x="-82.877533"
+ y="346.71921"
+ id="text3225"
+ transform="translate(84.061496,-150.36352)"><tspan
sodipodi:role="line"
- id="tspan3190"
- x="137.65564"
- y="434.24152"
- style="font-weight:bold;font-size:42.66666794px;writing-mode:lr-tb;fill:#0000ff;stroke-width:1.06666672px">2</tspan></text>
- <text
- id="text3213"
- y="-46.921776"
- x="482.42618"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1.06666672px"
- y="-46.921776"
- x="482.42618"
- id="tspan3215"
- sodipodi:role="line">Press F2 and notice that the </tspan><tspan
- style="stroke-width:1.06666672px"
- id="tspan3217"
- y="-17.588442"
- x="482.42618"
- sodipodi:role="line">red skeleton path is live </tspan><tspan
- style="stroke-width:1.06666672px"
- id="tspan3219"
- y="11.744892"
- x="482.42618"
- sodipodi:role="line">edittable on-canvas</tspan></text>
- <g
- transform="translate(454.64246,-194.48594)"
- id="g3221">
- <ellipse
- ry="37.255424"
- rx="40.412663"
- cy="193.65985"
- cx="13.891851"
- id="path3223"
- style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:0.56666666;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- id="text3225"
- y="209.44606"
- x="1.2628939"
- style="font-style:normal;font-weight:normal;font-size:23.46666718px;font-family:'Bitstream Vera Sans';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="font-weight:bold;font-size:42.66666794px;writing-mode:lr-tb;fill:#0000ff;stroke-width:1.06666672px"
- y="209.44606"
- x="1.2628939"
- id="tspan3227"
- sodipodi:role="line">5</tspan></text>
- </g>
+ id="tspan3227"
+ x="-82.877533"
+ y="346.71921"
+ style="font-size:40px;font-weight:bold;writing-mode:lr-tb;fill:#0000ff">5</tspan></text>
</g>
</svg>
diff --git a/share/examples/markers.svg b/share/examples/markers.svg
index f1ff1f31d..590de63b0 100644
--- a/share/examples/markers.svg
+++ b/share/examples/markers.svg
@@ -1,30 +1,32 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ sodipodi:docbase="/home/d/ink/inkscape/share/examples"
sodipodi:docname="markers.svg"
- height="129.55066mm"
- width="137.71696mm"
- inkscape:version="0.92.0 r15304"
+ height="100mm"
+ width="100mm"
+ inkscape:version="0.92"
sodipodi:version="0.32"
- id="svg1"
- version="1.1">
+ id="svg1">
<metadata
id="metadata164">
- <rdf:RDF>
+ <rdf:RDF
+ id="RDF166">
<cc:Work
+ id="Work168"
rdf:about="">
- <dc:format>image/svg+xml</dc:format>
+ <dc:format
+ id="format170">image/svg+xml</dc:format>
<dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage"
+ id="type172" />
</cc:Work>
</rdf:RDF>
</metadata>
@@ -33,907 +35,822 @@
<marker
inkscape:stockid="Legs"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Legs"
- style="overflow:visible">
+ style="overflow:visible;">
<g
id="g1163"
transform="scale(-0.7)">
<g
- transform="matrix(0,-1,-1,0,22.089195,22.734837)"
+ transform="matrix(-1.836909e-16,-1.000000,-1.000000,1.836909e-16,20.70862,21.31391)"
id="g2032">
<path
sodipodi:nodetypes="cc"
id="path2019"
- d="m 22.636,22.053717 c -7.370828,5.035901 -2.61816,7.047301 -6.230476,14.339451"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 21.221250,20.675360 C 14.311099,25.396517 18.766725,27.282204 15.380179,34.118595"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-start:none;marker-end:none;" />
<path
sodipodi:nodetypes="cc"
id="path2026"
- d="m 22.824651,21.917995 c -1.45121,8.904025 3.77181,9.354602 4.805377,14.746622"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 21.398110,20.548120 C 20.037601,28.895644 24.934182,29.318060 25.903151,34.373078"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-start:none;marker-end:none;" />
</g>
<path
id="polygon2039"
- d="m -15.029408,-7.180663 -0.983646,4.3129418 4.226935,-1.304608 z"
- style="fill:#030300;fill-rule:evenodd;stroke-width:1.06666669pt;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -14.090070,-6.7318716 L -15.012238,-2.6884886 L -11.049487,-3.9115586 L -14.090070,-6.7318716 z "
+ style="fill:#030300;fill-rule:evenodd;stroke-width:1.0000000pt;marker-end:none;" />
<path
id="path2041"
- d="m -16.230058,4.860537 1.999069,3.9462538 2.417999,-3.7043786 z"
- style="fill:#030300;fill-rule:evenodd;stroke-width:1.06666669pt;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -15.215679,4.5567534 L -13.341552,8.2563664 L -11.074678,4.7835114 L -15.215679,4.5567534 z "
+ style="fill:#030300;fill-rule:evenodd;stroke-width:1.0000000pt;marker-end:none;" />
</g>
</marker>
<marker
inkscape:stockid="Tail"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Tail"
- style="overflow:visible">
+ style="overflow:visible;">
<g
id="g1087"
transform="scale(-1.2)">
<path
id="path1126"
- d="M -4.0585252,-4.2224242 0.57975567,-7.2655824e-4"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -3.8048674,-3.9585227 L 0.54352094,-0.00068114835"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
<path
id="path1127"
- d="M -1.3724621,-4.2224242 3.265819,-7.2655824e-4"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -1.2866832,-3.9585227 L 3.0617053,-0.00068114835"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
<path
id="path1956"
- d="M 1.3923821,-4.2224242 6.030663,-7.2655824e-4"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 1.3053582,-3.9585227 L 5.6537466,-0.00068114835"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
<path
id="path1848"
- d="M -4.0585252,4.4560894 0.57975567,0.23439174"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -3.8048674,4.1775838 L 0.54352094,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
<path
id="path1849"
- d="M -1.3724621,4.4560894 3.265819,0.23439174"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -1.2866832,4.1775838 L 3.0617053,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
<path
id="path1850"
- d="M 1.3923821,4.4560894 6.030663,0.23439174"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335;stroke-linecap:round;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 1.3053582,4.1775838 L 5.6537466,0.21974226"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;marker-start:none;marker-end:none;stroke-linecap:round;" />
</g>
</marker>
<marker
inkscape:stockid="DistanceOut"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="DistanceOut"
- style="overflow:visible">
+ style="overflow:visible;">
<g
- transform="matrix(-0.6,0,0,0.6,-5.12,0)"
+ transform="scale(-0.6,0.6) translate(8,0)"
id="g2006">
<path
sodipodi:nodetypes="ccccc"
id="path2007"
- d="M 0,0 5.3333333,-5.3333333 -13.333333,0 5.3333333,5.3333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" />
<path
id="path2008"
- d="M -15.743946,-7.4666667 V 69.333333"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.27999994pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -14.759949,-7 L -14.759949,65"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2pt;marker-start:none;" />
</g>
</marker>
<marker
inkscape:stockid="DistanceIn"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="DistanceIn"
- style="overflow:visible">
+ style="overflow:visible;">
<g
- transform="matrix(0.6,0,0,0.6,5.12,0)"
+ transform="scale(0.6,0.6) translate(8,0)"
id="g2002">
<path
sodipodi:nodetypes="ccccc"
id="path2003"
- d="M 0,0 5.3333333,-5.3333333 -13.333333,0 5.3333333,5.3333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" />
<path
id="path2004"
- d="M -15.743946,-7.4666667 V 69.333333"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.27999994pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -14.759949,-7 L -14.759949,65"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2pt;marker-start:none;" />
</g>
</marker>
<marker
inkscape:stockid="CurvyCross"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="CurvyCross"
- style="overflow:visible">
+ style="overflow:visible;">
<g
transform="scale(0.6)"
id="g948">
<path
sodipodi:nodetypes="ccc"
id="path946"
- d="m 4.9338592,-5.3820721 c -2.944,0 -5.33333335,2.3893333 -5.33333335,5.33333335 0,2.94399995 2.38933335,5.33333335 5.33333335,5.33333335"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;" />
<path
sodipodi:nodetypes="ccc"
id="path947"
- d="m -5.7738574,-5.3820721 c 2.944,0 5.33333334,2.3893333 5.33333334,5.33333335 0,2.94399995 -2.38933334,5.33333335 -5.33333334,5.33333335"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -5.4129913,-5.0456926 C -2.6529913,-5.0456926 -0.41299131,-2.8056926 -0.41299131,-0.045692580 C -0.41299131,2.7143074 -2.6529913,4.9543074 -5.4129913,4.9543074"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;" />
</g>
</marker>
<marker
inkscape:stockid="SemiCircleOut"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="SemiCircleOut"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path953"
- d="m 2.9603155,-0.02924325 c 0,1.76639995 -1.4336,3.19999995 -3.19999998,3.19999995 v -6.4 c 1.76639998,0 3.19999998,1.4336 3.19999998,3.20000005 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.64000006pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -2.5,-0.80913858 C -2.5,1.9508614 -4.7400000,4.1908614 -7.5,4.1908614 L -7.5,-5.8091386 C -4.7400000,-5.8091386 -2.5,-3.5691386 -2.5,-0.80913858 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;"
+ transform="scale(0.6) translate(7.125493,0.763446)" />
</marker>
<marker
inkscape:stockid="Torso"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Torso"
- style="overflow:visible">
+ style="overflow:visible;">
<g
id="g2045"
transform="scale(0.7)">
<path
sodipodi:nodetypes="ccccc"
id="path1128"
- d="m -5.0978433,-3.4555115 c 2.5070656,0.3903353 5.65361847,2.0667176 5.37296567,3.86931786 C -0.00553364,2.2164074 -2.3601857,2.7921642 -4.8672502,2.4018314 -7.3743169,2.0114954 -9.089104,0.80214842 -8.8084501,-1.0004516 c 0.2806538,-1.8026007 1.2035391,-2.8453951 3.7106068,-2.4550599 z"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:none;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -4.7792281,-3.2395420 C -2.4288541,-2.8736027 0.52103922,-1.3019943 0.25792722,0.38794346 C -0.0051877922,2.0778819 -2.2126741,2.6176539 -4.5630471,2.2517169 C -6.9134221,1.8857769 -8.5210350,0.75201414 -8.2579220,-0.93792336 C -7.9948090,-2.6278615 -7.1296041,-3.6054813 -4.7792281,-3.2395420 z "
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:none;marker-mid:none;marker-end:none;" />
<path
sodipodi:nodetypes="cc"
id="path1909"
- d="M 4.7572042,0.09457679 C -2.7268876,-4.6702208 5.573202,-4.1665926 -0.90484883,-9.3010486"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 4.4598789,0.088665736 C -2.5564571,-4.3783320 5.2248769,-3.9061806 -0.84829578,-8.7197331"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-end:none;" />
<path
sodipodi:nodetypes="cc"
id="path1910"
- d="M 5.25853,0.06135546 C -1.479758,1.8661002 1.9229418,5.8434218 -5.2745313,8.0493573"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 4.9298719,0.057520736 C -1.3872731,1.7494689 1.8027579,5.4782079 -4.9448731,7.5462725"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-start:none;marker-end:none;" />
<rect
- transform="matrix(0.52753586,-0.84953277,0.887668,0.460484,0,0)"
- y="-1.8569146"
- x="-11.08449"
- height="2.944869"
- width="2.8124361"
+ transform="matrix(0.527536,-0.849533,0.887668,0.460484,0.000000,0.000000)"
+ y="-1.7408575"
+ x="-10.391706"
+ height="2.7608147"
+ width="2.6366582"
id="rect2035"
- style="fill-rule:evenodd;stroke-width:1.06666687pt;marker-end:none" />
+ style="fill-rule:evenodd;stroke-width:1.0000000pt;marker-end:none;" />
<rect
- transform="matrix(0.67120489,-0.74127188,0.79080203,0.61207202,0,0)"
- y="-8.4937925"
- x="5.2893095"
- height="3.0521772"
- width="2.9149184"
+ transform="matrix(0.671205,-0.741272,0.790802,0.612072,0.000000,0.000000)"
+ y="-7.9629307"
+ x="4.9587269"
+ height="2.8614161"
+ width="2.7327356"
id="rect2036"
- style="fill-rule:evenodd;stroke-width:1.06666669pt;marker-end:none" />
- <circle
- transform="rotate(-90)"
+ style="fill-rule:evenodd;stroke-width:1.0000000pt;marker-end:none;" />
+ <path
+ transform="matrix(6.793608e-17,-1.109517,1.109517,6.793608e-17,25.96648,19.71619)"
+ d="M 16.779951 -28.685045 A 0.60731727 0.60731727 0 1 0 15.565317,-28.685045 A 0.60731727 0.60731727 0 1 0 16.779951 -28.685045 z"
+ sodipodi:ry="0.60731727"
+ sodipodi:rx="0.60731727"
+ sodipodi:cy="-28.685045"
+ sodipodi:cx="16.172634"
id="path2037"
- style="fill:#ff0000;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.18348476pt;marker-start:none;marker-end:none"
- cx="-1.890536"
- cy="-6.2507362"
- r="0.71875077" />
- <circle
- transform="rotate(-90)"
+ style="fill:#ff0000;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-start:none;marker-end:none;"
+ sodipodi:type="arc" />
+ <path
+ transform="matrix(6.793608e-17,-1.109517,1.109517,6.793608e-17,26.82450,16.99126)"
+ d="M 16.779951 -28.685045 A 0.60731727 0.60731727 0 1 0 15.565317,-28.685045 A 0.60731727 0.60731727 0 1 0 16.779951 -28.685045 z"
+ sodipodi:ry="0.60731727"
+ sodipodi:rx="0.60731727"
+ sodipodi:cy="-28.685045"
+ sodipodi:cx="16.172634"
id="path2038"
- style="fill:#ff0000;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.18348476pt;marker-start:none;marker-end:none"
- cx="1.0160559"
- cy="-5.335515"
- r="0.71875077" />
+ style="fill:#ff0000;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;marker-start:none;marker-end:none;"
+ sodipodi:type="arc" />
</g>
</marker>
<marker
inkscape:stockid="CurveIn"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="CurveIn"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="ccc"
id="path942"
- d="m 2.9603155,-3.2292433 c -1.7664,0 -3.19999999,1.4336 -3.19999999,3.20000005 0,1.76639995 1.43359999,3.19999995 3.19999999,3.19999995"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.64000006pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;fill:none;"
+ transform="scale(0.6)" />
</marker>
<marker
inkscape:stockid="TriangleOutM"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="TriangleOutM"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path1562"
- d="M 2.4618667,0 -1.2288,2.1333333 v -4.2666666 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.4)" />
</marker>
<marker
inkscape:stockid="DiamondS"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="DiamondS"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path840"
- d="M -4.6035597e-6,-1.5084964 -1.5084991,-1.9068569e-6 -4.6035597e-6,1.5084926 1.5084899,-1.9068569e-6 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.21333334pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -2.1579186e-005,-7.0710768 L -7.0710894,-8.9383918e-006 L -2.1579186e-005,7.0710589 L 7.0710462,-8.9383918e-006 L -2.1579186e-005,-7.0710768 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.2)" />
</marker>
<marker
inkscape:stockid="TriangleOutL"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="TriangleOutL"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path1564"
- d="M 4.9237333,0 -2.4576,4.2666667 v -8.5333334 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.8)" />
</marker>
<marker
inkscape:stockid="SemiCircleIn"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="SemiCircleIn"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path941"
- d="m -0.23968449,-0.02924325 c 0,1.76639995 1.43359999,3.19999995 3.19999999,3.19999995 v -6.4 c -1.7664,0 -3.19999999,1.4336 -3.19999999,3.20000005 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.64000006pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074 L 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;"
+ transform="scale(0.6)" />
</marker>
<marker
inkscape:stockid="TriangleInL"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="TriangleInL"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path1570"
- d="M -4.9237333,0 2.4576,-4.2666667 v 8.5333334 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(-0.8)" />
</marker>
<marker
inkscape:stockid="SquareL"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="SquareL"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="ccccc"
id="path1582"
- d="M -4.2666667,-4.2666667 V 4.2666667 H 4.2666667 V -4.2666667 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.8)" />
</marker>
<marker
inkscape:stockid="Arrow2L"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow2L"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path1610"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.73333335;stroke-linejoin:round"
- d="M 4.363143,4.732916 -8.456553,0.01878889 4.3631437,-4.6953372 c -2.0480514,2.7832182 -2.0362505,6.5911436 -7e-7,9.4282532 z"
- inkscape:connector-curvature="0" />
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(1.1) translate(-5,0)" />
</marker>
<marker
inkscape:stockid="DistanceLeft"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="DistanceLeft"
- style="overflow:visible">
+ style="overflow:visible;">
<g
- transform="matrix(0.6,0,0,0.6,5.12,0)"
+ transform="scale(0.6,0.6) translate(8,0)"
id="g987">
<path
sodipodi:nodetypes="ccccc"
id="path974"
- d="M 0,0 5.3333333,-5.3333333 -13.333333,0 5.3333333,5.3333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;" />
<path
id="path976"
- d="M -15.743946,-7.4666667 V 69.333333"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.27999994pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -14.759949,-7 L -14.759949,65"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2pt;marker-start:none;" />
</g>
</marker>
<marker
inkscape:stockid="Arrow1S"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1S"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="ccccc"
id="path983"
- d="M 0,0 1.0666667,-1.0666667 -2.6666667,0 1.0666667,1.0666667 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.21333334pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.2)" />
</marker>
<marker
inkscape:stockid="DiamondL"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="DiamondL"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path1576"
- d="M -1.8414239e-5,-6.0339855 -6.0339963,-7.6274277e-6 -1.8414239e-5,6.0339703 6.0339594,-7.6274277e-6 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -2.1579186e-005,-7.0710768 L -7.0710894,-8.9383918e-006 L -2.1579186e-005,7.0710589 L 7.0710462,-8.9383918e-006 L -2.1579186e-005,-7.0710768 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.8)" />
</marker>
<marker
inkscape:stockid="StopM"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="StopM"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path1556"
- d="M 0,2.4106667 V -2.4106667"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt"
- inkscape:connector-curvature="0" />
+ d="M 0.0,5.65 L 0.0,-5.65"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
+ transform="scale(0.4)" />
</marker>
<marker
inkscape:stockid="Club"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Club"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path1015"
- d="m -1.0221675,-4.5425686 c -1.2091204,0 -2.1928845,0.9837641 -2.1928845,2.1928846 0,0.420275 0.152546,0.7852324 0.3580219,1.1188187 -0.024801,0.020551 -0.05099,0.037416 -0.074588,0.05967 -0.398351,-0.5471954 -1.0172149,-0.9248902 -1.7453567,-0.9248902 -1.209121,-10e-8 -2.1928845,0.9837641 -2.1928845,2.19288455 0,1.20912045 0.9837635,2.19288455 2.1928845,2.19288455 0.6358055,0 1.1959161,-0.2829191 1.5961808,-0.7160439 -0.0798,0.2271305 -0.1342581,0.4617519 -0.1342581,0.7160439 0,1.2091204 0.9837641,2.1928846 2.1928845,2.1928846 1.20912042,0 2.1928846,-0.9837642 2.1928846,-2.1928846 0,-0.5077733 -0.20195755,-0.9560502 -0.49228024,-1.3276648 C 1.545774,1.1304876 2.413976,1.4703175 3.0503324,2.4537774 2.5778856,1.9813305 2.2746181,1.1221835 2.2746181,-0.03745879 L 1.8718435,-0.06729396 2.2447829,-0.08221154 c 0,-1.15964226 0.2883498,-2.01878926 0.7607968,-2.49123616 -0.613818,0.9486277 -1.4445846,1.296872 -2.28239007,1.4768406 0.2586857,-0.3596219 0.44752747,-0.7765805 0.44752747,-1.2530769 0,-1.2091204 -0.98376418,-2.1928846 -2.1928846,-2.1928846 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.47736262pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M -1.5971367,-7.0977635 C -3.4863874,-7.0977635 -5.0235187,-5.5606321 -5.0235187,-3.6713813 C -5.0235187,-3.0147015 -4.7851656,-2.4444556 -4.4641095,-1.9232271 C -4.5028609,-1.8911157 -4.5437814,-1.8647646 -4.5806531,-1.8299921 C -5.2030765,-2.6849849 -6.1700514,-3.2751330 -7.3077730,-3.2751330 C -9.1970245,-3.2751331 -10.734155,-1.7380016 -10.734155,0.15124914 C -10.734155,2.0404999 -9.1970245,3.5776313 -7.3077730,3.5776313 C -6.3143268,3.5776313 -5.4391540,3.1355702 -4.8137404,2.4588126 C -4.9384274,2.8137041 -5.0235187,3.1803000 -5.0235187,3.5776313 C -5.0235187,5.4668819 -3.4863874,7.0040135 -1.5971367,7.0040135 C 0.29211394,7.0040135 1.8292454,5.4668819 1.8292454,3.5776313 C 1.8292454,2.7842354 1.5136868,2.0838028 1.0600576,1.5031550 C 2.4152718,1.7663868 3.7718375,2.2973711 4.7661444,3.8340272 C 4.0279463,3.0958289 3.5540908,1.7534117 3.5540908,-0.058529361 L 2.9247554,-0.10514681 L 3.5074733,-0.12845553 C 3.5074733,-1.9403966 3.9580199,-3.2828138 4.6962183,-4.0210121 C 3.7371277,-2.5387813 2.4390549,-1.9946496 1.1299838,-1.7134486 C 1.5341802,-2.2753578 1.8292454,-2.9268556 1.8292454,-3.6713813 C 1.8292454,-5.5606319 0.29211394,-7.0977635 -1.5971367,-7.0977635 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:0.74587913pt;marker-start:none;"
+ transform="scale(0.6)" />
</marker>
<marker
inkscape:stockid="StopL"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="StopL"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path1558"
- d="M 0,4.8213333 V -4.8213333"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt"
- inkscape:connector-curvature="0" />
+ d="M 0.0,5.65 L 0.0,-5.65"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;"
+ transform="scale(0.8)" />
</marker>
<marker
inkscape:stockid="Dot_m"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Dot_m"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path39"
- d="m 1.9735437,0 c 0,1.1776 -0.9557334,2.1333333 -2.13333335,2.1333333 C -1.3373897,2.1333333 -2.293123,1.1776 -2.293123,0 c 0,-1.1776 0.9557333,-2.1333333 2.13333335,-2.1333333 C 1.0178103,-2.1333333 1.9735437,-1.1776 1.9735437,0 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;"
+ transform="scale(0.4) translate(7.125493, 1)" />
</marker>
<marker
inkscape:stockid="Dot_l"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Dot_l"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path41"
- d="m 3.9470874,0 c 0,2.3552 -1.9114667,4.2666667 -4.26666671,4.2666667 C -2.6747793,4.2666667 -4.586246,2.3552 -4.586246,0 c 0,-2.3552 1.9114667,-4.2666667 4.26666669,-4.2666667 C 2.0356207,-4.2666667 3.9470874,-2.3552 3.9470874,0 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;"
+ transform="scale(0.8) translate(7.125493, 1)" />
</marker>
<marker
inkscape:stockid="Scissors"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Scissors"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="schere"
- style="stroke-width:1.06666672;marker-start:none"
- d="M 9.6958781,-3.8465086 C 8.6612106,-5.0954641 6.7944114,-5.0515514 5.3998462,-4.5149583 l -8.7598983,3.2830964 c -2.5475128,-1.3938277 -5.0648397,-0.9947063 -5.0648397,-1.6733731 0,-0.5304708 0.4871106,-0.4142103 0.4141939,-1.795407 -0.070011,-1.3261618 -1.4544823,-2.3072849 -2.7630921,-2.2204198 -1.309089,-0.00784 -2.666068,0.9953721 -2.677697,2.3787319 -0.09752,1.3934788 1.074356,2.6876689 2.460548,2.7789137 1.6238303,0.2417724 4.4994755,-0.7419271 5.848475,1.67558405 C -6.1475677,1.7663094 -7.9307567,1.7714497 -9.5430087,1.6786429 -10.881541,1.6015923 -12.489242,1.9852006 -13.1277,3.3008941 c -0.616925,1.2608919 -0.01195,3.0555757 1.404532,3.4415061 1.429537,0.5246162 3.3927135,-0.1383584 3.7326637,-1.7821058 0.2620357,-1.2670112 -0.635057,-1.8623546 -0.2906746,-2.3222973 0.2598544,-0.3470506 1.910166,-0.1459682 4.8502457,-1.4664793 L 6.0547699,4.5152734 C 7.2533508,4.849885 8.7179397,4.8386822 9.7796729,3.6601188 L -0.05508366,-0.0573037 Z M -9.8324436,-5.8737129 c 1.3808629,0.7709865 1.2680951,2.8624749 -0.1668557,3.2675082 -1.2976187,0.4519051 -2.9557617,-0.8095674 -2.5420567,-2.2159624 0.242291,-1.1539754 1.763613,-1.5793408 2.7089124,-1.0515458 z m 0.060015,8.5518559 c 1.4408855,0.5321225 1.1962058,2.9700647 -0.2690354,3.2977163 -0.971797,0.3374284 -2.361119,-0.1480508 -2.45941,-1.2929487 -0.189449,-1.3920587 1.446491,-2.6497581 2.7284454,-2.0047676 z"
- inkscape:connector-curvature="0" />
+ style="marker-start:none;"
+ d="M 9.0898857,-3.6061018 C 8.1198849,-4.7769976 6.3697607,-4.7358294 5.0623558,-4.2327734 L -3.1500488,-1.1548705 C -5.5383421,-2.4615840 -7.8983361,-2.0874077 -7.8983361,-2.7236578 C -7.8983361,-3.2209742 -7.4416699,-3.1119800 -7.5100293,-4.4068519 C -7.5756648,-5.6501286 -8.8736064,-6.5699315 -10.100428,-6.4884954 C -11.327699,-6.4958500 -12.599867,-5.5553341 -12.610769,-4.2584343 C -12.702194,-2.9520479 -11.603560,-1.7387447 -10.304005,-1.6532027 C -8.7816644,-1.4265411 -6.0857470,-2.3487593 -4.8210600,-0.082342643 C -5.7633447,1.6559151 -7.4350844,1.6607341 -8.9465707,1.5737277 C -10.201445,1.5014928 -11.708664,1.8611256 -12.307219,3.0945882 C -12.885586,4.2766744 -12.318421,5.9591904 -10.990470,6.3210002 C -9.6502788,6.8128279 -7.8098011,6.1912892 -7.4910978,4.6502760 C -7.2454393,3.4624530 -8.0864637,2.9043186 -7.7636052,2.4731223 C -7.5199917,2.1477623 -5.9728246,2.3362771 -3.2164999,1.0982979 L 5.6763468,4.2330688 C 6.8000164,4.5467672 8.1730685,4.5362646 9.1684433,3.4313614 L -0.051640930,-0.053722219 L 9.0898857,-3.6061018 z M -9.2179159,-5.5066058 C -7.9233569,-4.7838060 -8.0290767,-2.8230356 -9.3743431,-2.4433169 C -10.590861,-2.0196559 -12.145370,-3.2022863 -11.757521,-4.5207817 C -11.530373,-5.6026336 -10.104134,-6.0014137 -9.2179159,-5.5066058 z M -9.1616516,2.5107591 C -7.8108215,3.0096239 -8.0402087,5.2951947 -9.4138723,5.6023681 C -10.324932,5.9187072 -11.627422,5.4635705 -11.719569,4.3902287 C -11.897178,3.0851737 -10.363484,1.9060805 -9.1616516,2.5107591 z " />
</marker>
<marker
inkscape:stockid="Dot_s"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Dot_s"
- style="overflow:visible">
+ style="overflow:visible;">
<path
id="path933"
- d="m 0.98677184,0 c 0,0.5888 -0.47786667,1.0666667 -1.06666667,1.0666667 -0.5888,0 -1.06666667,-0.4778667 -1.06666667,-1.0666667 0,-0.5888 0.47786667,-1.0666667 1.06666667,-1.0666667 0.5888,0 1.06666667,0.4778667 1.06666667,1.0666667 z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.21333334pt;marker-start:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;"
+ transform="scale(0.2) translate(7.125493, 1)" />
</marker>
<marker
inkscape:stockid="Arrow2M"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow2M"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="cccc"
id="path1608"
- style="font-size:12px;fill-rule:evenodd;stroke-width:0.40000001;stroke-linejoin:round"
- d="M 2.3798962,2.5815905 -4.6126653,0.01024848 2.3798966,-2.561093 c -1.117119,1.518119 -1.1106821,3.5951692 -4e-7,5.1426835 z"
- inkscape:connector-curvature="0" />
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+ transform="scale(0.6) translate(-5,0)" />
</marker>
<marker
inkscape:stockid="Arrow1M"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1M"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="ccccc"
id="path1614"
- d="M 0,0 2.1333333,-2.1333333 -5.3333333,0 2.1333333,2.1333333 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.42666668pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.4)" />
</marker>
<marker
inkscape:stockid="Arrow1L"
orient="auto"
- refY="0"
- refX="0"
+ refY="0.0"
+ refX="0.0"
id="Arrow1L"
- style="overflow:visible">
+ style="overflow:visible;">
<path
sodipodi:nodetypes="ccccc"
id="path1616"
- d="M 0,0 4.2666667,-4.2666667 -10.666667,0 4.2666667,4.2666667 Z"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:0.85333335pt;marker-start:none"
- inkscape:connector-curvature="0" />
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
+ transform="scale(0.8)" />
</marker>
</defs>
<sodipodi:namedview
inkscape:current-layer="svg1"
- inkscape:window-y="25"
+ inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="996"
inkscape:window-width="1242"
- inkscape:cy="244.82014"
- inkscape:cx="260.25253"
- inkscape:zoom="1.5868792"
+ inkscape:cy="535.00000"
+ inkscape:cx="359.00000"
+ inkscape:zoom="5.6500000"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
- id="base"
- showgrid="false"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5"
- inkscape:window-maximized="0" />
- <g
- transform="translate(-95.011906,-313.98073)"
- id="g30642">
- <path
- id="path1823"
- d="m 235.42992,600.57435 c 12.62576,-2.46998 25.65052,1.78017 36.00793,8.98304 11.28134,7.81278 20.62365,18.20667 28.24717,29.55504 6.80127,10.46002 11.71004,21.98627 16.55258,33.44023"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:11.73333359;stroke-dasharray:1.17333333, 1.17333333;stroke-dashoffset:0"
- inkscape:connector-curvature="0" />
- <rect
- rx="9.4051704"
- ry="9.4051704"
- y="460.97684"
- x="326.72675"
- height="32.822124"
- width="48.56139"
- id="rect1818"
- style="fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:2.13333344;stroke-miterlimit:4;stroke-dasharray:0.53333333, 0.53333333;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:none" />
- <path
- sodipodi:nodetypes="cc"
- id="path1691"
- d="M 550.88578,628.127 H 178.52959"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:17.33333397;stroke-miterlimit:4;stroke-dasharray:0.34666667, 0.34666667;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- id="path1666"
- d="m 378.91964,559.42499 h 19.87785"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Arrow1M);marker-mid:none;marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccc"
- id="path1667"
- d="M 594.55725,608.54891 H 579.58779 564.61833 549.64885 534.67939 519.70993 504.74047 489.77101 474.80154 459.83207 444.86261 429.89315 414.92369 399.95423 384.98476 370.0153 355.04583"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-miterlimit:4;marker-start:url(#Dot_l);marker-mid:url(#Tail);marker-end:url(#Dot_l)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccc"
- id="path1668"
- d="m 351.76953,479.42499 h 9.93892 9.93893 9.93892 9.93894 9.93892 9.93892 9.93894 9.93892"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#DistanceIn);marker-mid:url(#StopM);marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1669"
- d="M 123.02758,596.05935 H 309.20566"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;stroke-miterlimit:4;stroke-dasharray:0.33333333, 0.33333333;stroke-dashoffset:0;marker-start:url(#DiamondL);marker-mid:none;marker-end:url(#TriangleOutM)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1670"
- d="m 394.68045,489.49954 1.24237,2.15184 1.24236,2.15184 1.24236,2.15184 1.24237,2.15184 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24236,2.15185 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24237,2.15184 1.24237,2.15184 1.24235,2.15184 1.24237,2.15184 1.24237,2.15184 1.24237,2.15184 1.24237,2.15184 1.24235,2.15184 1.24237,2.15184 1.24237,2.15184"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#TriangleInL);marker-mid:url(#SquareL);marker-end:url(#TriangleOutL)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
- id="path1671"
- d="m 301.26505,423.4347 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30369 2.48472,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30369 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30369 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48472,4.30368 2.48474,4.30369 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48474,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368 2.48473,4.30368"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.06666667, 0.53333333;stroke-dashoffset:0;marker-start:none;marker-mid:url(#StopL);marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- id="path1672"
- d="M 304.01381,421.70721 463.03666,697.14277"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-miterlimit:4;stroke-dasharray:0.53333333, 0.53333333;stroke-dashoffset:0;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- id="path1673"
- d="M 354.31301,527.48234 314.5573,458.62343"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccc"
- id="path1674"
- d="m 372.50955,507.86591 1.24236,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24236,2.15185 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24237,2.15184 1.24237,2.15184 1.24236,2.15184 1.24236,2.15184 1.24237,2.15184"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;marker-start:url(#SemiCircleIn);marker-mid:url(#CurveIn);marker-end:url(#SemiCircleOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1675"
- d="m 330.43619,394.56608 79.51143,137.7178"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:0.4, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow1M);marker-mid:none;marker-end:url(#Arrow1M)"
- inkscape:connector-curvature="0" />
- <path
- id="path1676"
- d="M 418.12932,509.01333 398.25147,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1677"
- d="m 445.58631,622.21026 19.87786,34.42945"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="csssc"
- id="path1678"
- d="m 474.20324,557.32254 c -15.40997,4.44971 -30.81994,8.89941 -46.22991,13.34912 -15.40997,4.44969 -30.81995,8.8994 -46.22993,13.34911 -15.40997,4.4497 -30.81994,8.89942 -46.22992,13.34914 -15.40996,4.44972 -30.81992,8.89944 -46.2299,13.34916"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-dasharray:0.99978924, 2.99936768;stroke-dashoffset:0;marker-start:none;marker-mid:url(#Scissors);marker-end:url(#StopL)"
- inkscape:connector-curvature="0" />
- <path
- id="path1679"
- d="M 424.19393,549.34117 270.58971,590.49932"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:3.2, 0.8;stroke-dashoffset:0;marker-start:url(#DiamondS);marker-mid:none;marker-end:url(#Club)"
- inkscape:connector-curvature="0" />
- <path
- id="path1680"
- d="m 385.25901,572.77548 -38.40106,10.28953"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;marker-mid:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccc"
- id="path1681"
- d="m 419.05974,587.3119 -19.20052,5.14477 -19.20053,5.14477 -19.20052,5.14477 -19.20054,5.14477 -19.20052,5.14476 -19.20053,5.14477 -19.20053,5.14477 -19.20053,5.14477"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;marker-start:url(#DiamondL);marker-mid:url(#Dot_s);marker-end:url(#DiamondL)"
- inkscape:connector-curvature="0" />
- <path
- id="path1682"
- d="M 534.75379,459.14771 381.14957,500.30586"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-dasharray:19.2, 19.2;stroke-dashoffset:0;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#StopL)"
- inkscape:connector-curvature="0" />
- <path
- id="path1683"
- d="M 441.45541,538.07702 287.85119,579.23517"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;stroke-dasharray:0.8, 9.6;stroke-dashoffset:0;marker-start:url(#TriangleInL);marker-end:url(#TriangleOutL)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccc"
- id="path1684"
- d="m 370.86059,626.67451 -19.20053,5.14476 -19.20053,5.14477 -19.20052,5.14477 -19.20054,5.14477 -19.20052,5.14477 -19.20053,5.14476 -19.20052,5.14477 -19.20054,5.14477"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.80000001;marker-start:url(#SemiCircleIn);marker-mid:url(#SemiCircleIn);marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1685"
- d="M 451.58986,568.03872 V 754.2168"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:6.4000001;stroke-dasharray:6.4, 6.4;stroke-dashoffset:0;marker-start:none;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1686"
- d="m 491.38957,541.74566 v 46.54453"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:6.4000001;stroke-dasharray:3.2, 3.2;stroke-dashoffset:0;marker-start:url(#Dot_s);marker-mid:none;marker-end:url(#Dot_s)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1687"
- d="m 283.73467,437.07443 v 46.54452"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:6.4000001;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#StopM)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1688"
- d="m 466.76051,501.93862 v 93.08904"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:6.4000001;stroke-miterlimit:4;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#StopM);marker-end:url(#StopM)"
- inkscape:connector-curvature="0" />
- <path
- id="path1689"
- d="m 313.98046,626.04911 19.87785,34.42945"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:0.4, 0.13333333;stroke-dashoffset:0;marker-start:url(#Tail);marker-mid:none"
- inkscape:connector-curvature="0" />
- <path
- id="path1690"
- d="m 325.58631,632.87693 19.87786,34.42945"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334"
- inkscape:connector-curvature="0" />
- <path
- d="m 301.92517,544.19763 c -0.12906,0.13103 -0.2403,-0.10932 -0.21778,-0.2145 0.061,-0.28503 0.42515,-0.33354 0.64678,-0.22106 0.39645,0.2012 0.44673,0.73111 0.22434,1.07906 -0.32636,0.51063 -1.04121,0.56324 -1.51134,0.22762 -0.62661,-0.44732 -0.68116,-1.35277 -0.2309,-1.94362 0.5666,-0.74352 1.66503,-0.79981 2.3759,-0.23418 0.86096,0.68505 0.91888,1.97769 0.23746,2.80818 -0.80302,0.97871 -2.29059,1.03822 -3.24046,0.24075 -1.09666,-0.92071 -1.15773,-2.60366 -0.24402,-3.67275 1.0382,-1.21476 2.91684,-1.27736 4.10502,-0.2473 1.33297,1.15557 1.39709,3.2301 0.25059,4.5373 -1.27284,1.45124 -3.54343,1.51689 -4.96959,0.25387 -1.56958,-1.39003 -1.63673,-3.85681 -0.25715,-5.40187 1.50718,-1.68795 4.17023,-1.75661 5.83415,-0.26043 1.80637,1.62428 1.87653,4.48367 0.26371,6.26643 -1.74134,1.92481 -4.79714,1.99648 -6.69871,0.26699 -2.04328,-1.85837 -2.11644,-5.11063 -0.27027,-7.13099 1.97539,-2.16176 5.42414,-2.23642 7.56327,-0.27355 2.28026,2.09238 2.35643,5.73766 0.27683,7.99555 -2.20936,2.39878 -6.0512,2.47644 -8.42783,0.28011 -2.5173,-2.32632 -2.59646,-6.36474 -0.28339,-8.86011 2.44328,-2.63584 6.6783,-2.71649 9.29239,-0.28667 2.75439,2.56022 2.83653,6.99186 0.28995,9.72467 -2.67715,2.87294 -7.30543,2.95658 -10.15695,0.29323 -2.99149,-2.79408 -3.07663,-7.619 -0.29651,-10.58923 2.911,-3.11006 7.93259,-3.19669 11.02151,-0.29979 3.22863,3.02792 3.31676,8.24618 0.30307,11.45379 -3.14482,3.34721 -8.55976,3.43683 -11.88607,0.30636 -3.46578,-3.26174 -3.5569,-8.87337 -0.30963,-12.31836 3.37863,-3.58436 9.18696,-3.67697 12.75063,-0.31291 3.70295,3.49553 3.79705,9.50056 0.3162,13.18291 -3.61243,3.82154 -9.81417,3.91714 -13.6152,0.31948 -3.94013,-3.72932 -4.03722,-10.12778 -0.32276,-14.04748 3.84621,-4.05872 10.44139,-4.15731 14.47976,-0.32604 4.17732,3.96309 4.2774,10.755 0.32932,14.91204 -4.07997,4.29592 -11.06861,4.39749 -15.34432,0.3326 -4.41451,-4.19685 -4.51758,-11.38223 -0.33588,-15.7766 4.31373,-4.53311 11.69585,-4.63768 16.20888,-0.33916 4.65172,4.43061 4.75778,12.00947 0.34244,16.64116 -4.54748,4.77033 -12.32309,4.87788 -17.07344,0.34572 -4.88893,-4.66436 -4.99797,-12.63671 -0.349,-17.50572 4.78123,-5.00754 12.95033,-5.11807 17.938,-0.35228 5.12615,4.8981 5.23818,13.26396 0.35556,18.37029 -5.01497,5.24475 -13.57758,5.35827 -18.80256,0.35883 -5.36336,-5.13184 -5.47838,-13.8912 -0.36212,-19.23484 5.24871,-5.48197 14.20483,-5.59849 19.66712,-0.3654 5.60059,5.36557 5.71859,14.51846 0.36868,20.09941 -5.48244,5.71919 -14.83209,5.83869 -20.53168,0.37196 -5.83782,-5.59931 -5.95881,-15.14573 -0.37524,-20.96397 5.71617,-5.95643 15.45935,-6.07891 21.39624,-0.37852 6.07505,5.83303 6.19903,15.77298 0.38181,21.82853 -5.9499,6.19365 -16.08662,6.31913 -22.26081,0.38508 -6.31228,-6.06676 -6.43924,-16.40025 -0.38837,-22.69309 6.18362,-6.43089 16.71389,-6.55935 23.12537,-0.39165 6.54951,6.30049 6.67947,17.02752 0.39493,23.55766 -6.41734,6.66812 -17.34115,6.79957 -23.98993,0.3982 -6.78675,-6.5342 -6.91969,-17.65479 -0.40149,-24.42221 6.65106,-6.90537 17.96842,-7.0398 24.8545,-0.40477 7.02398,6.76792 7.15991,18.28206 0.40804,25.28678 -6.88478,7.1426 -18.59569,7.28002 -25.71905,0.41132 -7.26123,-7.00163 -7.40014,-18.90933 -0.41461,-26.15133 7.11849,-7.37985 19.22297,-7.52026 26.58362,-0.41789 7.49846,7.23535 7.64036,19.5366 0.42116,27.0159 -7.3522,7.61709 -19.85024,7.76048 -27.44817,0.42444 -7.73572,-7.46906 -7.8806,-20.16387 -0.42773,-27.88045 7.58592,-7.85434 20.47752,-8.00072 28.31274,-0.43101 7.97295,7.70277 8.12083,20.79115 0.43429,28.74502 -7.81963,8.09158 -21.1048,8.24094 -29.1773,0.43757 -6.4436,-6.22878 -8.15372,-16.17042 -4.22427,-24.21439"
- sodipodi:t0="0"
- sodipodi:argument="-54.200062"
- sodipodi:radius="21.030602"
- sodipodi:revolution="17.200001"
- sodipodi:expansion="1"
- sodipodi:cy="544.19763"
- sodipodi:cx="301.92517"
- id="path1692"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2.41333342;stroke-dasharray:1.20666667, 2.41333333;stroke-dashoffset:0;marker-start:url(#Dot_s);marker-mid:none;marker-end:url(#Dot_m)"
- sodipodi:type="spiral" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1707"
- d="m 250.31712,368.37381 4.96946,8.60736 4.96946,8.60737 4.96947,8.60736 4.96947,8.60737 4.96946,8.60736 4.96946,8.60738 4.96947,8.60736 4.96946,8.60737 4.96946,8.60736 4.96948,8.60736 4.96946,8.60737 4.96946,8.60736 4.96946,8.60737 4.96947,8.60736 4.96946,8.60737 4.96946,8.60736 4.96947,8.60736 4.96947,8.60737 4.96946,8.60736 4.96946,8.60737 4.96946,8.60736 4.96947,8.60737 4.96946,8.60736 4.96947,8.60737 4.96946,8.60736 4.96947,8.60736 4.96946,8.60737 4.96946,8.60736 4.96946,8.60737 4.96948,8.60736 4.96946,8.60737 4.96946,8.60736"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:none;marker-mid:url(#Arrow1L);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1737"
- d="m 327.74175,519.39414 -1.24237,-2.15184 -1.24237,-2.15184 -1.24235,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24235,-2.15184 -1.24237,-2.15185 -1.24237,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24237,-2.15185 -1.24237,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184 -1.24237,-2.15184 -1.24236,-2.15184 -1.24236,-2.15184 -1.24237,-2.15184"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:url(#Dot_l);marker-end:url(#Arrow1L)"
- inkscape:connector-curvature="0" />
- <path
- id="path1738"
- d="m 332.44399,532.1053 c 1.4944,1.9389 2.09032,4.47696 1.75634,6.88891 -0.61632,4.8671 -3.54323,9.13765 -3.90945,14.05777 -0.12404,2.10103 0.24021,4.44013 1.81954,5.9651 1.01124,1.0355 2.64693,1.2244 3.93831,0.63675 0.0388,-0.0162 0.19494,-0.0834 0.2341,-0.1008"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Torso);marker-mid:none;marker-end:url(#Legs)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- id="path1774"
- d="m 305.57207,494.67657 c 1.98878,6.06641 -1.30458,10.01501 -1.15165,12.66818"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Torso);marker-mid:none;marker-end:url(#Legs)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccc"
- id="path1787"
- d="m 285.41812,508.30445 c 3.1611,25.23197 -12.93747,2.06607 -10.66548,23.48534 1.1073,18.38948 -9.27063,16.37713 0.68448,32.17795"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Torso);marker-end:url(#Legs)"
- inkscape:connector-curvature="0" />
- <path
- id="path1808"
- d="m 400.91813,474.58388 19.87786,34.42945"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1809"
- d="M 420.79599,509.01333 400.91813,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1810"
- d="M 423.46266,509.01333 403.5848,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1811"
- d="M 426.12932,509.01333 406.25147,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1812"
- d="M 428.79599,509.01333 408.91813,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1813"
- d="M 431.46266,509.01333 411.5848,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1814"
- d="M 434.12932,509.01333 414.25147,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1815"
- d="m 416.91813,474.58388 19.87786,34.42945"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1816"
- d="M 436.79599,509.01333 416.91813,474.58388"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S)"
- inkscape:connector-curvature="0" />
- <path
- id="path1817"
- d="m 432.25297,527.42499 h 19.87786"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Arrow2M);marker-mid:none;marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- id="path1833"
- d="m 511.10543,640.61767 -159.02281,3e-5"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:1.6, 1.6;stroke-dashoffset:0;marker-start:url(#DiamondS);marker-mid:none;marker-end:url(#CurvyCross)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1840"
- d="m 321.82854,347.06879 v 9.93892 9.93895 l 1e-5,9.93891 -1e-5,9.93894 v 9.93892 9.93894 9.93892 9.93893 9.93893 l 1e-5,9.93893 -1e-5,9.93893 v 9.93892 9.93894 l 1e-5,9.93892 -1e-5,9.93894 v 9.93892 9.93892 9.93893 9.93893 9.93894 9.93891 9.93895 9.93892 9.93893 9.93893 9.93892 9.93893 9.93892 l -10e-6,9.93895 10e-6,9.93891 v 9.93894 9.93893"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1841"
- d="m 441.27329,347.06879 v 9.93892 9.93895 l 1e-5,9.93891 -1e-5,9.93894 v 9.93892 9.93894 9.93892 9.93893 9.93893 l 1e-5,9.93893 -1e-5,9.93893 v 9.93892 9.93894 l 1e-5,9.93892 -1e-5,9.93894 v 9.93892 9.93892 9.93893 9.93893 9.93894 9.93891 9.93895 9.93892 9.93893 9.93893 9.93892 9.93893 9.93892 l -10e-6,9.93895 10e-6,9.93891 v 9.93894 9.93893"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666668;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
- id="path1842"
- d="m 343.53133,332.87837 v 2.48472 2.48474 2.48474 2.48472 2.48474 2.48473 2.48474 2.48473 2.48473 l 10e-6,2.48474 v 2.48472 2.48473 2.48473 2.48474 l -10e-6,2.48473 v 2.48474 2.48474 2.48472 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48473 2.48473 2.48472 2.48474 2.48474 2.48473 2.48473 2.48473 2.48474 2.48472 2.48474 2.48473 2.48473 l 10e-6,2.48474 v 2.48472 2.48474 2.48473 2.48473 l -10e-6,2.48474 v 2.48473 2.48473 2.48473 2.48473 2.48472 2.48474 2.48474 2.48473 2.48474 2.48473 l 10e-6,2.48473 v 2.48474 2.48472 2.48474 2.48473 l -10e-6,2.48473 v 2.48473 2.48474 2.48473 2.48473 2.48473 2.48472 2.48474 2.48473 2.48473 2.48474 2.48473 2.48473 2.48473 2.48474 2.48472 2.48473 2.48474 2.48473 2.48474 2.48473 2.48474 2.48472 2.48474 2.48473 2.48472 2.48474 2.48473 2.48474 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48474 2.48473 2.48473 2.48474 2.48472 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48472 2.48474 2.48472 2.48474 2.48473 l -1e-5,2.48474 v 2.48474 2.48472 l 1e-5,2.48474 v 2.48472 2.48473 2.48473 2.48474 2.48474 2.48473 2.48474 2.48472 2.48474 2.48473"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:none;marker-mid:url(#StopL);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1843"
- d="m 271.16188,347.06879 v 9.93892 9.93895 l 1e-5,9.93891 -1e-5,9.93894 v 9.93892 9.93894 9.93892 9.93893 9.93893 l 1e-5,9.93893 -1e-5,9.93893 v 9.93892 9.93894 l 1e-5,9.93892 -1e-5,9.93894 v 9.93892 9.93892 9.93893 9.93893 9.93894 9.93891 9.93895 9.93892 9.93893 9.93893 9.93892 9.93893 9.93892 l -10e-6,9.93895 10e-6,9.93891 v 9.93894 9.93893"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
- id="path1844"
- d="m 405.94143,465.95932 v 2.48473 2.48473 2.48473 2.48473 2.48474 2.48473 2.48474 2.48473 2.48473 l 10e-6,2.48474 v 2.48472 2.48473 2.48473 2.48474 l -10e-6,2.48473 v 2.48474 2.48474 2.48472 2.48474 2.48472 2.48474 2.48472 2.48474 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48474 2.48473 2.48473 2.48474 2.48472 2.48474 2.48472 2.48474 l 10e-6,2.48474 v 2.48472 2.48474 2.48473 2.48474 l -10e-6,2.48473 v 2.48473 2.48473 2.48473 2.48473 2.48472 2.48474 2.48474 2.48473 2.48474 2.48473 l 10e-6,2.48473 v 2.48472 2.48474 2.48474 2.48473 l -10e-6,2.48473 v 2.48473 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48473 2.48473 2.48473 2.48474 2.48473 2.48473 2.48474 2.48472 2.48473 2.48473 2.48474 2.48474 2.48473 2.48474 2.48472 2.48474 2.48473 2.48472 2.48474 2.48473 2.48474 2.48473 2.48473 2.48474 2.48473 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48472 2.48474 2.48472 2.48474 2.48472 2.48474 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48472 2.48474 2.48472 2.48474 l -1e-5,2.48473 v 2.48474 2.48474 2.48472 2.48474 l 1e-5,2.48472 v 2.48473 2.48473 2.48474 2.48474 2.48473 2.48474 2.48472 2.48474 2.48472"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-dasharray:0.13333333, 6.4;stroke-dashoffset:0;marker-start:none;marker-mid:url(#Dot_l);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- id="path1846"
- d="m 298.4702,570.68569 c 2.46688,-2.46688 3.27439,-1.05 5.37439,0 2.40928,0 4.94693,2.42105 7.10186,1.34359 1.19851,1.19851 0.61481,3.30201 2.11136,4.79856 1.34233,2.68465 5.37438,-2.81321 5.37438,-4.60661 2.29133,0 2.60139,-4.25134 7.29382,-2.68719 2.20558,3.30837 -0.76778,6.33896 -0.76778,9.59711 1.93133,1.93131 4.99051,0.69332 4.99051,4.22273 2.5938,3.8907 3.8994,-1.23582 5.9502,-1.91943 4.94143,0 3.26302,-0.28963 3.26302,3.6469 0,2.76949 6.98063,3.56103 8.82935,6.3341 1.70952,1.02572 8.36756,2.71316 2.11136,4.79856 -1.49838,0.74919 0.78112,0.98642 1.91942,3.26301 1.59903,3.19806 5.95021,-0.3997 5.95021,3.45497 1.86315,0 1.98742,3.56686 1.53554,5.37438 0,1.18665 0.95971,1.61701 0.95971,3.83885 0,1.19378 3.45496,2.2269 3.45496,0.76776"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.13333333, 0.13333333;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Dot_l);marker-mid:url(#Scissors);marker-end:url(#DiamondL)"
- inkscape:connector-curvature="0" />
- <path
- id="path1847"
- d="m 283.30676,492.1813 c -0.55169,-1.65508 2.11137,-2.87043 2.11137,-2.11136 1.28574,1.92862 -0.77269,3.45496 -2.3033,3.45496 -0.49008,-0.49007 -1.59352,-3.61791 1.15164,-4.9905 0.78537,0 4.05554,1.13929 1.72748,2.30331 -0.89983,3.59931 -3.63949,1.72451 -3.6469,1.72747 0,-1.21731 -1.02538,-3.6469 0.19195,-3.6469 0,-0.1909 2.87913,1.22351 2.87913,3.26302 0,2.04411 -3.35191,2.64275 -4.79856,1.91943 -1.67598,0 0.56418,-4.41467 3.26302,-4.41467 3.33769,0 1.59009,4.60661 -1.34359,4.60661 -3.23443,0 -0.21016,-6.35231 1.72747,-4.41468 0,1.95904 -2.68718,6.47913 -2.68718,3.26302 -1.8918,-3.78358 2.63809,-3.71236 4.41466,-1.34359 0,4.01986 -1.50325,5.0931 -4.99049,2.30331 -5.12335,-2.56168 2.672,-4.60662 4.99049,-4.60662 3.36156,0 -0.14154,6.14216 -4.41466,6.14216 -6.32265,-2.52906 -1.13013,-6.69669 3.6469,-7.29381 6.93312,0 0.0205,6.89453 -2.30331,8.6374 -5.20374,0 -7.89373,-3.10099 -3.07107,-6.71798 4.71352,-0.67336 11.70847,-3.55713 11.70847,3.45496 1.20041,3.00103 -9.59711,2.16517 -9.59711,-1.72747 -3.08071,-4.62107 6.57856,-3.51155 8.44546,-2.11138 4.46984,7.44975 -8.5218,5.29769 -11.51653,4.79856 -4.3249,-2.59493 -0.85232,-5.75827 2.87912,-5.75827 3.52887,-0.88221 5.96557,4.60662 1.91943,4.60662 0,-0.59659 0.0203,-0.13125 -0.38389,-1.3436 z"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666668;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.26666667, 1.6;stroke-dashoffset:0;stroke-opacity:1;marker-start:none;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
- <path
- id="path1852"
- d="m 482.43618,580.75833 h 79.51143"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333337;marker-start:url(#Arrow2M);marker-mid:none;marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
- id="path1853"
- d="m 498.19799,332.87837 v 2.48472 2.48474 2.48474 2.48472 2.48474 2.48473 2.48474 2.48473 2.48473 l 2e-5,2.48474 v 2.48472 2.48473 2.48473 2.48474 l -2e-5,2.48473 v 2.48474 2.48474 2.48472 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48473 2.48473 2.48472 2.48474 2.48474 2.48473 2.48473 2.48473 2.48474 2.48472 2.48474 2.48473 2.48473 l 2e-5,2.48474 v 2.48472 2.48474 2.48473 2.48473 l -2e-5,2.48474 v 2.48473 2.48473 2.48473 2.48473 2.48472 2.48474 2.48474 2.48473 2.48474 2.48473 l 2e-5,2.48473 v 2.48474 2.48472 2.48474 2.48473 l -2e-5,2.48473 v 2.48473 2.48474 2.48473 2.48473 2.48473 2.48472 2.48474 2.48473 2.48473 2.48474 2.48473 2.48473 2.48473 2.48474 2.48472 2.48473 2.48474 2.48473 2.48474 2.48473 2.48474 2.48472 2.48474 2.48473 2.48472 2.48474 2.48473 2.48474 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48474 2.48473 2.48473 2.48474 2.48472 2.48474 2.48472 2.48474 2.48473 2.48473 2.48473 2.48473 2.48474 2.48472 2.48474 2.48474 2.48472 2.48474 2.48472 2.48474 2.48473 l -1e-5,2.48474 v 2.48474 2.48472 l 1e-5,2.48474 v 2.48472 2.48473 2.48473 2.48474 2.48474 2.48473 2.48474 2.48472 2.48474 2.48473"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:none;marker-mid:url(#StopL);marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- id="path1854"
- d="M 532.61428,686.95055 453.10286,549.23275"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-dasharray:0.4, 1.6;stroke-dashoffset:0;marker-start:url(#Arrow1M);marker-mid:none;marker-end:url(#Arrow1M)"
- inkscape:connector-curvature="0" />
- <path
- id="path1855"
- d="M 553.94762,681.61722 474.43619,543.89941"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-dasharray:0.4, 1.6;stroke-dashoffset:0;marker-start:url(#Dot_l);marker-mid:none;marker-end:url(#Tail)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1856"
- d="m 550.42489,603.28433 h -9.93893 -9.93892 -9.93892 -9.93895 -9.93892 -9.93892 -9.93892 -9.93893 l -9.93892,2e-5 h -9.93892 -9.93893 -9.93892 -9.93894 -9.93892 -9.93893 -9.93892 -9.93892 -9.93893 -9.93892 -9.93894 -9.93892 -9.93893 -9.93892 -9.93892 l -9.93893,2e-5 h -9.93892 -9.93892 -9.93894 -9.93893 -9.93892 -9.93892 -9.93893"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666668;stroke-dashoffset:0;marker-start:url(#DiamondS);marker-mid:url(#CurvyCross);marker-end:url(#CurvyCross)"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
- id="path1857"
- d="m 550.23294,469.951 h -9.93892 -9.93893 -9.93892 -9.93894 -9.93893 -9.93892 -9.93892 -9.93892 l -9.93893,2e-5 h -9.93892 -9.93892 -9.93892 -9.93895 -9.93892 -9.93892 -9.93893 -9.93892 -9.93892 -9.93892 -9.93895 -9.93892 -9.93892 -9.93893 -9.93892 l -9.93892,2e-5 h -9.93892 -9.93893 -9.93894 -9.93892 -9.93893 -9.93892 -9.93892"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666668;stroke-dashoffset:0;marker-start:url(#DiamondS);marker-mid:url(#CurvyCross);marker-end:url(#CurvyCross)"
- inkscape:connector-curvature="0" />
- <path
- id="path1859"
- d="m 261.22397,413.2901 39.75571,68.8589"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1860"
- d="m 261.22397,434.62343 39.75571,68.85891"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1861"
- d="m 239.89063,447.95677 39.75572,68.8589"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1862"
- d="m 237.22397,490.62343 39.75571,68.85891"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1863"
- d="m 234.5573,503.95677 39.75571,68.8589"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut)"
- inkscape:connector-curvature="0" />
- <path
- id="path1864"
- d="m 468.71893,615.07684 39.75572,68.8589"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#Arrow1L)"
- inkscape:connector-curvature="0" />
- <path
- id="path1866"
- d="m 348.47465,651.93574 -39.75572,-68.8589"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.13333334;marker-start:url(#Arrow1S);marker-mid:none;marker-end:url(#Arrow1L)"
- inkscape:connector-curvature="0" />
- </g>
+ id="base" />
+ <g transform="translate(-170,-290)">
+ <path
+ id="path1823"
+ d="M 220.71555,563.03845 C 232.55220,560.72285 244.76291,564.70736 254.47298,571.46005 C 265.04924,578.78453 273.80766,588.52881 280.95471,599.16790 C 287.33090,608.97417 291.93287,619.78003 296.47275,630.51812"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:11.000000;stroke-dasharray:1.1000000 1.1000000 ;stroke-dashoffset:0.0000000;" />
+ <rect
+ rx="8.8173475"
+ ry="8.8173475"
+ y="432.16577"
+ x="306.30634"
+ height="30.770742"
+ width="45.526302"
+ id="rect1818"
+ style="fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:#000000;stroke-width:2.0000000;stroke-dasharray:0.50000000,0.50000000;stroke-dashoffset:0.0000000;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1691"
+ d="M 516.45542,588.86906 L 167.37149,588.86906"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:16.250000;stroke-miterlimit:4.0000000;stroke-dasharray:0.32500000,0.32500000;stroke-dashoffset:0.0000000;marker-start:none;marker-end:none;marker-mid:none;" />
+ <path
+ id="path1666"
+ d="M 355.23716,524.46093 L 373.87265,524.46093"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-mid:none;marker-end:url(#Tail);marker-start:url(#Arrow1M);" />
+ <path
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,890.2529,2.842171e-14)"
+ sodipodi:nodetypes="ccccccccccccccccc"
+ id="path1667"
+ d="M 332.85548,570.51460 L 346.88935,570.51460 L 360.92322,570.51460 L 374.95710,570.51460 L 388.99097,570.51460 L 403.02484,570.51460 L 417.05871,570.51460 L 431.09258,570.51460 L 445.12646,570.51460 L 459.16033,570.51460 L 473.19420,570.51460 L 487.22807,570.51460 L 501.26194,570.51460 L 515.29581,570.51460 L 529.32969,570.51460 L 543.36356,570.51460 L 557.39743,570.51460"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.37500000;stroke-miterlimit:4.0000000;marker-start:url(#Dot_l);marker-mid:url(#Tail);marker-end:url(#Dot_l);" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path1668"
+ d="M 329.78393,449.46093 L 339.10167,449.46093 L 348.41942,449.46093 L 357.73716,449.46093 L 367.05491,449.46093 L 376.37265,449.46093 L 385.69039,449.46093 L 395.00814,449.46093 L 404.32588,449.46093"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#DistanceIn);marker-mid:url(#StopM);marker-end:url(#DistanceOut);" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1669"
+ d="M 115.33836,558.80564 L 289.88031,558.80564"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#DiamondL);marker-mid:none;stroke-miterlimit:4.0000000;stroke-dasharray:0.31250000,0.31250000;stroke-dashoffset:0.0000000;marker-end:url(#TriangleOutM);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1670"
+ d="M 370.01292,458.90582 L 371.17764,460.92317 L 372.34236,462.94052 L 373.50707,464.95787 L 374.67179,466.97522 L 375.83651,468.99257 L 377.00123,471.00992 L 378.16595,473.02727 L 379.33067,475.04462 L 380.49538,477.06197 L 381.66010,479.07932 L 382.82482,481.09667 L 383.98954,483.11402 L 385.15426,485.13137 L 386.31897,487.14872 L 387.48369,489.16607 L 388.64841,491.18343 L 389.81313,493.20078 L 390.97785,495.21813 L 392.14256,497.23548 L 393.30728,499.25283 L 394.47200,501.27018 L 395.63672,503.28753 L 396.80144,505.30488 L 397.96616,507.32223 L 399.13087,509.33958 L 400.29559,511.35693 L 401.46031,513.37428 L 402.62503,515.39163 L 403.78975,517.40898 L 404.95446,519.42633 L 406.11918,521.44368 L 407.28390,523.46103"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#TriangleInL);marker-mid:url(#SquareL);marker-end:url(#TriangleOutL);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ id="path1671"
+ d="M 282.43598,396.97003 L 284.76542,401.00473 L 287.09485,405.03943 L 289.42429,409.07413 L 291.75372,413.10883 L 294.08316,417.14353 L 296.41260,421.17823 L 298.74203,425.21293 L 301.07147,429.24763 L 303.40091,433.28234 L 305.73034,437.31704 L 308.05978,441.35174 L 310.38921,445.38644 L 312.71865,449.42114 L 315.04809,453.45584 L 317.37752,457.49054 L 319.70696,461.52524 L 322.03640,465.55994 L 324.36583,469.59464 L 326.69527,473.62934 L 329.02471,477.66404 L 331.35414,481.69874 L 333.68358,485.73344 L 336.01301,489.76814 L 338.34245,493.80285 L 340.67189,497.83755 L 343.00132,501.87225 L 345.33076,505.90695 L 347.66020,509.94165 L 349.98963,513.97635 L 352.31907,518.01105 L 354.64850,522.04575 L 356.97794,526.08045 L 359.30738,530.11515 L 361.63681,534.14985 L 363.96625,538.18455 L 366.29569,542.21925 L 368.62512,546.25395 L 370.95456,550.28865 L 373.28399,554.32335 L 375.61343,558.35806 L 377.94287,562.39276 L 380.27230,566.42746 L 382.60174,570.46216 L 384.93118,574.49686 L 387.26061,578.53156 L 389.59005,582.56626 L 391.91948,586.60096 L 394.24892,590.63566 L 396.57836,594.67036 L 398.90779,598.70506 L 401.23723,602.73976 L 403.56667,606.77446 L 405.89610,610.80916 L 408.22554,614.84386 L 410.55497,618.87856 L 412.88441,622.91327 L 415.21385,626.94797 L 417.54328,630.98267 L 419.87272,635.01737 L 422.20216,639.05207 L 424.53159,643.08677 L 426.86103,647.12147 L 429.19046,651.15617 L 431.51990,655.19087"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.0000000 0.50000000 ;stroke-dashoffset:0.0000000;marker-start:none;marker-mid:url(#StopL);marker-end:none;" />
+ <path
+ id="path1672"
+ d="M 285.01295,395.35051 L 434.09687,653.57135"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:0.50000000,0.50000000;stroke-dashoffset:0.0000000;" />
+ <path
+ id="path1673"
+ d="M 332.16845,494.51469 L 294.89747,429.95947"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ id="path1674"
+ d="M 349.22770,476.12429 L 350.39242,478.14164 L 351.55714,480.15899 L 352.72185,482.17634 L 353.88657,484.19369 L 355.05129,486.21104 L 356.21601,488.22839 L 357.38073,490.24574 L 358.54544,492.26310 L 359.71016,494.28045 L 360.87488,496.29780 L 362.03960,498.31515 L 363.20432,500.33250 L 364.36904,502.34985 L 365.53375,504.36720 L 366.69847,506.38455 L 367.86319,508.40190"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.37500000;marker-start:url(#SemiCircleIn);marker-mid:url(#CurveIn);marker-end:url(#SemiCircleOut);" />
+ <path
+ id="path1675"
+ d="M 309.78393,369.90570 L 384.32589,499.01614"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.37500000;marker-mid:none;stroke-miterlimit:4.0000000;stroke-dasharray:0.37500000,1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow1M);marker-end:url(#Arrow1M);" />
+ <path
+ id="path1676"
+ d="M 391.99624,477.20000 L 373.36075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1677"
+ d="M 417.73717,583.32212 L 436.37266,615.59973"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;" />
+ <path
+ sodipodi:nodetypes="csssc"
+ id="path1678"
+ d="M 444.56554,522.48988 C 430.11869,526.66148 415.67184,530.83308 401.22500,535.00468 C 386.77815,539.17627 372.33129,543.34787 357.88444,547.51947 C 343.43759,551.69107 328.99074,555.86268 314.54389,560.03429 C 300.09705,564.20590 285.65021,568.37752 271.20336,572.54913"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;stroke-dasharray:0.93730241 2.8119072 ;stroke-dashoffset:0.0000000;marker-start:none;marker-mid:url(#Scissors);marker-end:url(#StopL);" />
+ <path
+ id="path1679"
+ d="M 397.68181,515.00735 L 253.67785,553.59311"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;marker-start:url(#DiamondS);marker-mid:none;marker-end:url(#Club);stroke-miterlimit:4.0000000;stroke-dasharray:3.0000000,0.75000000;stroke-dashoffset:0.0000000;" />
+ <path
+ id="path1680"
+ d="M 361.18032,536.97701 L 325.17933,546.62345"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;marker-mid:none;" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path1681"
+ d="M 392.86851,550.60491 L 374.86802,555.42813 L 356.86752,560.25135 L 338.86703,565.07457 L 320.86653,569.89779 L 302.86604,574.72101 L 284.86554,579.54423 L 266.86505,584.36745 L 248.86455,589.19067"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;marker-start:url(#DiamondL);marker-mid:url(#Dot_s);marker-end:url(#DiamondL);" />
+ <path
+ id="path1682"
+ d="M 501.33168,430.45098 L 357.32772,469.03674"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;stroke-dasharray:18.000000 18.000000 ;stroke-dashoffset:0.0000000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#StopL);" />
+ <path
+ id="path1683"
+ d="M 413.86445,504.44721 L 269.86049,543.03297"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;stroke-dasharray:0.75000000 9.0000000 ;stroke-dashoffset:0.0000000;marker-start:url(#TriangleInL);marker-end:url(#TriangleOutL);" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path1684"
+ d="M 347.68180,587.50735 L 329.68131,592.33057 L 311.68081,597.15379 L 293.68032,601.97701 L 275.67982,606.80023 L 257.67933,611.62345 L 239.67883,616.44667 L 221.67834,621.26989 L 203.67784,626.09311"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.75000000;marker-mid:url(#SemiCircleIn);marker-end:none;marker-start:url(#SemiCircleIn);" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1685"
+ d="M 423.36549,532.53630 L 423.36549,707.07825"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.0000000;stroke-dasharray:6.0000000 6.0000000 ;stroke-dashoffset:0.0000000;marker-start:none;marker-mid:none;marker-end:none;" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1686"
+ d="M 460.67772,507.88656 L 460.67772,551.52205"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.0000000;stroke-dasharray:3.0000000 3.0000000 ;stroke-dashoffset:0.0000000;marker-start:url(#Dot_s);marker-mid:none;marker-end:url(#Dot_s);" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1687"
+ d="M 266.00125,409.75728 L 266.00125,453.39277"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.0000000;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#StopM);" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1688"
+ d="M 437.58798,470.56746 L 437.58798,557.83843"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:6.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:1.5000000,1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#StopM);marker-end:url(#StopM);" />
+ <path
+ id="path1689"
+ d="M 294.35668,586.92104 L 312.99217,619.19865"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:0.37500000 0.12500000 ;stroke-dashoffset:0.0000000;marker-start:url(#Tail);marker-mid:none;" />
+ <path
+ id="path1690"
+ d="M 305.23717,593.32212 L 323.87266,625.59973"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;" />
+ <path
+ transform="translate(-2.699170,6.478023)"
+ d="M 285.75403,503.70724 C 285.63304,503.83009 285.52875,503.60476 285.54986,503.50615 C 285.60707,503.23893 285.94844,503.19346 286.15622,503.29891 C 286.52788,503.48753 286.57503,503.98432 286.36654,504.31053 C 286.06057,504.78924 285.39040,504.83856 284.94965,504.52392 C 284.36220,504.10455 284.31107,503.25570 284.73318,502.70178 C 285.26437,502.00472 286.29415,501.95196 286.96059,502.48223 C 287.76774,503.12446 287.82204,504.33632 287.18321,505.11490 C 286.43038,506.03244 285.03578,506.08823 284.14528,505.34060 C 283.11716,504.47743 283.05991,502.89967 283.91651,501.89740 C 284.88982,500.75856 286.65104,500.69987 287.76497,501.66555 C 289.01462,502.74890 289.07474,504.69377 287.99989,505.91928 C 286.80661,507.27982 284.67792,507.34135 283.34090,506.15728 C 281.86942,504.85412 281.80647,502.54152 283.09983,501.09303 C 284.51280,499.51057 287.00941,499.44620 288.56934,500.84888 C 290.26281,502.37163 290.32859,505.05231 288.81657,506.72365 C 287.18406,508.52816 284.31925,508.59535 282.53653,506.97395 C 280.62096,505.23173 280.55236,502.18274 282.28315,500.28865 C 284.13507,498.26200 287.36828,498.19200 289.37372,500.03220 C 291.51146,501.99380 291.58286,505.41126 289.63324,507.52803 C 287.56197,509.77688 283.96025,509.84969 281.73215,507.79063 C 279.37218,505.60970 279.29797,501.82368 281.46647,499.48427 C 283.75705,497.01318 287.72738,496.93757 290.17809,499.21552 C 292.76033,501.61573 292.83734,505.77039 290.44992,508.33240 C 287.94009,511.02578 283.60108,511.10419 280.92778,508.60731 C 278.12325,505.98785 278.04343,501.46449 280.64980,498.67990 C 283.37886,495.76422 288.08660,495.68300 290.98247,498.39885 C 294.00931,501.23752 294.09193,506.12964 291.26660,509.13678 C 288.31832,512.27478 283.24181,512.35880 280.12340,509.42398 C 276.87423,506.36611 276.78881,501.10520 279.83312,497.87552 C 283.00059,494.51519 288.44590,494.42836 291.78684,497.58217 C 295.25836,500.85923 295.34658,506.48895 292.08327,509.94115 C 288.69663,513.52384 282.88249,513.61347 279.31903,510.24066 C 275.62516,506.74443 275.53413,500.74587 279.01644,497.07115 C 282.62226,493.26610 288.80524,493.17367 292.59122,496.76549 C 296.50745,500.48089 296.60128,506.84830 292.89995,510.74553 C 289.07498,514.77295 282.52313,514.86817 278.51465,511.05734 C 274.37605,507.12279 274.27942,500.38650 278.19977,496.26677 C 282.24389,492.01698 289.16462,491.91895 293.39559,495.94881 C 297.75658,500.10251 297.85600,507.20769 293.71663,511.54990 C 289.45336,516.02208 282.16374,516.12291 277.71028,511.87401 C 273.12691,507.50118 273.02468,500.02710 277.38309,495.46240 C 281.86549,490.76784 289.52403,490.66421 294.19997,495.13214 C 299.00573,499.72411 299.11076,507.56710 294.53330,512.35428 C 289.83177,517.27123 281.80432,517.37766 276.90590,512.69069 C 271.87775,507.87959 271.76992,499.66768 276.56641,494.65802 C 281.48708,489.51867 289.88345,489.40944 295.00434,494.31546 C 300.25489,499.34569 300.36552,507.92652 295.34998,513.15865 C 290.21019,518.52040 281.44490,518.63243 276.10153,513.50737 C 270.62858,508.25802 270.51515,499.30825 275.74974,493.85365 C 281.10865,488.26950 290.24288,488.15467 295.80872,493.49878 C 301.50407,498.96725 301.62030,508.28596 296.16666,513.96303 C 290.58863,519.76958 281.08546,519.88721 275.29715,514.32404 C 269.37939,508.63646 269.26036,498.94881 274.93306,493.04927 C 280.73020,487.02031 290.60232,486.89988 296.61309,492.68211 C 302.75326,498.58881 302.87509,508.64540 296.98334,514.76740 C 290.96708,521.01877 280.72601,521.14201 274.49277,515.14072 C 268.13020,509.01491 268.00557,498.58936 274.11638,492.24490 C 280.35175,485.77112 290.96178,485.64509 297.41747,491.86543 C 304.00246,498.21035 304.12989,509.00486 297.80001,515.57178 C 291.34553,522.26797 280.36655,522.39680 273.68840,515.95740 C 266.88100,509.39337 266.75077,498.22990 273.29971,491.44052 C 279.97329,484.52192 291.32124,484.39028 298.22184,491.04875 C 305.25166,497.83189 305.38469,509.36432 298.61669,516.37616 C 291.72400,523.51718 280.00709,523.65161 272.88402,516.77408 C 265.63179,509.77183 265.49596,497.87044 272.48303,490.63615 C 279.59483,483.27271 291.68070,483.13548 299.02622,490.23208 C 306.50087,497.45343 306.63950,509.72378 299.43337,517.18053 C 292.10246,524.76639 279.64762,524.90642 272.07965,517.59075 C 266.03878,511.75128 264.43554,502.43099 268.11940,494.88976"
+ sodipodi:t0="0.0000000"
+ sodipodi:argument="-54.200062"
+ sodipodi:radius="19.716188"
+ sodipodi:revolution="17.200001"
+ sodipodi:expansion="1.0000000"
+ sodipodi:cy="503.70724"
+ sodipodi:cx="285.75403"
+ id="path1692"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.2625000;stroke-dasharray:1.1312500 2.2625000 ;stroke-dashoffset:0.0000000;marker-start:url(#Dot_s);marker-mid:none;marker-end:url(#Dot_m);"
+ sodipodi:type="spiral" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1707"
+ d="M 234.67230,345.35045 L 239.33117,353.41985 L 243.99004,361.48926 L 248.64892,369.55866 L 253.30779,377.62807 L 257.96666,385.69747 L 262.62553,393.76688 L 267.28441,401.83628 L 271.94328,409.90569 L 276.60215,417.97509 L 281.26103,426.04449 L 285.91990,434.11390 L 290.57877,442.18330 L 295.23764,450.25271 L 299.89652,458.32211 L 304.55539,466.39152 L 309.21426,474.46092 L 313.87313,482.53032 L 318.53201,490.59973 L 323.19088,498.66913 L 327.84975,506.73854 L 332.50862,514.80794 L 337.16750,522.87735 L 341.82637,530.94675 L 346.48524,539.01616 L 351.14411,547.08556 L 355.80299,555.15496 L 360.46186,563.22437 L 365.12073,571.29377 L 369.77960,579.36318 L 374.43848,587.43258 L 379.09735,595.50199 L 383.75622,603.57139"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:none;marker-mid:url(#Arrow1L);marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1737"
+ d="M 307.25789,486.93201 L 306.09317,484.91466 L 304.92845,482.89731 L 303.76374,480.87996 L 302.59902,478.86261 L 301.43430,476.84526 L 300.26958,474.82791 L 299.10486,472.81056 L 297.94015,470.79321 L 296.77543,468.77585 L 295.61071,466.75850 L 294.44599,464.74115 L 293.28127,462.72380 L 292.11655,460.70645 L 290.95184,458.68910 L 289.78712,456.67175 L 288.62240,454.65440 L 287.45768,452.63705 L 286.29296,450.61970 L 285.12825,448.60235 L 283.96353,446.58500 L 282.79881,444.56765 L 281.63409,442.55030 L 280.46937,440.53295 L 279.30466,438.51560 L 278.13994,436.49824 L 276.97522,434.48089 L 275.81050,432.46354 L 274.64578,430.44619 L 273.48106,428.42884 L 272.31635,426.41149 L 271.15163,424.39414 L 269.98691,422.37679"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:url(#Dot_l);marker-end:url(#Arrow1L);" />
+ <path
+ id="path1738"
+ d="M 311.66624,498.84872 C 313.06724,500.66644 313.62592,503.04587 313.31281,505.30707 C 312.73501,509.86998 309.99103,513.87362 309.64770,518.48623 C 309.53141,520.45595 309.87290,522.64885 311.35352,524.07851 C 312.30156,525.04929 313.83502,525.22639 315.04568,524.67547 C 315.08211,524.66029 315.22844,524.59725 315.26515,524.58096"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#Torso);marker-mid:none;marker-end:url(#Legs);" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path1774"
+ d="M 286.47382,463.75928 C 288.33830,469.44654 285.25077,473.14836 285.39414,475.63570"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#Torso);marker-end:url(#Legs);marker-mid:none;" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path1787"
+ d="M 267.57949,476.53542 C 270.54302,500.19039 255.45061,478.47236 257.58060,498.55293 C 258.61869,515.79307 248.88938,513.90649 258.22230,528.71976"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#Torso);marker-end:url(#Legs);" />
+ <path
+ id="path1808"
+ d="M 375.86075,444.92239 L 394.49624,477.20000"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1809"
+ d="M 394.49624,477.20000 L 375.86075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1810"
+ d="M 396.99624,477.20000 L 378.36075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1811"
+ d="M 399.49624,477.20000 L 380.86075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1812"
+ d="M 401.99624,477.20000 L 383.36075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1813"
+ d="M 404.49624,477.20000 L 385.86075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1814"
+ d="M 406.99624,477.20000 L 388.36075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1815"
+ d="M 390.86075,444.92239 L 409.49624,477.20000"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1816"
+ d="M 409.49624,477.20000 L 390.86075,444.92239"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Arrow2L);marker-mid:none;marker-end:url(#Arrow1S);" />
+ <path
+ id="path1817"
+ d="M 405.23716,494.46093 L 423.87265,494.46093"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#Arrow2M);marker-mid:none;marker-end:url(#Tail);" />
+ <path
+ id="path1833"
+ d="M 479.16134,600.57907 L 330.07746,600.57909"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:1.5000000 1.5000000 ;stroke-dashoffset:0.0000000;marker-start:url(#DiamondS);marker-mid:none;marker-end:url(#CurvyCross);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1840"
+ d="M 301.71426,325.37699 L 301.71426,334.69473 L 301.71426,344.01249 L 301.71427,353.33022 L 301.71426,362.64798 L 301.71426,371.96572 L 301.71426,381.28347 L 301.71426,390.60121 L 301.71426,399.91896 L 301.71426,409.23670 L 301.71427,418.55445 L 301.71426,427.87220 L 301.71426,437.18993 L 301.71426,446.50769 L 301.71427,455.82543 L 301.71426,465.14318 L 301.71426,474.46092 L 301.71426,483.77866 L 301.71426,493.09641 L 301.71426,502.41415 L 301.71426,511.73191 L 301.71426,521.04964 L 301.71426,530.36740 L 301.71426,539.68514 L 301.71426,549.00289 L 301.71426,558.32063 L 301.71426,567.63837 L 301.71426,576.95612 L 301.71426,586.27386 L 301.71425,595.59162 L 301.71426,604.90935 L 301.71426,614.22711 L 301.71426,623.54485"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1841"
+ d="M 413.69371,325.37699 L 413.69371,334.69473 L 413.69371,344.01249 L 413.69372,353.33022 L 413.69371,362.64798 L 413.69371,371.96572 L 413.69371,381.28347 L 413.69371,390.60121 L 413.69371,399.91896 L 413.69371,409.23670 L 413.69372,418.55445 L 413.69371,427.87220 L 413.69371,437.18993 L 413.69371,446.50769 L 413.69372,455.82543 L 413.69371,465.14318 L 413.69371,474.46092 L 413.69371,483.77866 L 413.69371,493.09641 L 413.69371,502.41415 L 413.69371,511.73191 L 413.69371,521.04964 L 413.69371,530.36740 L 413.69371,539.68514 L 413.69371,549.00289 L 413.69371,558.32063 L 413.69371,567.63837 L 413.69371,576.95612 L 413.69371,586.27386 L 413.69370,595.59162 L 413.69371,604.90935 L 413.69371,614.22711 L 413.69371,623.54485"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000000;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ id="path1842"
+ d="M 322.06062,312.07347 L 322.06062,314.40290 L 322.06062,316.73234 L 322.06062,319.06178 L 322.06062,321.39121 L 322.06062,323.72065 L 322.06062,326.05009 L 322.06062,328.37953 L 322.06062,330.70897 L 322.06062,333.03840 L 322.06063,335.36784 L 322.06063,337.69727 L 322.06063,340.02670 L 322.06063,342.35614 L 322.06063,344.68558 L 322.06062,347.01502 L 322.06062,349.34446 L 322.06062,351.67390 L 322.06062,354.00333 L 322.06062,356.33276 L 322.06062,358.66220 L 322.06062,360.99164 L 322.06062,363.32107 L 322.06062,365.65051 L 322.06062,367.97995 L 322.06062,370.30939 L 322.06062,372.63882 L 322.06062,374.96825 L 322.06062,377.29769 L 322.06062,379.62713 L 322.06062,381.95657 L 322.06062,384.28600 L 322.06062,386.61544 L 322.06062,388.94488 L 322.06062,391.27431 L 322.06062,393.60375 L 322.06062,395.93318 L 322.06062,398.26262 L 322.06063,400.59206 L 322.06063,402.92149 L 322.06063,405.25093 L 322.06063,407.58037 L 322.06063,409.90980 L 322.06062,412.23924 L 322.06062,414.56868 L 322.06062,416.89811 L 322.06062,419.22755 L 322.06062,421.55698 L 322.06062,423.88641 L 322.06062,426.21585 L 322.06062,428.54529 L 322.06062,430.87473 L 322.06062,433.20417 L 322.06062,435.53361 L 322.06063,437.86304 L 322.06063,440.19248 L 322.06063,442.52191 L 322.06063,444.85135 L 322.06063,447.18079 L 322.06062,449.51022 L 322.06062,451.83966 L 322.06062,454.16910 L 322.06062,456.49853 L 322.06062,458.82797 L 322.06062,461.15740 L 322.06062,463.48683 L 322.06062,465.81627 L 322.06062,468.14571 L 322.06062,470.47514 L 322.06062,472.80458 L 322.06062,475.13402 L 322.06062,477.46345 L 322.06062,479.79289 L 322.06062,482.12233 L 322.06062,484.45176 L 322.06062,486.78119 L 322.06062,489.11063 L 322.06062,491.44007 L 322.06062,493.76951 L 322.06062,496.09895 L 322.06062,498.42839 L 322.06062,500.75782 L 322.06062,503.08726 L 322.06062,505.41669 L 322.06062,507.74612 L 322.06062,510.07556 L 322.06062,512.40500 L 322.06062,514.73444 L 322.06062,517.06388 L 322.06062,519.39331 L 322.06062,521.72275 L 322.06062,524.05219 L 322.06062,526.38162 L 322.06062,528.71106 L 322.06062,531.04050 L 322.06062,533.36993 L 322.06062,535.69937 L 322.06062,538.02881 L 322.06062,540.35824 L 322.06062,542.68768 L 322.06062,545.01711 L 322.06062,547.34655 L 322.06062,549.67598 L 322.06062,552.00542 L 322.06062,554.33485 L 322.06062,556.66429 L 322.06062,558.99373 L 322.06062,561.32316 L 322.06062,563.65260 L 322.06062,565.98204 L 322.06062,568.31147 L 322.06062,570.64091 L 322.06062,572.97034 L 322.06062,575.29978 L 322.06062,577.62922 L 322.06061,579.95866 L 322.06061,582.28810 L 322.06061,584.61753 L 322.06062,586.94697 L 322.06062,589.27640 L 322.06062,591.60583 L 322.06062,593.93527 L 322.06062,596.26471 L 322.06062,598.59415 L 322.06062,600.92359 L 322.06062,603.25303 L 322.06062,605.58246 L 322.06062,607.91190 L 322.06062,610.24133"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:none;marker-mid:url(#StopL);marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1843"
+ d="M 254.21426,325.37699 L 254.21426,334.69473 L 254.21426,344.01249 L 254.21427,353.33022 L 254.21426,362.64798 L 254.21426,371.96572 L 254.21426,381.28347 L 254.21426,390.60121 L 254.21426,399.91896 L 254.21426,409.23670 L 254.21427,418.55445 L 254.21426,427.87220 L 254.21426,437.18993 L 254.21426,446.50769 L 254.21427,455.82543 L 254.21426,465.14318 L 254.21426,474.46092 L 254.21426,483.77866 L 254.21426,493.09641 L 254.21426,502.41415 L 254.21426,511.73191 L 254.21426,521.04964 L 254.21426,530.36740 L 254.21426,539.68514 L 254.21426,549.00289 L 254.21426,558.32063 L 254.21426,567.63837 L 254.21426,576.95612 L 254.21426,586.27386 L 254.21425,595.59162 L 254.21426,604.90935 L 254.21426,614.22711 L 254.21426,623.54485"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:none;marker-mid:url(#DistanceLeft);marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ id="path1844"
+ d="M 380.57009,436.83686 L 380.57009,439.16630 L 380.57009,441.49573 L 380.57009,443.82517 L 380.57009,446.15460 L 380.57009,448.48404 L 380.57009,450.81348 L 380.57009,453.14292 L 380.57009,455.47236 L 380.57009,457.80179 L 380.57010,460.13123 L 380.57010,462.46066 L 380.57010,464.79009 L 380.57010,467.11953 L 380.57010,469.44897 L 380.57009,471.77841 L 380.57009,474.10785 L 380.57009,476.43729 L 380.57009,478.76672 L 380.57009,481.09616 L 380.57009,483.42559 L 380.57009,485.75503 L 380.57009,488.08446 L 380.57009,490.41390 L 380.57009,492.74334 L 380.57009,495.07277 L 380.57009,497.40221 L 380.57009,499.73165 L 380.57009,502.06108 L 380.57009,504.39052 L 380.57009,506.71996 L 380.57009,509.04939 L 380.57009,511.37883 L 380.57009,513.70827 L 380.57009,516.03770 L 380.57009,518.36714 L 380.57009,520.69657 L 380.57009,523.02601 L 380.57010,525.35545 L 380.57010,527.68488 L 380.57010,530.01432 L 380.57010,532.34376 L 380.57010,534.67320 L 380.57009,537.00263 L 380.57009,539.33207 L 380.57009,541.66150 L 380.57009,543.99094 L 380.57009,546.32037 L 380.57009,548.64980 L 380.57009,550.97924 L 380.57009,553.30868 L 380.57009,555.63812 L 380.57009,557.96756 L 380.57009,560.29700 L 380.57010,562.62643 L 380.57010,564.95586 L 380.57010,567.28530 L 380.57010,569.61474 L 380.57010,571.94418 L 380.57009,574.27361 L 380.57009,576.60305 L 380.57009,578.93249 L 380.57009,581.26192 L 380.57009,583.59136 L 380.57009,585.92079 L 380.57009,588.25023 L 380.57009,590.57966 L 380.57009,592.90910 L 380.57009,595.23853 L 380.57009,597.56797 L 380.57009,599.89741 L 380.57009,602.22684 L 380.57009,604.55628 L 380.57009,606.88572 L 380.57009,609.21515 L 380.57009,611.54458 L 380.57009,613.87402 L 380.57009,616.20346 L 380.57009,618.53290 L 380.57009,620.86234 L 380.57009,623.19178 L 380.57009,625.52121 L 380.57009,627.85065 L 380.57009,630.18008 L 380.57009,632.50951 L 380.57009,634.83895 L 380.57009,637.16839 L 380.57009,639.49783 L 380.57009,641.82727 L 380.57009,644.15670 L 380.57009,646.48614 L 380.57009,648.81558 L 380.57009,651.14501 L 380.57009,653.47445 L 380.57009,655.80389 L 380.57009,658.13332 L 380.57009,660.46276 L 380.57009,662.79220 L 380.57009,665.12163 L 380.57009,667.45107 L 380.57009,669.78050 L 380.57009,672.10994 L 380.57009,674.43937 L 380.57009,676.76881 L 380.57009,679.09824 L 380.57009,681.42768 L 380.57009,683.75712 L 380.57009,686.08655 L 380.57009,688.41599 L 380.57009,690.74543 L 380.57009,693.07486 L 380.57009,695.40430 L 380.57009,697.73373 L 380.57009,700.06317 L 380.57008,702.39261 L 380.57008,704.72205 L 380.57008,707.05149 L 380.57008,709.38092 L 380.57008,711.71036 L 380.57009,714.03979 L 380.57009,716.36922 L 380.57009,718.69866 L 380.57009,721.02810 L 380.57009,723.35754 L 380.57009,725.68698 L 380.57009,728.01642 L 380.57009,730.34585 L 380.57009,732.67529 L 380.57009,735.00472"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;stroke-dasharray:0.12500000 6.0000000 ;stroke-dashoffset:0.0000000;marker-start:none;marker-mid:url(#Dot_l);marker-end:url(#Tail);" />
+ <path
+ id="path1846"
+ d="M 279.81581,535.01783 C 282.12851,532.70513 282.88555,534.03346 284.85430,535.01783 C 287.11300,535.01783 289.49205,537.28757 291.51230,536.27745 C 292.63590,537.40105 292.08868,539.37308 293.49170,540.77610 C 294.75013,543.29296 298.53018,538.13872 298.53018,536.45740 C 300.67830,536.45740 300.96898,532.47177 305.36813,533.93816 C 307.43587,537.03976 304.64834,539.88094 304.64834,542.93545 C 306.45896,544.74606 309.32694,543.58544 309.32694,546.89426 C 311.75863,550.54179 312.98263,545.73568 314.90526,545.09480 C 319.53785,545.09480 317.96434,544.82327 317.96434,548.51377 C 317.96434,551.11016 324.50868,551.85223 326.24185,554.45198 C 327.84453,555.41360 334.08644,556.99557 328.22125,558.95063 C 326.81652,559.65300 328.95355,559.87540 330.02071,562.00971 C 331.51980,565.00789 335.59903,561.63499 335.59903,565.24874 C 337.34573,565.24874 337.46224,568.59267 337.03860,570.28722 C 337.03860,571.39971 337.93833,571.80317 337.93833,573.88614 C 337.93833,575.00531 341.17735,575.97386 341.17735,574.60592"
+ style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.12500000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-miterlimit:4.0000000;stroke-dasharray:0.12500000,0.12500000;marker-mid:url(#Scissors);stroke-dashoffset:0.0000000;marker-start:url(#Dot_l);marker-end:url(#DiamondL);" />
+ <path
+ id="path1847"
+ d="M 265.60009,461.41997 C 265.08288,459.86833 267.57950,458.72894 267.57950,459.44057 C 268.78488,461.24865 266.85510,462.67959 265.42015,462.67959 C 264.96070,462.22015 263.92623,459.28780 266.49982,458.00100 C 267.23610,458.00100 270.30188,459.06908 268.11933,460.16035 C 267.27574,463.53471 264.70731,461.77708 264.70036,461.77986 C 264.70036,460.63863 263.73907,458.36089 264.88031,458.36089 C 264.88031,458.18192 267.57950,459.50793 267.57950,461.41997 C 267.57950,463.33632 264.43708,463.89755 263.08085,463.21943 C 261.50962,463.21943 263.60977,459.08068 266.13993,459.08068 C 269.26901,459.08068 267.63064,463.39938 264.88031,463.39938 C 261.84803,463.39938 264.68329,457.44409 266.49982,459.26062 C 266.49982,461.09722 263.98058,465.33480 263.98058,462.31970 C 262.20702,458.77259 266.45379,458.83936 268.11933,461.06008 C 268.11933,464.82870 266.71003,465.83486 263.44074,463.21943 C 258.63760,460.81786 265.94574,458.90073 268.11933,458.90073 C 271.27079,458.90073 267.98663,464.65900 263.98058,464.65900 C 258.05310,462.28801 262.92109,458.38086 267.39955,457.82106 C 273.89935,457.82106 267.41879,464.28468 265.24020,465.91862 C 260.36169,465.91862 257.83983,463.01144 262.36107,459.62051 C 266.78000,458.98924 273.33776,456.28570 273.33776,462.85954 C 274.46315,465.67300 264.34047,464.88938 264.34047,461.24003 C 261.45231,456.90778 270.50787,457.94796 272.25809,459.26062 C 276.44857,466.24476 264.26890,464.22720 261.46134,463.75927 C 257.40675,461.32652 260.66229,458.36089 264.16052,458.36089 C 267.46883,457.53382 269.75324,462.67959 265.95998,462.67959 C 265.95998,462.12029 265.97895,462.55655 265.60009,461.41997 z "
+ style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.25000000;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:0.25000000,1.5000000;stroke-dashoffset:0.0000000;" />
+ <path
+ id="path1852"
+ d="M 452.28392,544.46093 L 526.82588,544.46093"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500000;marker-start:url(#Arrow2M);marker-mid:none;marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+ id="path1853"
+ d="M 467.06062,312.07347 L 467.06062,314.40290 L 467.06062,316.73234 L 467.06062,319.06178 L 467.06062,321.39121 L 467.06062,323.72065 L 467.06062,326.05009 L 467.06062,328.37953 L 467.06062,330.70897 L 467.06062,333.03840 L 467.06063,335.36784 L 467.06063,337.69727 L 467.06063,340.02670 L 467.06063,342.35614 L 467.06063,344.68558 L 467.06062,347.01502 L 467.06062,349.34446 L 467.06062,351.67390 L 467.06062,354.00333 L 467.06062,356.33276 L 467.06062,358.66220 L 467.06062,360.99164 L 467.06062,363.32107 L 467.06062,365.65051 L 467.06062,367.97995 L 467.06062,370.30939 L 467.06062,372.63882 L 467.06062,374.96825 L 467.06062,377.29769 L 467.06062,379.62713 L 467.06062,381.95657 L 467.06062,384.28600 L 467.06062,386.61544 L 467.06062,388.94488 L 467.06062,391.27431 L 467.06062,393.60375 L 467.06062,395.93318 L 467.06062,398.26262 L 467.06063,400.59206 L 467.06063,402.92149 L 467.06063,405.25093 L 467.06063,407.58037 L 467.06063,409.90980 L 467.06062,412.23924 L 467.06062,414.56868 L 467.06062,416.89811 L 467.06062,419.22755 L 467.06062,421.55698 L 467.06062,423.88641 L 467.06062,426.21585 L 467.06062,428.54529 L 467.06062,430.87473 L 467.06062,433.20417 L 467.06062,435.53361 L 467.06063,437.86304 L 467.06063,440.19248 L 467.06063,442.52191 L 467.06063,444.85135 L 467.06063,447.18079 L 467.06062,449.51022 L 467.06062,451.83966 L 467.06062,454.16910 L 467.06062,456.49853 L 467.06062,458.82797 L 467.06062,461.15740 L 467.06062,463.48683 L 467.06062,465.81627 L 467.06062,468.14571 L 467.06062,470.47514 L 467.06062,472.80458 L 467.06062,475.13402 L 467.06062,477.46345 L 467.06062,479.79289 L 467.06062,482.12233 L 467.06062,484.45176 L 467.06062,486.78119 L 467.06062,489.11063 L 467.06062,491.44007 L 467.06062,493.76951 L 467.06062,496.09895 L 467.06062,498.42839 L 467.06062,500.75782 L 467.06062,503.08726 L 467.06062,505.41669 L 467.06062,507.74612 L 467.06062,510.07556 L 467.06062,512.40500 L 467.06062,514.73444 L 467.06062,517.06388 L 467.06062,519.39331 L 467.06062,521.72275 L 467.06062,524.05219 L 467.06062,526.38162 L 467.06062,528.71106 L 467.06062,531.04050 L 467.06062,533.36993 L 467.06062,535.69937 L 467.06062,538.02881 L 467.06062,540.35824 L 467.06062,542.68768 L 467.06062,545.01711 L 467.06062,547.34655 L 467.06062,549.67598 L 467.06062,552.00542 L 467.06062,554.33485 L 467.06062,556.66429 L 467.06062,558.99373 L 467.06062,561.32316 L 467.06062,563.65260 L 467.06062,565.98204 L 467.06062,568.31147 L 467.06062,570.64091 L 467.06062,572.97034 L 467.06062,575.29978 L 467.06062,577.62922 L 467.06061,579.95866 L 467.06061,582.28810 L 467.06061,584.61753 L 467.06062,586.94697 L 467.06062,589.27640 L 467.06062,591.60583 L 467.06062,593.93527 L 467.06062,596.26471 L 467.06062,598.59415 L 467.06062,600.92359 L 467.06062,603.25303 L 467.06062,605.58246 L 467.06062,607.91190 L 467.06062,610.24133"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:none;marker-mid:url(#StopL);marker-end:url(#Tail);" />
+ <path
+ id="path1854"
+ d="M 499.32589,644.01614 L 424.78393,514.90570"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.37500000;stroke-dasharray:0.37500000 1.5000000 ;stroke-dashoffset:0.0000000;marker-start:url(#Arrow1M);marker-mid:none;marker-end:url(#Arrow1M);" />
+ <path
+ id="path1855"
+ d="M 519.32589,639.01614 L 444.78393,509.90570"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.37500000;stroke-dasharray:0.37500000 1.5000000;stroke-dashoffset:0.0000000;marker-start:url(#Dot_l);marker-mid:none;marker-end:url(#Tail);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1856"
+ d="M 516.02333,565.57906 L 506.70559,565.57906 L 497.38785,565.57906 L 488.07011,565.57906 L 478.75235,565.57906 L 469.43461,565.57906 L 460.11687,565.57906 L 450.79913,565.57906 L 441.48139,565.57906 L 432.16365,565.57908 L 422.84591,565.57908 L 413.52817,565.57908 L 404.21043,565.57908 L 394.89267,565.57908 L 385.57493,565.57908 L 376.25719,565.57908 L 366.93945,565.57908 L 357.62171,565.57908 L 348.30397,565.57908 L 338.98623,565.57908 L 329.66847,565.57908 L 320.35073,565.57908 L 311.03299,565.57908 L 301.71525,565.57908 L 292.39751,565.57908 L 283.07977,565.57910 L 273.76203,565.57910 L 264.44429,565.57910 L 255.12653,565.57910 L 245.80879,565.57910 L 236.49105,565.57910 L 227.17331,565.57910 L 217.85557,565.57910"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000000;stroke-dashoffset:0.0000000;marker-start:url(#DiamondS);marker-mid:url(#CurvyCross);marker-end:url(#CurvyCross);" />
+ <path
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"
+ id="path1857"
+ d="M 515.84338,440.57906 L 506.52564,440.57906 L 497.20790,440.57906 L 487.89016,440.57906 L 478.57240,440.57906 L 469.25466,440.57906 L 459.93692,440.57906 L 450.61918,440.57906 L 441.30144,440.57906 L 431.98370,440.57908 L 422.66596,440.57908 L 413.34822,440.57908 L 404.03048,440.57908 L 394.71272,440.57908 L 385.39498,440.57908 L 376.07724,440.57908 L 366.75950,440.57908 L 357.44176,440.57908 L 348.12402,440.57908 L 338.80628,440.57908 L 329.48852,440.57908 L 320.17078,440.57908 L 310.85304,440.57908 L 301.53530,440.57908 L 292.21756,440.57908 L 282.89982,440.57910 L 273.58208,440.57910 L 264.26434,440.57910 L 254.94658,440.57910 L 245.62884,440.57910 L 236.31110,440.57910 L 226.99336,440.57910 L 217.67562,440.57910"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.25000000;stroke-dashoffset:0.0000000;marker-start:url(#DiamondS);marker-mid:url(#CurvyCross);marker-end:url(#CurvyCross);" />
+ <path
+ id="path1859"
+ d="M 244.89747,387.45947 L 282.16845,452.01469"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ id="path1860"
+ d="M 244.89747,407.45947 L 282.16845,472.01469"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ id="path1861"
+ d="M 224.89747,419.95947 L 262.16845,484.51469"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ id="path1862"
+ d="M 222.39747,459.95947 L 259.66845,524.51469"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ id="path1863"
+ d="M 219.89747,472.45947 L 257.16845,537.01469"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#DistanceOut);" />
+ <path
+ id="path1864"
+ d="M 439.42400,576.63454 L 476.69498,641.18976"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1L);marker-mid:none;marker-end:url(#Arrow1L);" />
+ <path
+ id="path1866"
+ d="M 326.69498,611.18976 L 289.42400,546.63454"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12500000;marker-start:url(#Arrow1S);marker-mid:none;marker-end:url(#Arrow1L);" />
+</g>
</svg>
diff --git a/share/examples/replace-hue.svg b/share/examples/replace-hue.svg
index 63cb7d4a8..e88e4f00a 100644
--- a/share/examples/replace-hue.svg
+++ b/share/examples/replace-hue.svg
@@ -1,567 +1,504 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="960"
- height="320"
- version="1.1"
- id="svg2"
- sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
- sodipodi:docname="replace-hue.svg">
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1920"
- inkscape:window-height="1032"
- id="namedview107"
- showgrid="false"
- inkscape:zoom="1.8604167"
- inkscape:cx="480"
- inkscape:cy="160"
- inkscape:window-x="0"
- inkscape:window-y="25"
- inkscape:current-layer="layer1"
- inkscape:window-maximized="1" />
- <metadata
- id="metadata109">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title />
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <defs
- id="defs4">
- <g
- id="hueImage">
- <linearGradient
- id="gradient"
- gradientTransform="scale(1.0684489,1.0648874)"
- x1="0"
- y1="0"
- x2="299.49958"
- y2="0"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop8"
- stop-color="#f00"
- offset="0.000" />
- <stop
- id="stop10"
- stop-color="#ff0"
- offset="0.167" />
- <stop
- id="stop12"
- stop-color="#0f0"
- offset="0.333" />
- <stop
- id="stop14"
- stop-color="#0ff"
- offset="0.500" />
- <stop
- id="stop16"
- stop-color="#00f"
- offset="0.667" />
- <stop
- id="stop18"
- stop-color="#f0f"
- offset="0.833" />
- <stop
- id="stop20"
- stop-color="#f00"
- offset="1.000" />
- </linearGradient>
- <rect
- style="fill:url(#gradient);stroke-width:1.06666672"
- y="0"
- x="0"
- id="rect22"
- height="318.93332"
- width="320" />
- </g>
- <filter
- width="1"
- height="1"
- y="0"
- x="0"
- id="replaceHueFromLayer"
- style="color-interpolation-filters:sRGB">
- <!-- This is mainly to make sure the flood color has the desired effect. It would be better to use "real" colors and compute the hue from them instead, and if so linearRGB might actually have an advantage. -->
- <!-- Set up p, q and q-p -->
- <feColorMatrix
- id="feColorMatrix25"
- values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1"
- type="matrix"
- result="r"
- in="SourceGraphic" />
- <feColorMatrix
- id="feColorMatrix27"
- values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1"
- type="matrix"
- result="g"
- in="SourceGraphic" />
- <feColorMatrix
- id="feColorMatrix29"
- values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1"
- type="matrix"
- result="b"
- in="SourceGraphic" />
- <feBlend
- id="feBlend31"
- result="minrg"
- in2="g"
- in="r"
- mode="darken" />
- <feBlend
- id="feBlend33"
- result="p"
- in2="b"
- in="minrg"
- mode="darken" />
- <feBlend
- id="feBlend35"
- result="maxrg"
- in2="g"
- in="r"
- mode="lighten" />
- <feBlend
- id="feBlend37"
- result="q"
- in2="b"
- in="maxrg"
- mode="lighten" />
- <feComposite
- k1="0"
- id="feComposite39"
- k4="1"
- k3="1"
- k2="-1"
- operator="arithmetic"
- result="pminq"
- in2="p"
- in="q" />
- <!-- p-q+1 = 1-(q-p), with the right alpha :) -->
- <feColorMatrix
- id="feColorMatrix41"
- values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1"
- type="matrix"
- result="qminp"
- in="pminq" />
- <!-- Get hq-hp and hrgb-hp -->
- <feImage
- id="feImage43"
- result="hueImage"
- xlink:href="#hueImage" />
- <feColorMatrix
- id="feColorMatrix45"
- values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1"
- type="matrix"
- result="hrgb"
- in="hueImage" />
- <feColorMatrix
- id="feColorMatrix47"
- values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1"
- type="matrix"
- result="hr"
- in="hueImage" />
- <feColorMatrix
- id="feColorMatrix49"
- values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1"
- type="matrix"
- result="hg"
- in="hueImage" />
- <feColorMatrix
- id="feColorMatrix51"
- values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1"
- type="matrix"
- result="hb"
- in="hueImage" />
- <feBlend
- id="feBlend53"
- result="hminrg"
- in2="hg"
- in="hr"
- mode="darken" />
- <feBlend
- id="feBlend55"
- result="hp"
- in2="hb"
- in="hminrg"
- mode="darken" />
- <feBlend
- id="feBlend57"
- result="hmaxrg"
- in2="hg"
- in="hr"
- mode="lighten" />
- <feBlend
- id="feBlend59"
- result="hq"
- in2="hb"
- in="hmaxrg"
- mode="lighten" />
- <feComposite
- k1="0"
- id="feComposite61"
- k4="1"
- k3="1"
- k2="-1"
- operator="arithmetic"
- result="hpminhq"
- in2="hp"
- in="hq" />
- <!-- hp-hq+1 = 1-(hq-hp), with the right alpha :) -->
- <feColorMatrix
- id="feColorMatrix63"
- values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1"
- type="matrix"
- result="hqminhp"
- in="hpminhq" />
- <feComposite
- k1="0"
- id="feComposite65"
- k4="1"
- k3="1"
- k2="-1"
- operator="arithmetic"
- result="hpminhrgb"
- in2="hp"
- in="hrgb" />
- <!-- hp-hrgb+1 = 1-(hrgb-hp), with the right alpha :) -->
- <feColorMatrix
- id="feColorMatrix67"
- values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1"
- type="matrix"
- result="hrgbminhp"
- in="hpminhrgb" />
- <!-- Compute (hrgb-hp)/(hq-hp) -->
- <feComponentTransfer
- id="feComponentTransfer69"
- result="invhqminhp"
- in="hqminhp">
- <!-- Computes (1/10)*(1/(hq-hp)) -->
- <feFuncR
- id="feFuncR71"
- exponent="-1"
- amplitude="0.1"
- type="gamma" />
- <feFuncG
- id="feFuncG73"
- exponent="-1"
- amplitude="0.1"
- type="gamma" />
- <feFuncB
- id="feFuncB75"
- exponent="-1"
- amplitude="0.1"
- type="gamma" />
- </feComponentTransfer>
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite77"
- k1="10"
- operator="arithmetic"
- result="coefs"
- in2="invhqminhp"
- in="hrgbminhp" />
- <!-- 10*(hrgb-hp)*(1/10)*(1/(hq-hp)) = (hrgb-hp)/(hq-hp) -->
- <!-- The following uses "iterative" refinement (or at least something similar) to improve the result, but it cannot cope (well) with negative residuals. -->
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite79"
- k1="1"
- operator="arithmetic"
- result="hrgbminhpestimate"
- in2="hqminhp"
- in="coefs" />
- <!-- (hrgb-hp)/(hq-hp)*(hq-hp) = (hrgb-hp) -->
- <feComposite
- k1="0"
- id="feComposite81"
- k4="1"
- k3="1"
- k2="-1"
- operator="arithmetic"
- result="hrgbminhpresidual"
- in2="hrgbminhpestimate"
- in="hrgbminhp" />
- <feColorMatrix
- id="feColorMatrix83"
- values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1"
- type="matrix"
- result="hrgbminhpresidual"
- in="hrgbminhpresidual" />
- <feComponentTransfer
- id="feComponentTransfer85"
- result="invhqminhp"
- in="hqminhp">
- <!-- Computes (1/100)*(1/(hq-hp)) -->
- <feFuncR
- id="feFuncR87"
- exponent="-1"
- amplitude="0.01"
- type="gamma" />
- <feFuncG
- id="feFuncG89"
- exponent="-1"
- amplitude="0.01"
- type="gamma" />
- <feFuncB
- id="feFuncB91"
- exponent="-1"
- amplitude="0.01"
- type="gamma" />
- </feComponentTransfer>
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite93"
- k1="100"
- operator="arithmetic"
- result="coefscorrection"
- in2="invhqminhp"
- in="hrgbminhpresidual" />
- <!-- 100*(hrgb-hp)*(1/100)*(1/(hq-hp)) = (hrgb-hp)/(hq-hp) -->
- <feComposite
- k4="0"
- k1="0"
- id="feComposite95"
- k3="1"
- k2="1"
- operator="arithmetic"
- result="coefs"
- in2="coefscorrection"
- in="coefs" />
- <!-- Combine p and q -->
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite97"
- k1="1"
- operator="arithmetic"
- result="qminpc"
- in2="coefs"
- in="qminp" />
- <feComposite
- k4="0"
- k1="0"
- id="feComposite99"
- k3="1"
- k2="1"
- operator="arithmetic"
- result="color"
- in2="qminpc"
- in="p" />
- <!-- This has a slight chance of failing, as alpha gets larger than 1 internally, but it really shouldn't be a problem as the specification clearly says that it operates in premultiplied mode AND the results are clamped to [0,1]. -->
- <!-- Reconstruct original alpha channel -->
- <feColorMatrix
- id="feColorMatrix101"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- type="matrix"
- result="alpha"
- in="SourceGraphic" />
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite103"
- k1="1"
- operator="arithmetic"
- in2="alpha"
- in="color" />
- </filter>
- <filter
- width="1"
- height="1"
- y="0"
- x="0"
- id="replaceHue"
- style="color-interpolation-filters:sRGB">
- <!-- This is mainly to make sure the flood color has the desired effect. It would be better to use "real" colors and compute the hue from them instead, and if so linearRGB might actually have an advantage. -->
- <!-- Set up p, q and q-p -->
- <feColorMatrix
- id="feColorMatrix7"
- values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 "
- type="matrix"
- result="r"
- in="SourceGraphic" />
- <feColorMatrix
- id="feColorMatrix9"
- values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 "
- type="matrix"
- result="g"
- in="SourceGraphic" />
- <feColorMatrix
- id="feColorMatrix11"
- values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 "
- type="matrix"
- result="b"
- in="SourceGraphic" />
- <feBlend
- id="feBlend13"
- result="minrg"
- in2="g"
- in="r"
- mode="darken" />
- <feBlend
- id="feBlend15"
- result="p"
- in2="b"
- in="minrg"
- mode="darken" />
- <feBlend
- id="feBlend17"
- result="maxrg"
- in2="g"
- in="r"
- mode="lighten" />
- <feBlend
- id="feBlend19"
- result="q"
- in2="b"
- in="maxrg"
- mode="lighten" />
- <feComponentTransfer
- id="feComponentTransfer21"
- result="q2"
- in="q">
- <!-- q without the red channel -->
- <feFuncR
- id="feFuncR23"
- slope="0"
- type="linear" />
- </feComponentTransfer>
- <feBlend
- id="feBlend25"
- result="pq"
- in2="q2"
- in="p"
- mode="lighten" />
- <!-- p in the red channel and q in the rest -->
- <feColorMatrix
- id="feColorMatrix30906"
- values="-1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 0 0 0 1 "
- type="matrix"
- result="qminp"
- in="pq" />
- <!-- Set up coefs -->
- <!-- This is what determines the "target" hue. In the ideal case this would use feImage to get the image data from some other object and compute the hue from that. -->
- <feFlood
- id="feFlood29"
- result="hk"
- flood-opacity="1"
- flood-color="rgb(80%,80%,80%)" />
- <!-- This could also use an arbitrary image whose hue has been determined. -->
- <feComponentTransfer
- id="feComponentTransfer31"
- result="coefsq"
- in="hk">
- <feFuncR
- id="feFuncR33"
- tableValues="1 1 0 0 0 1 1"
- type="table" />
- <feFuncG
- id="feFuncG35"
- tableValues="0 1 1 1 0 0 0"
- type="table" />
- <feFuncB
- id="feFuncB37"
- tableValues="0 0 0 1 1 1 0"
- type="table" />
- </feComponentTransfer>
- <!-- Combine p and q -->
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite30913"
- k1="1"
- operator="arithmetic"
- result="qminpc"
- in2="coefsq"
- in="qminp" />
- <feComposite
- k4="0"
- k1="0"
- id="feComposite41"
- k3="1"
- k2="1"
- operator="arithmetic"
- result="color"
- in2="qminpc"
- in="p" />
- <!-- This has a slight chance of failing, as alpha gets larger than 1 internally, but it really shouldn't be a problem as the specification clearly says that it operates in premultiplied mode AND the results are clamped to [0,1]. -->
- <!-- Reconstruct original alpha channel -->
- <feColorMatrix
- id="feColorMatrix43"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 "
- type="matrix"
- result="alpha"
- in="SourceGraphic" />
- <feComposite
- k4="0"
- k3="0"
- k2="0"
- id="feComposite45"
- k1="1"
- operator="arithmetic"
- in2="alpha"
- in="color" />
- </filter>
- </defs>
- <g
- id="layer1"
- inkscape:groupmode="layer"
- inkscape:label="Layer 1">
- <image
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAAAAXNSR0IArs4c6QAAAv1QTFRFCAIG BwQTAgcFGAUMHQUNFgcZEAgkPwMWPAQjMAokVAIOLg0TIQ8wJg8iKw8bXwQHRQ4OIBcmJRcadAER fAIHdQQibwgwNx4PaxACNyEsVBknNyMjNSI6Ths2RyEzPCNMSiQqbxoljxIiNS00NitNWyUhNDAp XCcRNDFDYysEjBsyRy87RTEwQTBIOTgaVDAiTDYZSzYnjiBEgSpEqSA4YToPUDtPTTtcVkEPWD0+ SUBQUD9HUEE9SEkRczdGXz1QjTQkiTQ4O1ASRkViaD9Efzs6eUAbYkU3fkIEVko3fEAvSU1Wd0I8 qjYfdEoEpTVGSVQrTlBHqTg1bEsvb08EaFIEqTk/WE5eX1EvaExMX05VS1wHXFgEX1BLeVAkb1FD TV8eb1YbZFZDblcpXV0jglNYfldaemAUs0lVrE1CdVxVc1xdgFdrYWFrbGBWamBdW2VajF4VbF1+ nFoRnFJhe15PgGQFq1BTcmJPa2ZPdGsFcmoZmls4lVpSdWJumVxIZ3AZdWhEW2mHjGBUl2YBimNH kGkAkGU3ZHBMiG0Ag2o3c281aHMzfXMAk2NnWXKKjWZoim4kXnN9gWtrhGtkiWtccHB5e29kf29c a3Rqd3JbeXBstHECuG0frnIgrnYAumlrpnwAjoEapHogmX4dr3RDZ4KXgYcdnndyiH19hH91lYYA j3x1iH9toIMAiYoBiYBmk31vln1oeIV4qH07hICIhYdAsndgeYSIm4I6fYSAmIJKr3hxqH5Mo3qH kYZdhIeftooFroJxsoJmp4ZkroaAo4x+iJKWi5KOjJOFuY41nJB3oY2GlI+ZmpB+p413mo+Pl5GH tJcOrpY2x5oTxZOCxZZ5u5eRs5qRrJulnKCwuZyGvpx5r56WmKSirqCOqKGWrqGHpqGgwp9oo6Ko xaFbyawjs6qBqa+fy6uFxKqkv6uwuq+dubGVsLG8uLGms7Kzz7RYq7az3bNg2bdzxMC4vcPJvMW7 zcWs08iayc+vzNTY0dbN4+jh7u3OwPYOzwAAAAlwSFlzAAAN1wAADdcBQiibeAAAIABJREFUeNpM /Atc0nf7Bo5/rFxPB81DrcdDamk9LjXXyUKx1tI505+uZSlOxjLTkgH5LJV0WuahqbkOKJD8f2se nhL84CNMkszmPIQaZy3ToQFqZQbCU6GurNfv/tC+r9f/jSCSk8vruu7rvm+KIeNqEYORz2IxmhV6 o2VhwWKZs8B5Ma4bf2kxm/unxrncl+ZJs3kErrPwyJtZ85x57sWI+Y0hmSySy+W9cnkffPpDLldZ 74nkvXB/RK4ymfVjOsu7hXfvFhYWTl376adT1347dSoq+ODC2xmzxcwViUXmcZXaPDVlNpsm6aTR 6O0H5k37tu8LP4C8MFtMFpNpbm7OYgA479/NzcOnuXmvwBVut2+3JXI4IpWc+Sdg+h4wWebgWWZn LbNm87hljtsr7gNQAATDNgnX3l75n6pe7CuVfN6gGxvTmh4tYOeNwdH7lPWE+B5cWJiZm60Ui3tF ZrP5pdmsejkz0pcfody+fb1leF94+L4DiMU0Pwdgv79s1AJP85fhK4wti3R00SK3BJxZns/kMswm +O/zZ2fNM4BsZHZ29u3szIx5bo4rkovlvflqmQoOgFHJJ+Uf+JtUvTAaH2nHjGOmhQ/HJfjUQUAW FbUpyjI3DjqIe3t7MebNMyOiKfNkH084t1xp2nNgPSl8DcBCWdPzJhQ1AZaFefS5aRpUNC/4+69Y sXXrT3jc47lxMYAyj+dbZswLptk5YMo8MgeCgpbjcjFQteeAqysR5UjUGHVwJv+YVKmmTcN6A7Bl 0r77GxePRvP22RQVFbXw9q1ZMDsn/0P0cnbOPAMqiGbk8n6z6eXMowMnT57cvg+xvMjfO22xpMpA QtPctOb93DRoOj/n4rcMWbsWF98RlMzMn8Rw5Ztn5kwvZmdfTGLEj5tfmKwKmNQL0eHLo/dEu7q2 jkzKR0b+HBkBk5kMJpPMaDRrp416cOz8guV7icJ7ZcCpkIPB8rn8l1TaJOZIMAQoMCs3M2Xwo8yz c3uWZmfvw2B5eIC59sruYb+9xTA9bzFNWSzzhwoObSTgCzik+A6metyks5i+H7PMQRUAWRZAk6/G GBx/qRuRczn5QezwAxuj2z/A+nNc3ms2TZumAdnY2LTRdHlh4cX8C5NMzfe2dfH1poxwzWQuXiQS ExPV85bZl7MzZp2ZgckJKC3r14eHI3M6y4sxsL3BBKDmxsD/ZhOoOL+VzfDy2lqQSKIWMI3mF2bd u4X3KhAaPAUkmV6aLVMYhZOTOo56XC7nMsGD7yaBJtWkfLxXbjCatGMGk2FaqzPpQIgXUEgynuIg jnvKjmqZm+0Xc0Si3kicF51sxhw7NzmHlfnMzOzI5NjyQOQF+M8yNjJtmje9mQP5NPCzxk2mN2Gq Nk5ygr+Ykgg/1Gx+MbKx/R3HAPcwtsCoJoBqHp95aTLrTBj9Ivgjs2lEDmSBNhqL6Z7RYBoDdIYR k9EASkD08KQUP5Tjhps17xWJoRDbQvzCKgVmcCvAUVlemOWiP2dnekUiGTJrScx/Y7LQ3hwHKkwm BVem9zCNqcbH1W3MrU6Im12QPkxn6J0c2XhWB2hGmCNv3717hxGFWX8SaMNAvRjnYA+9fDH9fuTP SRG4YmzMZDJrDYbpKZ3BaDZClcOvwqO5NP+2TG0eF4n3Tprl4nQiQc+YgdqflcuB/xkwvkjHZKpk iGXOpJufs3z/fo8FkzKMk8+YMo/oRGP573RG1goHVy8vQhghzItF6lIDIbrjpD3ReXlz5pcW0+Sk HIOGPSFmuhfz76cfDTXAoyrDI5NBrx8DUFqTwaCbNhl+t5bjHjdHCcGO95IhEjHNk2LxGb9kvUTU 1/vHS4jjkclZM0Bi9FPUXMRkuizTWyzoex7klUmWH0aeIu+Vz06q8lHdyLiay98YSEonEUgEOuGM fzJHdTw67Gxr1wtrK7DIQc8pwDUy/f69RtnVrRnt6hrp7TMZJGNG2TOjVm98AwAN4DKLakQ2ZmYm BrFdVjJQpki8ggM6kogkgeyPP8QiCZMi16nmzHImN98sAlgWCEuZ2fL9m3UghUqn0zEYiUBlvipx hCsScds4+fkRuPSIZEJmIJGQToiIjgaydBApL02TOrVp7uXI/DtLl/Uou7o0PV26d+9+/2NMN67V amWyYaPMgOWEdjifwENN+Y52NP8wQlsbk+IP0JggQ5VOTolX7R1hithzM7NmlY4z83Jch4z/xmGi IN+wTK/jTXK5vPx8hlqm5jDzVSqZiseVq5h7IyLCgK0ILwKBEEiKjj4brX0DPoMkfPTm/fTDrr9P 95CmS9OuzKcRGDKZ9pFBpx02gIbge/3wsAxFeSjB8rMdy3ZZYjzzsWgvQGMSyGTlyGQfU+jxUi5W j0NJzpqm5lQyGcITtfH6RWqdTitr2K6BtvrirWlSpW7j+KlR6Ci6cRUPF0EKI0QTvQgkEinwQDjp QHhyWISHq+zRvYfdo92gXU9X12jrkGbo+ehzjYacni8xyUzDOgO4Hq3UToPltQo1H2XzOGqT5cXl ZX7xOC83PKVXnk8ikfuhUER71829zdeZvv9eh15mK4VCJdIH8aECk2J9/t27t5gzLS9UIi63jWuZ EsGfMjltvF5mWCBpIzUwgeQKIh44EBYBZgvrxigahdvW7i7NQ/3DIeUzzdBQ4t69MiWW8VNgKhZ5 WGfUGoZlMpSDoijbYpkdXxni7+VPpLr4exHpBKJKPju3MAcMcdUoA76btXdcP2UCWH0q+fjIO+tZ wKBZLDpVW1ubSmSZ402qJsf7IcE4bfnEMDouIjAien30geiIiGQSKbqrW/mwa7T7YZdm6JlG3zU0 JHymeTj0MYEg0QieP3+uGR3SogKjXqscHpNxebw2PoOXbjKJ1BocHu9/ZisO55/OolGYI2qubvz7 Eex7VEYeiho1HgZEN6WbhLy2YrKeWcuCZZzb1y/mQR6oVKI+eS94jcflwGEyww78C+giJBOScaSu ntHRrqGHGrDUkOs6JUg4r3mo2YxLl2ofASz4s+fNEsNYpU4i06EslMtmMzgmE5drMuIDcX7cvbOz Y1SSHy5MKBgfl1kYPA6NIyAzpt7d85AhMAVA613Z+2fvDIZrlgvDgRm4ahOJFuZ03BG5B5un6u1V q/qYUJbXKG2gYTQughBNInWNDvWMdg8FhhlHn/81r3n+/NHCfFfhvj0Epc7wfOj586HuLmGDUa+T STlqXj6Lzc5ncSqnDfnqKYPRy58nIKsN6bhkLdoAdTtiSb3XfpzB4KE8I4QxYraewEA7dxh/xs3j XOhrIq6qjSsHEc19KnWiVzR4TzQ+rlOpuOPj48BZfr9anY9zHR3VvHukefjXe0D0YgE065r9a6j1 9HYvvRHYGn0+2lPFv2wYU2slCh6DxWLT2exKvsqSz50Du/F0KlQx73V5bmFENj4+qbJ0PWwPT6Wg HJ7W8mYeMc/CSGxaHrbRdd2hQnV/n1rFG5f3YVOdfGEBxpdJk6lwalymGlfpVH35fTA5qHk8HkBT vxl6rnkHFlrnCrBkJqXm4bCRoXyU13BaKzM9x1QcvcsQzGuhxiUqLicxnUVdYPPZJpNlzKDL56Iy rXYenPPWPCnTjastyocP70VDuLGeGU3zSLyH+5xpyivMdSPuwFmJWrRuXKeTySBWtTDNy2Qqy/j7 PJ1Z9VglV/dNjc/N6VTwOMSGCp1+bvwrBJ69ah24e364UDOtVBmHz+ad/lmiHpp4Pjr0fOIuQTIP OaFVQ2yxyCjPMsbOJ+t0MLGYVahOppkHVG/N8Ixj4xDJD9u7olMFldBz5hEc0dbGzjEwLMzBNXqP QqKWQh1LNFr4XpO1MH8//g/Nixls5MNWATXWmqew9vf+Uevzh/NE4MRVDz0n39Qw3d7113DDz+0a o3FfNCYi0NXQI9HLZAoFaEgmkwXoO3LDm7cLC2/BH6hKbbRghWaeHIcxBGC1d3XdK6ziKQ0LAMuV bvuRj21VJonerJVAy4dRRG9A3y9MRx8vzMsrzNueLB2bxbr0jNWFlvdw5rsgFlpHR58njz58vnT9 o6Fu489YUDwHn/2cnZ19goBZHtPx8ryWIZXxQBsyA0X5XIjGtzAzwww/KRNNG7G0nH1p0pnGFtox WMquPWrGizEFwiJX7qL47N+oBThGrFcYTXCjiy4sPJuXd5qwNPoAnZMP6fx/iN5Pt997mN36EFL0 oeY5UaN5aNTCb9n189C8xrANBsufw0+fzl4TNjphxTWkRyFK1fm0xHw+j9FcCTDegnILMMCPq+et Af5uwTwybvr9XjvWwe51cbnDJhMCw1r8Vd+rGzVjWr1Bi4GbNgJlhYV7PaApey2LDqeDxXmPrJB+ Pd1+796v2GltHeoeGtLMNwy1apTK9vbC6I8/Tl2/b1teeHver2uyY/dOTDzvBlgTz3tQLspgcVgM AZ/HFzAAkhXXwuwk14RiqN5h7pqXye69a9jD43JZTOAFgS6Rz6yuZuu1oB2MIoZpyzxMu3lnvQIL w/ME0qroZA6Hx2tQdq+Znn4BmLIB1L3sIw1YPxyS9ABtmqGuVevz9u2Lzmu919r+656PPz59env0 6NCPd1t7wGSolM/jUFEeG0Tksz6ICB1udnbEyHj3ga45mUmlqlS/E6QTvfaqdVotYjAMEwQKLYAy GfXgd6nWaGmAUMjTG41n86ILwzeSyCwGD/rexlXT2b8++rU9+2Rsd/dnlx/C6AAGu/twaKirK/ps XldeQytX2J137/Tx5cdPxu59PtTa3d3dCpVKxlCBs1jsqqp0FBsHMdcDNotOhvWVt28tIzoug4++ XeBxyCwiwUuCSI06iQnUgxHXIIMJSSAVSKXTpp9b86rA8NFVYQciyBwup721deOq9Seztx/oIPW0 NnQfkUIzHOp+CCE62v6wu7tnT3FV1543hZe7Tp/O2/7zvtPbRycm/hne+gUUZCUjv5nOZ/HZzc0s NsOKCmNsBoRUqbB7b2ffvuDxYfTh/s5CeWQOYwyRmsag/GCO1BplMIvoFBB+MoMxr7hQX3j2gIfb 8fUkBoeBwYo+EN5cVdyq/+tZV/vZPKNmCOw+hF2G2oe6vUKqen7+XqmU/H46+9f1p09k7wsbHe0+ dPcL8JeQxeLzeDDXcBgstBLcNWtFNmOxvJ3E6Hq7MPsW7MtV8xhkHj8fDZPpkB4jLCYwbxu0KBkc r4PRzaCzWH7O83CR5eX54y+7htHgV2jt6j5wdpVr19ni0fVdzw3D995ruiSjz2HI0jh49bS26gWZ VTIduaq99fSvHxO2Q0iA6Sf+0/MtwFImMjg86NOVoBM7n22xEoSRBjmhUr2bfWuZTGfw1GqUw81H 0csMnn4Y2as2mXRGo0HH57MN0zqtYcw0NmwxFRauC1FHF+LwDFccVkZd3a2tZ6NdlVUajWb6r0dd zmHKoaHWUVdQsuev9vZ/HDeil6tcU6Xt7d9nb4/es+1k9rYDEKdQjHoJ0MTitKlZPBaAY7MqP2Ay z7w1g+1lU8BcJTwD1qYZvHwU7hoMiN4EQAwGaFQyiRaLrBfTU/AptdDPQ3egmNR8eWMgjc3BLH9A mPeXpvuvv9qr8gp79h0fxZgKg7kvVdfenddxXFBVdXxdV0/ex9tPbwxfk33iBJj++USDQKJkkel0 qocdh8GuquSw6WdUGFFzsNi/nZ01j6jeLXDYHBaUKYsHUxlQxpp+AQGh15lAQ+AMVnMtLPpgfonk eLR2ihEdvSc6kBGRT+Zwurqjo12X7hUeL+wZlbZ2tf/zeHv3w26Nx9DDh3vCurq7j0crW2GIUXd3 LU8vdMjcvCY7++PwHkazEn5hdiW9mrxsGa+aw2LhaJns6oXZ2bldUx75l2HXnOTxGBwgkiUAq/PY HBgheEYLBIReN6bVzWMvcpnG7kF/N02bVIafMxdvwnu8KQybGTHTqCxOV1dxcSFboyzMG1UaC7u6 ndtbu9vBNqOjD4svQ5OVhiu7lA1dDdM/LieHbydvwzoQqlAqLYb5YnI68IVbxkqvZtHs3diVLPXs 3GzYCnuPaGeJ2dxH5sAgxmBU81gM8B/K5nAMC4hB1qwja8H1gA3kNMHyD3uA7nK0A8n1wLvM+Hyz mcbicJStrYVnowsbWruqCqM3Ll23vqtrqOvhs7Duoe6NG9tbR//6q+ueMo9xOXp4+d7w7Njsj9cX ohyFab543liMEsiV5OqPT2///R5jmRu/mk1+Oze7i04naMZmZ+YY/HRgkQoXDsrj8Bh8BsPwDjFp eVqO1ITFlkEvs0xZX6N8YRkXexSymXPBPOacmUFjMBpaW/NawwsvR693Di8OP3JgjeY/XcohTSJ0 oHnDo+6H8z+nkgqdCwvzTmbvy84+TUKlw2NzhvCx4nlD2c+Z6fTM5FT2xuXrw7f/3sBoYFfOWtaR aXSDgfOYyeHwq6vTM8ksNsrnwQfgMr5DDDqJjqNO1RqgOep0pjnoydMW3f7zl87v11+L5zDjmTNm shq9111YRVoVvmfPZ9mb8yA0t3MeQhGO/tX1cKhLOdpVdXzfvjBSduzZBuPPeZcZEqVRqx3WdkUD W4aey4TkdCKEFqMqPTN66fLft58+PbKw3JWQatR7sKCFcIAkVjqZCuYSpKNgMx3GlsLI4zOU0A11 BtmYac5k6r10/vzVS5cuXWUyr3Gioh7PTL5hCbpbwz9btS+vWKjMG73X3v0Zd0hzb7Th+dBDkLGn cL3zvuxwmEwKC0+gVajROGw0uE4rusL1xW8M+p+JVCLRnliJklMZKJt1ObXrr+kdG1aFpUuG6Xwq g4xy2Cj4JJ2B0hjNLFSBiQh9B4ZHPTQg2ZhWAdUov7H/0tWrGKxL8RQKk3IwfiR/QSXo7j4bLjU+ Kyzsafirq7ArGn1ouDfaPTo01I2ti3l5rT2FDcfJDeG/GO9pDbKNRjTVYGyIvjc6bTCi5HQq0Y6c Cg5jp6MQUNOG4a93bFhKMGioMH9DG2SR+WReOoOTz2Nx0lm8d5iIijHtlE4Cs9aYSa3V3Tj/76uX rvoAX+fPR50HWIAtSK5Cu7vzihv+etZd2Jr5l0Cg2RPdPa8ZwqYb7KWHruLCvYV5hc7GidFRHZqq p6cb0cwx08frT//aNX0azq8hdmBQxnFGZT6vsnJ++tGRIztWL5+eJlfSCZDW1WSsMUFLZ1HZHD4H gzUlgRqUSfWy4bEx1aUb54El8XnPqzcuXaLsj4LNMD4qKn5uBsXmAZnxmQAtFuoLM7UN7Q/nQT/M WkPtXdn79lXtezKqeaQVTqBnUg10kqEhfcyAMkgO2du3n3Z2/ifDg0cmo6mMKjKjErrJo9NHYr9e s2F1HpppdRVK5LFZrGoOn3qGTeKQ3yFTWoUMfAXO0usuXcWYuuQZf+nG/huXrp7fv59JoZyKioqa MaPdXWcPSJVd+ujiQmkVWD66ax5WV/B91x7Svm2fva78uapStu4/dycUrMsGOl0Lq8JyEoPBFgg1 Sr1G47YsNX2Ns/P6VNj5GfPT7dnbTpzIPnkim0zmkKlUKi9ZUclKrwRoHA6dBbBgftAaGXq1TnQD czqc8/t9boCKAOs8pe381f3B8ZSXI8x/V0Wvz3wmLS4U3jNWtv/VPg8D/dDzsJPZ2a2a109cw6TK lp4ej4mJ/2nJbKlAoB9WOKxJZVxmSfUSveTevewdm48c2bBh9SpyKko2WNpPbF5z4uRJgMZKp+ZD cyOhGFnNrGohg8rikRGtdkwhWKdmQCJgkC5hyUC7dGn/JUB56dqNqzfAYlEq8Y3zN/YzjQ2Cwqqz XcPk4+8bJAJNXnb29z++enWA9PpJyxfSwZaeFumTiR4tv1mrl4wZHT52dkbRSg0q0T/SK09sOBK7 YYPzBuc1DCHDMH869siaEwDqxIk8KIdkMBiPnp6cST+D9XI4yLBCxldsAm4A1t+X85xLl3wu3bjB vMFlwqercP3zhvVcFhRmotGFe8L2HdFLZPt++B/h1etXecWv//ckT/qkZRT21ScTMK7JwK4O69eD aIIwaUOXViMZ3nAi9siJDV+vBr4qLxtMJ07scMg2Zp8EHdMJLCoZQLEIDA6HQyNT6dAZEa1CKv4D EwyDxTx/6d/nL+33AdufvxR+No9wCUizAvrjBtTAeUa089Ll4Z99VtiwBx0Tvn71WvL61avRqtcT T85qntwXtt6JPjAhUUqGtWNLw9asWbPP2dlVIhNItMPK7A2xmzfv2LBj9WrQ0Qiwjqx6OG+l6ySZ TWbxOZVsMpkKy2QlDdIVRXQ3QCaIzkvWpLpxFQvSq5iCywSp0Xv+uHrj7wMPXVpPyvtMU+gcCPvk 8UqNYPTV/ypfv35V/NerVy0Typboyn/WFR/4TKEfE+CWOzs7r3Fes8N5DexFAFOzY/OG5R9v2Lzh 6x2bVzsf0ZwGPDtOHGnPPpF9JDWZSiUto4N0ZGoylc5iVLHZCOYmiE/4uIG5CeMJAMB91x9/bD8L lsJoumG9nGcfp2k5hQeURkZDVcOYZOjV6+OvXr16P/rkyd3wNQcORG+O7im+i+LpvOXteXnt7e3r Y3fESoYlyl/bT//e/uvq5YbVRzYcAeevyv7A08nY1RuANyohEueWmJxeTSUT6VR6PoQ+AvTAMwMo jCfM2Bg1GH8ehdln83h/3OjFYJ4HoOcvCU0yCY8dTheQJev2GISvX79+D0y9evXkifMXP27+7EIh W9/Sg/qtCsOYArrWwNR14t6jn9c7rwb2dmz49ciGk9mxJ2I3A65tGLAjq1dnnzySRyCFeRAjSJD3 HDaVlslqJiPwpH+KMVtfspL0f5JdveFxNu/sjwLZyz/OY/a6dOPPP8WoKl+tZR2oaqarBV2Sqiev n7x69fr1kycT938U6vXRPRp2T3EzzyE2NjZML5NopBis7Ngq5WWlTK98GLv6xIbYDZBWJzcAX9uc oQX8fvp3wJZNIHgsJdLIfHo6h0iDnKdykPPnz4uxOryEQbmB2eoGRtql8x4//ni2VapAH4PfH/f2 6/rVaplOpUtlr/9LrxaEpaJVwNZrYGri9fOWH1CB/m5PT0Mz7BBL9yxfdVyr1wj19+7d+70duzHA QHjvyIbVJ4Gt7F9BxjWbs52dP16z2nn1kfZH2dnkdA6BRCezqDgykcAh01jIfqvTb3ywEIYHLtB5 zt/wPNB6Nk893vvnDADSqdX9PL5aN6Ue1wneKHiZDJ5A0P3qyavXTyYaLj9v+UUo7GnIJLvQL/Tw nJevco5WyhSXhUJZs1SpVwqllXplVTh46eTJI1i4bz65Y/kJ5/UaiQTV9szfyz59HOUyyenE9GTW GRqxmpbOQhAbLEUxkm6Ib/xt7RuQ7UwK888ZsxooUisAlLpf6yftV6m1at34iBq6/OVUafer112w dQmkz1s2KgWMfx1KPlRWnO78T/BRtFIqEFYp7ul+16JKIUkiBAgN/zwJgh3J/hW42rH8pIPrM1TS oNeM/PrridMMAYebTCYySOQzBHoYjYE4LEZ8IN+tFfeh6M6L+9U6QKBSqxXAk07dBsNHm4hLkMBX MvhaPT6u3qdRyiZev9478erJz5eftezcmkA/dmDztm2bN4PXAZYQFSq1VYwG59gq4T2lRNsgUKKX nU9kb/750fbT7audV51c7aqUSNQCWClPb7+MvZ5LpaefoRPPEGlEMhHxWuG0yPb8h8HhRm8fJphK rWjTqrX9QE0/n8tsY2IvMvM4OEkb7JhAF7A3rtMZBBOvXqdOTDz5nvHsPxcKir8twwOobVZUznuE UikqaUahHDcrBWxllVIoZKTuyT6yYU+VVKrnrF7lHLvnkVI51rAnPLqSISNQOWQ+h0zEleOpeACI rN26AkEQW6z33bjkuXcKQzUGoqmn1P0iZhu30DmEI277DebaRAWHp1Zp1ePAoPVVzK4nr6tGJyYa jJqWljJCkN+y5XCcV0MYrAmXCnjSe1WrsFDd0CBsqFRKhJJ09okjDoxh7TB6b82q5dl7xhouZ95j CAQyLZrOSSUT0yNwhGOZRCqVQEQckEhkCeK22Aea4iWxJ4Ib0+nGMVgqNY/LjKfwRap+zGF79+gF WqOWwcb+ukonn/zzT1HXkwk2RGnLnTupzI884r8gYaiguiClNjIksstrVmHErVkTqxQK0Kr1aGbm 8hP/ZGi0yuFKZ+fwNQTZcQYKY56+QYJWn0lNp6an03EJ6XQWu5qFqNUuTvbIiq1uUJOU8/u32i4h 6DD/qNXgKCZcTlGYXM54IKrXaGGE1Wt5f17i0uQKjoI38WRiXnP/CUHsuXKl1zpvFxfn2M3Q+QDK 9j1oZkNs7Nf7nD+EqlKi1Gw7smNb7I4Nqdrh4WHnzfvC2PmZEtQoY3zPMOrJZBqeSCdSyYQyOoEA 8xfydtbCXLx4hX+ym9NHl86vxOPcEFtgCnTCcPF4vH41h/k94ZlWoVEOS7RGnY7npWJq+B1cdHTi 7sTltviV7ntbDhG24j091mzbvM0Ka/l6AnnVx7GxH6L+4zWx97okR3YcOblj9bYwiVb5u3P08qW8 vYwGXCYqYcge6QiJdAI1ksxJJxLIBCKNRkNmFxYW5rwW46mR/ms/2uWI88fh19rgdFjNqblclUqN 9qfjpTKjvkqrUUoM+rF5PS5M3dGRqeJP9OSfX+no6ecV4u2SGImz8whfv2b9ZmuTXpW6ahVu1eYj JzcDLOc1H+/DBvrt27fv+XjNo4ZHEqlGtmZ4nZZwKIwhE6CaVAKRcJxAOkPg0AkQXmQ2HeHMzVgW FtSBOFo1zs3JHWeH98dHOi4m6MatSqpVYTQ+TaCVSmCyHgMRpQIJX9pM4hMkrPiVKz0Ptfh5+eM9 3ZMPkTqqipev+mCn9ZWrnFctX7UndjOw9fHHAK1KWFWJCvnCZqmwgJ2XffrIEeiN0MmzY+Fe7JGT sUf24DKJDHJqJCEznUpG+pn5phcLbxcIZAaJisMT8JFutEg8fvExCkJzAAAgAElEQVTiRB6NRqUx kiOesSRCQQeq11cq2Jk8CSoF40uF95555F/xD/RtcU+IiHAndrF7YFv8bDPk1mbnsOOACjhL/Ocq q4ZwZaMKvUBRJb0nUSoLTgKi2JOxsScAElxO7jjyNXzFTk9lsziREVR6JBFh8nmJjLlZ0JJMiCAS qfjIyMgILzx+K0JN1yuf6ZWZ0ma9XlAoUepQxQqtEtVrtbCTPNMYcXeD7fEB39oWeK3wCkQKhMpo V8xan62qOv5P59UYHOhC2CfAlcnmC5olWgVDoIcB7G+KYr+GKQdgfX3ESheBUElIJxBJDLwbGRkh 99PaKObZuZmFESqNSPAmEomR9tRIIt6p6ll15TNNcyYPFWoipOwqusdevURRqddqtGNjGuHe4ig8 zveK7aeIA26xDYIstd+Yt23bhlWMj61zDeap/zsEIdrQrJAppdoqo2ZYmA1kHbGiAh3hFnDBSSeQ E6npgbhkQjUZ+b6ZmajmLLx993Z2do4WQiCEJBNxkZsicfjkQimPU6UnsQSXG4SBlUtxUzqODjUY jI+M/HVBtMSVdiu9Ix2vZHwZY+tlu8hlyRK3FeiqNasyV1nLb/2a1VZc2FXwDOVkCirZzc2ZUqGw oSrbCgOYOgnXEyf/JowEuAgsAp1OJRIQESrKj6fNYa9JL5jNkzgcMZlIOOONw7sRMzU8dnNVsxRF ZcOHpDhSqkrOUejJHkRKiJ2Hi4ud0zJbu+SWCxkZy2ydkE1OK5YsZfxzFRvm5c0bQDgrOOtNs0Ao gxkNrYTxkU8SKKtOYpCsULBzIvbrr3fAXQIOZhvyXtiAmhMRHvexnMOcs74mvTA7O9OLs/dPTj6Y EBmCL1QqaJkyCSqBBhnBT7b/B423LCjEHW8PkJY5+h20t3dZtszRYy2ChBxc5LQCsfXaGLEUe7rN R6wxah3n16zpqBKmK6ua+QKpIFPKFwrZ6bHYN30NAoKlrBpa2UsNYeCo6cQQIv4ADaHJ56wv3ltf wLdSluhPI25KxuMPpmoUCpJWgo49yw+xC9nkgrA3uhE4HiEu9i5Ojo6Aycne0c7Jzsnbzc7e2w1Z ZOv9r/Ue8BQbNq/5/zvhGB6IlUo2n13dzNbypM3bMKaysSrEjA+4dmCfoxOJBCqZSqSGuKQjIy8+ YAJA716quJUy8zpi8iY3fzwRL5QI9FryUv9mDx7Oa+USO/+DibhEew//EEcA5uXitNI/xH6lk53f SlubJTZO3o52fku2EVydV61atTn2623btleGhWOJVQ0TIyog8arpPzWz6TBZVEJb2nESQ7LjyJHN Vi0xEfflh9FoibT0ZDqRiMz9/nLmxczbmXFVKqmqsKpYx4zEEd3cbPyIOLKfC+7MErslfrYRXl4u 9v7L/D3s7Vzcndzc7J2cltjZOa60s19pix2YQRAbWxec68d7cf9ctXyJ6oAgLL2ax853dj4kUDSn VzVXS9BmOptdoOgQNLMxu38da3X6jg1rTmDBBTGWXUngkKjkRAIbYOmw1+xTM6uqqgq7CruLi41u /v54HIeJx/u7ONp6uzg6uS1Z5uLm7ebiZucGLHpZxbOzt1sG+tk5bvK2tYVwgBsbpPzZpkAGdVW0 tDJMquCwFXwWZ01EoQAlS9IJDWx2cyadRacLq4TszR/kA642bN585MQRsPzXX8eeJLFYlQwY5TkE GkJKZXcLq4qLLxRbTw9UA49FY5DT/fD+NlH2tnZudnZOTnb2TsscHe3c7Je5rXBzdLR1tANYANDW ztbdxmaZLeJoiySsWAz47Kj6Q1R2s4BPpVVz+Aw+n82RCGRStl7IJyUTIujNLKnwQwVisFZtsAYr UHfiSGx1KpnHYHMi8pkcpLCQhKHRY5gy01MFAhY7k1AtVXOT7Yk2Nt5RAMnxg7Xt7ezsXNzsXdwd 7UNwiX7geUcMGwUBumzA8EgmpiXOjdPMIxKquXw2n1/JR8mBUr7Gi0QiaAUCakREoFIgFIDFd8RC JcZuW+VgkEwfb8BS4shJHiOfz2JdbmaTWEhVVXHhkuJigEVqplc38HFUHkch6+dx8GcOui11snH0 RRy9neyX2NsDYUCeo523o7sL8RSOaGtnt9LOyd7WxhYzlk3CMQC1CIl0IzTzBJCbEjorvZnGRllV qD5QGFGpZDdLIwIPNYP7IbcAFhhq8yqHn10f/UOCdceTsZdRlJHPYKEctBkp7inMXEEkLA2LSKdX MprDOGqUw1Tw1OgKhOi3FCZ9G28nWycQzc4eXYYRBsfN3i7Ej0hMDIGHHW0Wg61sFq9FPIAzBPFy SedII8jNPDZfyuBn8s6wm1E9+RmLrtBnZtIjSGx+89ZsTDcsrTY7L9/j+r3rFAgJBSnhMFAWp4rB YTGQYi+oyEj4jwl0N7afy9RLFU/NQWHnsVtMxW/c6uBgv3hRlK0jGCvfNA6wHEE6u35vJ7uDiUEH ExMdP3CFICsKbBYhANDf7QykAJvBaj4jYCvYzyCq6JrqZ0Q2KhRmRpCaISAOWTPLOj1sXr4ns13w 1xGrwxpkPC4D5fC5KA8hFS8WsNMj8CyaF5GWyKH0zr5Uw0DM49kuPnhwKf5TB4elS2xsoiAF/E20 ZbaOK23hhmljG2RnuxKOVTg4gYE2GFcI4u9dzRZKq9VzfH5zs5RPJ6RmCvRsQ7pCyhY00wsKSAXp EQBh24YNq63biHWtPLAv/PTpwoZ7LFTGYwkYKBcpLF7iT6Sx6OprnJC9ib2UoF75y3xUzZMucYvE OxBXuHptdPByRHztFwNTy+wW29va2jnZfhRi2+sL4kIw2H6AswyUXATO93AjZPLSFeNtOgIAq7RP ZnsptNi/+GBnSprT6R1seqbX+vXO2JK0fOPGdYSIdGpycmYl1TW60gunG5ahMKpzeci3JLe1uDBg J/FaCJ4XJRYze8VzPDWX4+cWgvvHprWBDncOLnVYCoQ5brKztYVscPzIEUhatAvCyg5kswE0NoF0 K2cYW/hqIY+uE7X19ikYUtwy+5BkxQopIV1I1Q9DEVRL2ZkFdBKAA0DpQF86T60h85sv01exIiOS 1ybKZKiAiyKHolcgLEE0JzERj0+ELYeZSKH8MZfPR528CoiBuE8dcGXJfiRXByfEJgrIWWwL2tna LAKObFeCscBPcIGGuAj5W8RIPpvF728T9/b1tnGI/iEHvfGZRgEVuqFWoqRXgdUyC5olCgkd9i86 m0UcQ7V6qAVOdPXWrZFe/v4MAQoiZh6yt+UxI2HbwOMpV68ymcAWpVe8V81sptqvWIQ4uN5BqAUb jzn8w87GMXixo52j7UoQDzj7yKogFu+LETzmdsC1aNHWRB5B97jvtzYV4BKJ/ez9/YmsBkE6XaJu lnbcKujo6DiTUrA7t1zQQc+EAYylpLPOoFAcqahXhNfWrVuHZSpUhhwqXuFGhL2fgA8RX71KaRO3 ia+KF68UMVleZHDzsTKHsiXEAocy/6UOKxYtsvGGPPgIEH30AZD1YrM1AUP1N11ubFZfW19vv7gP 6GK6RHok4qUCBalSwkaTy8tvdpSXp5y7lXDuUyntDCn5DCFTq1cUXKRXpwulLA6BiHNrmNbpVEhZ uf+SgyFENz9i4kEK86pYLI5nUpbgKL+JtXSvKmo6gVBmSyxfXs7Bd2x0WGGz6BTU5EobW1uwvjXe AU+CFY7N37d0Nr1PpFL1ysW9vWJmiB0Oj4ctNawSTHVRm1Jefqw8iT5lniq/2FFdzaYWJF82JieU l7PpVcKUn5TYXwvL0LFEpDh6hQ1MLN5U/NVTFAqgEgM2BBdACRKL9DQyKkFR+4MFGzs29d+BrICw 2HTQFmvMtiGnrExhNCVjeKzEQS1K+X1t/b0fTh/FDVorXi2dS6iWVm9JSUlIKVC8tb4dYGYq4kxK QkH5T2HG5JTylJ/KO5q/++6rFAUqkml5RCTz1grECR/iz6bAEbe1tV29RmEigRwmLd7NBVedTKXx kGsFyzuotreW36IuddjoiHjb2dMEKGGRzQflIgMRrBoXwQF4dHx/G4go6u+X98lFTAoNH5mIoqLq amVzZMIUNgCbsX8h/2KkoyDhKPFiykVSx1cXU86lnMv96lzoN999lXCsYOuWSOTbTK9N/geX4Sin KNeuXbsqvmoXQsHTilksBgidSKjSGbTkjQ7L75xZ0rG8g0ftcHBd6kaTVclQW5sPVQhzw6L/C1WH JStSf2vrF/X1Wt+j0SfuE4koFPtKsZirWrC+V8KsRpOD1HqT7ndpOZD01VehoZHgtZRz5QXlX33+ 3edfwQd8Qu70k1ZssvdiRlGuMoEuoMzpTC2dTZrQK6RapdLIFMlZ/6icC+Tbd7jeWcZpdtjp4IrX qbiUxR9sbrM1GVlkTXgbZOv6wGpy/29tIpBPjr1RBNwl6m071TYH4y/QpJJpLQaTF30Ylei0QmAo NCWpPCU0IeVWStLFi1+lSM98/nno59hBDt0+lvGpk39UFOXUb0wxBgvnVj74XH9fr4cFWNDXJpe/ nJ2Z6bP9qWNjhxurzCH6H17+qIq3GPlgqEBYEW0xsgCbrd1WYr+oDeMKMxZcgTAA1kvcO6Pi6ubm p40N8yg+XTtvnLeUnys/l3vu3LnylJSL5bdCL15MKd9apTVu+RzI+hxpWlXj5XbmKpD1m5TJDKZQ /oGLbH6q1GieKaUSqZop2vtS3jvz8qXXWgfXDpfqso1fLPXCCVRBVkww9rm5LVmy+IOGi+2cCDym WC63IsL4AoDWf65/jTBmMs2PyEx6g0noRnpjlCokR89dPJdUfuviufLc0Ju5Fz/9KeGrlOSI5s+/ SfoGYA2W3ixY8dup365e43RcDabcunqN6HduELZ8/YSgUiDqk0NpTk7KRV5TLx932IH5A1eQidW0 vxsz4u++zNHW/u+vbM/g+8S9/XKMK7FVwz5MR3E8wV+pNUj1BsmccgxdRpAIBIJn5QlfAaTy8u9S ys+lpJRf/OpMudaLkBka+s3n33yHDGZ863/hzKlrd57V3sqPv/XbIL6srKP+7jN9j7CSzuoXcUSQ QHVC6eTLmRnXxZD3Bxxc3MIWW7PAFtnq62tjuxgP7kcWBbrhOH1iEXD1+IOCcEBAeS8eYlLZoIWD 6gxKgUeETlClNybc+hRsFQqZ8dPFc+cuJoG1tFOpR0PhfP4dciuw9OJtyq1bV8vrk6s7mO61xWWN BVLJs9sTQjYnv00kEkE5KYW98rGXM/leK+wDN67ww6+zqoYtPFG+to6brFwttrUP44mgF/Zi79jC fNX7B5DV10fLv0bwMpr4YxKhbnp4Dl1BNGh1en1KecTum+cuYrhyL14MvZhScIsHgwtg+nx3KJJT P/C/xvr7ndW30tJu7d8VdeXKsZgBZc+EUsrmUUTYOzmAgLoWRQY81bopYCzQwd/NdjHWm5FFZyK9 7b38/04H22QC5IFVuw/OAoR90BmpQWJcsr5KJlNrhZWmR6y1yaZh2fwzaEIp5UkXUz5POffdudCL IGRKiixfJZNFpISGIrk1dTWDt2sHE7LKqJAP3ndqAhvLpMI7yo67zGIpE2NLdKe8pu6JJL9X/ueM 8dm/lnDqP3jJ1svWJtjRxfvvfFhMa/tNLH7c++djSCwga7xXhDkr5JpYvJf4TCtQSLRGg1ai/ijf 1CAwjKHQc3LPXQQMoSm3bp0DWKEpP6lUYzCbHQpFahubBorKam9V3z5DaztoS0kvq/k0uudOzx0l L/M2zCdiOVNc1nf9SQ+3lzIp7526/8W/PmkCa5WAhivoiK+jk5UqR1iJzohemidBwse9j//mrE0O Q8S1NtFW/BhD0lCllQ4bUE/3qXmtRjMvYe1OSEr59FZCaBIW8hfLz1387rvQFDUDVXHHkNs5jRUD nbVHa0r++5OLLcXnqc+XS5tapMrB23U8LmgoEnF5gzk1d9CJPlQe1Ntzq+JW00s7+0WfNA4U/QCI vBd9CHnbrSGPpybNj/98DJMDxpY16QFVvFjURsQp9bJhY/PwmCTI19H992fzz+YtFm35sYIc6Dgp 36RcvFh+8RyU4OehW44eUjFkSEVaRVZp0WDJAIfI9DoYRUksc2hMu62821RzS3ibAXUIP/lJS2NN vaxOJZbfKbnVlGu4cwd/6H5n54MaqMcPJrOxcZqSPx6fmpzsHZdbqcI+4HoN86YY5y+TGLVhhgaB 2tPX0/0jT5kRGDMqCj49tzbl1sXPv9vyTeTFi+cgHEDJBJ5ChpSl3SqpiCtpuTJQXnumsRxGjbqK ptrSK2V3CpgTmLOArydPazrr79TJ71y5XV6Q0nH7SkdOUw3A6nyC/Ovvdrg4Iip/3Dz5kiPGmk6f vO/DEJEoZmJFg4vE3scyZkhv3hsQEOzu4kleZ7AYjYaqmxiW0KTQ8tDPQ6FFJmzZ/a2Az5PJkMHc usbDWU9zaq/U1w90NOKEt12bOsuartSxrzHv3BEz29pEgs4H9U09d++I6nOkt6rLSosr67NqBu43 Pe388lnN4O4lGFleEZQAN2abGADJe/+Uy4HlfvDZb4l9EKdML6JCNjz8jD3MdA/wDvDw8VT7Buyd 15ie7b4ZmvTdFjA98JRSUMCFSV4hgxuk9lZO7k85jVm3G0s6W2ppA/EdMSVNX5aUsNKZbew7orYO MffBwIOSu50tg8315RUVh7mc2wM1pU1PSh8M/O9tS0tnzZfYmki6RvG37wVYmN3/HO/tfQygemlW rtrEfmca9AqUzeIGB7kHBPgE0BYC3N19UueNkt2hX6VsKQhN2fJdAp+rFEgEqFomkSmQ3vK0ChAx p+ZCTU5jU0d9SWNWXVHdhcxA1m/MtrtoG6f09tMHJU+L6ps6mtJqbyXw6xv/N5Cb1Vh3p6O5ZeDC QOngU8TeyUvMvObthr3n1Jqj8slJgNWbL27DeqJY7OKvZZgUmeTgAF93n4O+nhtZbQG7POFY3kSk YNmQsDbSSyKQStRqNSpDi0lIeW5OY2NjVn3J4Zqs0sbOpv/VlnQ21d05Sivj3bpTdpspGiht6uxs qocgaUrKyrndWNFYUdpY23is+EFnTXHJk8GaFTZOETQx0++3ZcDLY2sjhJocn+wTwbrSa4WFx3co XigY+b7uUUCT304eqdcnwDPAx8dznb4g6ZuU5MgVhGZpM68BuBKgdCIBSUrpz6rIyWoqSiv677cV jU2Nh6/U514pqn96/7b0TketGB3kXq9p6qwHLEmHk0DFiqbGwZwHFaUDNTVFdwYHmzpv27gRKZS2 XooXcIW9oZU5CRJOyvsoHBhyxNhok0iUSLR8XnwAHM8gIq6a670/YJePZ4Cv7y7Pc1u++nxLaGSq QoYCUwSphO0ViGypflqbk5Z1M6si42hj47HGmoyciqTO+uY7VzoGb5dV8Gru9zTV/fK/uoKcmP8e zspNyskBZEcHanLu375S0lhW0zQ4uDjSvhomSGxoAAXFbXinl+bexLZ/i8S9UMr9YqzZo6iWFQIa +ga7B+FCAoKCMLL2x/vscgerrQ3dsmUrnY+9yUMm4/H51XTk8O7QnIGKik/SauNKs2pLaxqTsHyo aKpLqx0cqKltAkkH6ls6n3YOJITurtgNmVxemtQ5kAHKDtx+0vmgZcDJjUZdvBcGyF5riMpFm/Cb 2sDrbUzr4NUvHu/rJSjZKMM3wC8gyCcg5CC4PioIuMI+fIImfTx9zl3k0PgMLspisVABlCKyKHRt aVNOWkVc1s7SxpqY2tvf7s7NvVMeN8Cur6spKRlsyik5mgbJWdNZ09iZlpR0Lq08tyKuvqYGlC3p bLzdQvUawHn5E53wvRQK8PNHn9jff1Nbm1jE6cVgQff6s1eFkzSr4wEFplxwQEDQLtAvINg3KsDH d8bTx8XTx6cN5eNwPImAqxCwBUYk1MYW8uxwTkxORUZjbtPO2w8Scivqa2+V196ubqqrqSgdHPwl 7WlnxvWMgcak+lDAdbhid1pRTU3pg6YaLFQvdA48n8hMdvGyxd5DB6NWm4u3G1DVZt2qof3I5ZPK QCkmobd3SEBUYlD8Lt+g4ODgoIAA32Af5q5d+z09fYkoH+Wx9DIeqh8bM0qQW7bekbufNiblxDWm nSttqk06nOzPzCp9Un/zdm59SU1jXWn9D09rajKeZtU1JT0Y2J0UerSztKSmprak5sGDEoB2vfOB 5vkMGU+NdPJoo1yDHA1xcRNxxG0fogKbCxukYdogoicIGOAdHL8/KChqf0B8AOSDT1BA/v4g3/0B wRQ8Ts3jVym0MGUMG7RIym5Hty0JoXH/TalI2Vpau/vTssPM5oLcnzqarjTdvxnT2Fn3S8b9uqaa iqTrnTWd12tiOrIGQNCaktImSIi7yuvX7w/MPTERaLBSetlfa4tnYpMDJHtfHxZi4t6+SZ1ME8EL CHCP9/OhxAcTA+J3wYUC9gKPxe8P8PX0gc+JyUT9lHbMYBw2GI165CKyyC0JGmboUaccaNo5t7Ii crk7axrLsyClYm7W305r+iEr7X81WVnXm64XPe3s/GSgCDPawIPOB0+bwGIPHoCSRlWNndcZHNHP vheUBDS/WUdmbPzqndKjmTjIK0gpn+CokJCooPigqKioYEpAcFBQfEAQZjWKezKr0qiHeUxpMMgk AuRW6JYVbklbKw5nfXW4MRdqMPdcblJZ1kBtbdJgU1ZuTUvalYz/X8svDx50Xm8qfVBTVJIBLbq+ EwzfWVrxGmDVF11//p+W651O9hwiMZFo79KXz+QwxdZOLW573DeplKBMJxoEVkDIyr0HgzwAy/4g oCp4l0/wrv27fAL2B+8K9ksnEk1Gvd4o0cPNMHJxyxabrZ8m7HZbG1eRlVs6mFubW3EzJ6O+FqK8 EyvFtIy7D5qarjc9vT6I0dSZk1XTCU2xBmzVWHrnP0UlA7887WmBecKNgyNcIxPxtnvFTEov1oj+ gHGiTyeV8iCvooJ9fXxtNwUEeAQRg+ODg6OCg312xUcB2Kj9YDo8PZNuMDwa08IIa9RqkN1LtkAH /+qrr775b86tuMba0sHaT6/sTEqLS4ImE9eU03Lsy+tFD4qeQr+uedpZc71kZ8n9B1lPi0qySrNu 3cyqKS0tGnhwHaTc6MZKJi+pJtITXbz7mPlMa9uR9042C/w93b19fYIDfLwd3T1t3QOCg5nBwZTg XfHxu4K9IfWhJoMTOWySXjOs1euHpQajFvn01leLQrcc3BQaGpdUW591szR3d+7RnbW743bGZd2B BwZ2x8UV1dflAk9FRTWdvzTFNAJnGTElOTlZWf+pKK0By9cMdD44lOHFodLd3DhEWiTRzq/X6jCY BPlS6S6gyh1gBUT6OPr6BwUFUXwh5vdTvOMxyqJCKJ7unjQanaw3aoyFGr1ea9QgVwbr1+6s/3TL lrWHb547fA4iPukcdMkrScdqUy40lSTVlcUMlGVk7Wy6DvZ6+gCyvaSz5mlcY1IBhNbTitKcphIs vq63XPCqxpNdNvGI+RwqEb/MS3yNKZfLUQGBEhziDW3HOwiPDwihRAFZu6J8gjHnBwdDEQQx4+OD gqkcaibUoR5srx/WKpFjtYd255YeDf3mHCTlN9/kQHrl5BQcPpz7yYWSL2I6y8q+/KGuJKuz82k9 PDlUXn1NSc3A084m8H/nQFbF4ZymJqDr+kSPaCsr8Yy9E4tKc+HSiLCp9VMeyx8TBBwsRHftig/Y RYkiRoXs35W4KzhoV3wIZVdAcIjn/nhKPNPXx+dMMlFoHNbohzWY57VIQu7tmJ2/xGTUJsUlhZ5L upl1M+fcYFJSVkRWVsXuw0nffvv/xtTGZDUNpO0c6ARiakprm0pLmppKAOHT6yWHP4mrB7z1Ay3S Ng4tkb7JqZpIdrMjEmkRmxbbR+LQZnbQLnyQb4B7QBA+ICo+0TM4HsjZHwIpHxy1f7/nfh9KcFCw ry+eQpcCHv2w/tmYUa9BjpXdzI35V13dJ01l9TeTknIqdiedq01K2Z2R23Q07tu0gZgfvtwN9t4d 05TTWDoAaB5kdGZ1Xo8Dr3UO5MQdvo7NEKWv38lUai6VvAREpLk4+dMIHCLe7tNIBp8TTA3x2xXv 4+Mf4BcVEuwTAoYKCIFYgOSCeSJ+FyXg1C7PSCdHmlSvkUiUj5TDeo0M2flJTcuFL2Jqa8DChyty QMncm1dyqr+Mu3D027S6tOtFRWUxO4vSDh+GcC2twVh6UPTgaSk8/mCgtjymZmCgc6Bxoq7z/fu+ /jaciwsNT/O39adTacRTxEgijxF08GBQMD4gKMQfUjQI5iuXAM9d1jkrGL9rFyWEEg+UeW66FrnW YNTLDHqN/pn2kQQ5VnDll19aMj75JDcpruzwt4czfsgYWLskrqKorLT+zp0vD3/xbd3Ow0drf/kl rggsVdGY1QQ96OnODJAzt6mxqQTYamx58uT9+3fvVKcS8USeH83F0Y+YyPP2oyTieKcIUHkQ4yGQ 7vFQjL4wYAXHB+zHCjPY99Quyv6g+PgAfOS1xTyJTKJXajRKrUSiQOrvlv1yKKMoLS7hcExL7uGM ppqiDHi2mrqytJKSuKKYmKaY0l+Kv/22riSuqan2h4HG0qedT7OyYmoagd/GivqBzpaBJ/c759+9 e/+OnojDJUI52uKpNJ7dpmsuWz3z/50YEgVcJQIuKDjfYGAKuk1wsG+Qp6+7OyUeEtV9hR9zE1Gi lGj0WnRYJpDoh5GjGWV1gxcy6spKcrN2tpTW/VDa+cPtumO1g18eXftpTkZWxpcZOXFFGSVJh+vu l9V/WVLRVDRQFFe7uzQmJysNIhVKMqtp4v37989HO5f4E7cSiEQ3OzyVynPaRHNJ9qfkx4cE4YMS 9xJ3RYVA24mCYSbAB1B5RgW5wxQY7Aup5eZmjx+TSqTDMlQg1ChkQgmSdeXCjxfuZhRdKK7LrSuq v1ia0VmTVdOUG1caU1R7LO5K0xedNTHH0oqyvkmLiSspTUPzVvcAAA7iSURBVCqN6Ww6WgNNICer IguWk86Sifv1E4MTdQMl/7O1WXKGSk12oR6knmlzcsq3K4hEiPG0gyGE+I2UKArEql8ANgb6wKTs 4xskVpDIAYm+nosXL/FLHNPD5qNXSpUC2MqESMyFspILx9L+FbezPqG+vu7KlZacirjOc8SdFRkZ Md9mfJJ1IeZoWVZ9TtqxuJjSopja/8Zh43JJ0rkVKXFJSYOlg7AytgzeHrwPprextbWhHaRS8cRI As/RneaYcCwhckkIII0ghuA9oOPEB8SHBIO7YJpAM6ksnPvKXZ5uyOLFiyVqpUQqgUrUCyolAhly 7FBBQVndnYyyY/W3d+aUlV3JHUgafFCxe0XtziKHmM/KAc3duLhjVzJ2H03affhm6c1PHAauD5Tu Tst5lpPWWDtQUau/Avbv7HzS8rwIFtlFNv7UxGQqleXmeCaETidFJLjY4cIiKHsh4qPiQ/DYFhYE ceWDJO/y9l7p4/ORvdsmx36QUCaVSoQSoVQiUEqRtFvl3xZ8kfavb8vv1FzYXV4fl7Q7Kac0Z0VS 0idZ0TEZMVk7M27uhFpMKMmIy7kZV1GaFTNQ8/SHmlvNFbthB8pKg4mwoqimvnOw5oktstjWZtEi mHBC8Di3TTR/dgG9oCDiU8SLFeGRGB8VHxACrSckyhfyIcB9kY+P+0feK7032bu7Ke/JFDAAKQVK OiqUMJTI7fKjxYc+iYs5fOwYKeNQ6OG4krhvcko/zf00NCv3aFpMVnXB0cNZpUVxZfVpVypyyrIO N4GjBjpLMp4m/auiIulmxUAW9KWmmrqJNwveyJKkRYsWbUVoRHwiHheyKZN+hk5POPapPxJIT0z0 T/w37GE+8TCMuq90911pY7PyI+zfLnj7SaRSgaABuBJclgiVSqUQud1Ev1Nw4W7K7rK4srL7oYd3 1pTsXutQezM3Nyk3Li0trjhmd11GRdat2ty0mIqjtXHg8dpbA6UD5253dCTV5+T2NMEM3dT018TC /DsEgeENWYRfbOuEx3kT7aJCDtGP0en05IStizYd9AqKCvaDRhgMbHm6r1zpbmNr47gSWfTRJrUE Fcpge20WSBoawPKKZuTCj/Tcrz690HjoduaV64P3c1vqBpouppzLTdm9My63Pm13UVJgxiHs3rmk rC++uHn4/8kBtnamgc7PknKaGktvP4PFsvG+ZeH9whs361/72BzcZLNoE0wRXmT/BDomIy2ZlLBp sX8AEUcL9gkIgiHHJ2DlSp+VH9mstEXA8A0CkA9VoJIGVrNA2iwUSJGMQwllh1oyEo6WHTpQ1nKl 4mhZS1rSlbqym4P1MSUxh8tiSnbHXbmTlXvlVm3OlR++LLpyG+IjKebwucM5z3JvldRcqWjKGHwz aMH+H1v2CLJoyaJFW9ba2CRTl3D8/SPoyXR6QfKyZmpBZMImFzfPEL/gKHdvENFzpeNKR19fWztk EaLlC+AoLjfzpEKFlC3MbBYgF1IKDsXdTjl2rKDs0O4LFzquHE67Un9/sCYnbTCu5pOYtJgv6i4I i+O+3F1f9EvGL9e/3F3UlFHxr5qKnN1JSdIcbFAs/f9KuN6YttEz7qNFWsWKWr7kaDgWifY4REqc Dz45Jei+nPLnNFmdbCQHYWe2o7MU7sKsKJEpFZq1kBQzpEXQxgdtUQnVqSwgyrLqWFRl3brdwUEL tB9mNBiX+VY0rsaKRGCFk/b67pVe598H//w8v/f3PG/e933u3Ts6enVycnDSdP5UndVu/mtZ5RZP n+pqYiVWkkS2ts4mAoNZIHt7Y7sbBKOL7zVcPH+2oeG8uUSzOzMDVPThQu5rZX5+NreSWxidhxKC JHcW5UVelrN8anlYIJhHi6jUn/4cR3wMhhAJRgIKlueFxLKQ9HVG72Yn78SjnSDXAEH01dzck6lr I/8zz3AfHN24Gqprs0LQ6aq3nNQpACsYBMwSg25rnbnVQCTtNY3tl7uuXGl4r+FnF8F4fMtccngI sMzHbs6M5RbGlNzDm7lcbh6iZV6mB2NenM++kPNzKYSD5SlyuINJMzSCgfakRcCYuC/hA23yevT+ 7dvRO55ounhtJEFw3SO/v7b4+qjw5uTN0cG/Qh2hpvN175rmcoarIHcTKQJrSYFaa21MDAZJmITP Wl0T7vcvN9SbE7T3AK+qlpQLEYBkdHbs5sxsZn40LM4/nIW4fDyVoi24LOND0wJOk6RMp1BPf38S iz+im5sJDKMJTPDQSTqezc5N5peFRPR2NDH3qBMjCiPTyel/SycHANbB3rOO0FW3v+M0VPWu1dUD Qe7GMMAiifgpezUr4QFKJFncbm1sbXU1+OsvX/mpuRBSNzo7PruQySmZntH58TElI2YeKhVomJgi ORnNysHBbCrrweZexOVUmsFRIs7w3d0og8WTQhxYihGwLPby9vJdLBpt8RH8Yj+WuDY1NfemMPLf w4PX8Pp+CSbbqVBH/emzVmsrVQW1O0VSDJKkt85f3QdolmnsG2RFr63a+37rxcv1Z8x9TNCsklHC 8xllbDSWiYjzmZgSZk9OIEeedQTTJH2umMaxrBBNI2JQofN3ibTAhDg6GvfFk0wWo30pT/5efGou cT2aTTBEkU9JQ5/LRCca/0Y+ONrxtz3bmyUjXZTbXeW0WpvcFAS5WgNeW5j9Y2W1q1oSyUCfyyaR eNDb9q7Vzl62NprLDEsfzM4osQXFPPAdjolsJhBWxEoFks+RJM7BeB+HpJBB3OMX/XRKmMNxGscE BgdZPgFyGwHh44m00M9P8sKdZGLyfpSg5Uf84tSb4nD86PBwZVZagp0dXZGqNhdUZWu1kM4QZPcG va3QkqEbxyczQYlyB63mCGCDOBiTF9xnFAqyT4zOZEZnZ0bHxsZjvaICfvayx8cVKOuHUxyX8jrg 6ZSczm5MAwW0ONL0/eFBn+BrifoEwC5hSuD5oWvd/MZQ/AlPC763segQn3qVLBS+eXNU3Prg1MQ7 20bJLFu2v28WPtxXS/t7Kuv1N/1CNVRjwKiclKjq9/1iLEzZgZLBTdWXr9yQpIdjANTs/MSsqFAT oksUKRd7qANrCThXKHKyjHI0k+fwwRciLuHN00jKw2FYnGEYoF0tuODj3u5OpKJJnkZ5TPIJdFFg ivvffftq//XRzrrLWr8+s7ulGlsmrP1D44eKaiUqxv5QAG5bMx7o5iZgNydJLOToCcZIb1O9KBUB qkCkV3EpYdEV6wmyQda1e1wB1sqn0zA6SAsyCctICHkx0oxyEh73ZDtbHNFLKBiEPNGSHiKSUQzj h6b4LP3bTkHopzl+avrpd6939/d3VlasZzPUxAdbqloy4ewZqqpphlHS1pd0cNU2jW3jK+OwUja+ gsSJX1W5JSBmcCDWp4QzmdlMZEwMj0aooBhxBUnvcaVyrEHJj2jHJYR+PEgyNziYDiIwY2HyOE8T OCogQrwfI3jAKVPB0nHiGsMvDvFpYY4YfsXzhW+Ki4WtrcBZqpdqtfVS6ypwXmmnpG5tqTsqeFnT dUPVdW1TK2nlAb1i6IfrvbU1lCT1iSwlFYGqf6xk+iJiRuyLBLvYD1kbsNWxrkKPP+Km6XyLA5cv kTIymHcMMrTFgW5wKIkmh0NEItGS5rpvpEFG3z3cnQbZDkH0z/FPJpf5wj8L/fIfHvyk7jMwj3d3 9fZM5EqqUdbN0jKaeQGgNjeB3VStVBowtr8ol806dfW2iTCA1WeGSyVgVzKxcMQVoVjW6/ZbM5WK XintQmlxJC4OW9BQWxGuwZthC9xhIQkCQ0My3c2hKEYgdEiAHaiHb8E6mThQVqJlemrq3jxdeD7y kBqvdQ70uimKivxpIvf3XEmv6Ia2B7pq1r0xfWhsAj+ufmpsasaAfmjWjvSDQCTF/CAgieORmGgX xUDYS1EBt8tpGgs8DrTIpAowPy0HUavzUlyEOdwRIlEGTvcz+Sj3hEi3tLREcQ58RSAdGNc93AmS wydg8vqf+3fu9CuKdaaX8lvZLmpgZmJ0YX3r49+VSkZpD3hT0w4BFE1bMssuapq+Cui2OaCXyxVj Rww+k1iQ9ARsrkgGjMLGDyk7RbmcFdCMw1Udmmp2kE4cqaE5WfJKTkuRJOE2DEcRziFdoqMJLI/4 MILj0A4MCRE+YrEQYnjh7j3m3stJbvpm10RPF/Dg5c96el9s3FxbWyktHfxYpMp0oQE4pYELGAGg 6XpJ3f5C14ECqDm2NxNUgiBBpCIs0GC3y03V1psbXvSTw4oKLXBpL58inPFUjUXqwHkHi9TgYMZi sTSjNHE9GxewBILCNIOS3QiHpT1xgmGw5DT/cpKZvznfQwXslL1xxt0bebqQ//YpyDFXPjE3HBn6 rlkaEphLV9W1H96YgvbltjFQPtQPjdIhKSrjgVY24vWTrXaHzen29wIVOT4BXtcg5iOJxRHEwsQt QSpkcfwcETwcjDoxGPakMCEf9fkwBEdxhEgBHWsemRYQrp/nN+Ibg57YoIt1vNPoPutqpfyjhcdj X+fWCutqvnSgrRk/VqwEqEAva2vbO8ByJsm+rGjbB3t62ViLzGQabSATA1yn/G6bzXZsnnBQjYp+ DNXgFsQvOc4NO0kbB/v9IcslGFCpm0RauOj1FIg7fD9Jkp1C5zIIQ7yAIUzn8PRIcsPn9T1DaOrM qVrK3tpKLTzN3f/bwl9Wcs+BOpQ+0cB9TVBlwCp1RwOA1O1t02Z/vgW8emvTdHKJHQePY2dZF3Ch 3+48qZg79lWASodgHA/BDi8ukH2ws8YZCl21oLi3iKYlS3Ne8F3HEgQQLzDXQAgEUI7rAHF75EXh ZVYp0hekerf1TGNTI/tg4qmSe/D4N88XHqyurKvmTXeB5wAWbQkQq2SYTiybFFu/ZQDjlW4BPxpG 2dbV92l7wO60W+vtfQCU/j0Qt8omgMV5ENwZ9p5jSba2puOXVzuutl2lZQ+H0HiKE2ghSRDNBEp0 /hrlJS4LJIPoJDwIJiQSk3fra63udqq91TwqOCo8Hlj+6/M1eUX7R7m8V9aANmxqP7ZtrWx+KoG+ aqibmrq5ub2qGsCiS64AS/kd/uraWjPofF8ydK0yMPB/u/CTdQdAY0cAAAAASUVORK5CYII= "
- width="320"
- height="320"
- id="image"
- x="0"
- y="0" />
- <use
- xlink:href="#image"
- transform="translate(320)"
- style="filter:url(#replaceHue)"
- id="use30921"
- x="0"
- y="0"
- width="100%"
- height="100%" />
- <use
- xlink:href="#image"
- transform="translate(640)"
- style="filter:url(#replaceHueFromLayer)"
- id="use30923"
- x="0"
- y="0"
- width="100%"
- height="100%" />
- </g>
+<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="900" height="300" version="1.1" id="svg2" sodipodi:version="0.32" inkscape:version="0.92">
+<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1170" id="namedview107" showgrid="false" inkscape:zoom="1" inkscape:cx="514.76695" inkscape:cy="-14.43644" inkscape:window-x="-5" inkscape:window-y="-3" inkscape:current-layer="layer1" inkscape:window-maximized="1" />
+<metadata id="metadata109">
+<rdf:RDF>
+<cc:Work rdf:about="">
+<dc:format>image/svg+xml</dc:format>
+<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+<dc:title></dc:title>
+</cc:Work>
+</rdf:RDF>
+</metadata>
+<defs id="defs4">
+<g id="hueImage">
+<linearGradient id="gradient">
+<stop id="stop8" stop-color="#f00" offset="0.000" />
+<stop id="stop10" stop-color="#ff0" offset="0.167" />
+<stop id="stop12" stop-color="#0f0" offset="0.333" />
+<stop id="stop14" stop-color="#0ff" offset="0.500" />
+<stop id="stop16" stop-color="#00f" offset="0.667" />
+<stop id="stop18" stop-color="#f0f" offset="0.833" />
+<stop id="stop20" stop-color="#f00" offset="1.000" />
+</linearGradient>
+<rect style="fill:url(#gradient)" y="0" x="0" id="rect22" height="299" width="300" />
+</g>
+<filter color-interpolation-filters="sRGB" width="1" height="1" y="0" x="0" id="replaceHueFromLayer">
+<!-- This is mainly to make sure the flood color has the desired effect. It would be better to use "real" colors and compute the hue from them instead, and if so linearRGB might actually have an advantage. -->
+<!-- Set up p, q and q-p -->
+<feColorMatrix id="feColorMatrix25" values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1" type="matrix" result="r" in="SourceGraphic" />
+<feColorMatrix id="feColorMatrix27" values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1" type="matrix" result="g" in="SourceGraphic" />
+<feColorMatrix id="feColorMatrix29" values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1" type="matrix" result="b" in="SourceGraphic" />
+<feBlend id="feBlend31" result="minrg" in2="g" in="r" mode="darken" />
+<feBlend id="feBlend33" result="p" in2="b" in="minrg" mode="darken" />
+<feBlend id="feBlend35" result="maxrg" in2="g" in="r" mode="lighten" />
+<feBlend id="feBlend37" result="q" in2="b" in="maxrg" mode="lighten" />
+<feComposite k1="0" id="feComposite39" k4="1" k3="1" k2="-1" operator="arithmetic" result="pminq" in2="p" in="q" />
+<!-- p-q+1 = 1-(q-p), with the right alpha :) -->
+<feColorMatrix id="feColorMatrix41" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1" type="matrix" result="qminp" in="pminq" />
+<!-- Get hq-hp and hrgb-hp -->
+<feImage id="feImage43" result="hueImage" xlink:href="#hueImage" />
+<feColorMatrix id="feColorMatrix45" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1" type="matrix" result="hrgb" in="hueImage" />
+<feColorMatrix id="feColorMatrix47" values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1" type="matrix" result="hr" in="hueImage" />
+<feColorMatrix id="feColorMatrix49" values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1" type="matrix" result="hg" in="hueImage" />
+<feColorMatrix id="feColorMatrix51" values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1" type="matrix" result="hb" in="hueImage" />
+<feBlend id="feBlend53" result="hminrg" in2="hg" in="hr" mode="darken" />
+<feBlend id="feBlend55" result="hp" in2="hb" in="hminrg" mode="darken" />
+<feBlend id="feBlend57" result="hmaxrg" in2="hg" in="hr" mode="lighten" />
+<feBlend id="feBlend59" result="hq" in2="hb" in="hmaxrg" mode="lighten" />
+<feComposite k1="0" id="feComposite61" k4="1" k3="1" k2="-1" operator="arithmetic" result="hpminhq" in2="hp" in="hq" />
+<!-- hp-hq+1 = 1-(hq-hp), with the right alpha :) -->
+<feColorMatrix id="feColorMatrix63" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1" type="matrix" result="hqminhp" in="hpminhq" />
+<feComposite k1="0" id="feComposite65" k4="1" k3="1" k2="-1" operator="arithmetic" result="hpminhrgb" in2="hp" in="hrgb" />
+<!-- hp-hrgb+1 = 1-(hrgb-hp), with the right alpha :) -->
+<feColorMatrix id="feColorMatrix67" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1" type="matrix" result="hrgbminhp" in="hpminhrgb" />
+<!-- Compute (hrgb-hp)/(hq-hp) -->
+<feComponentTransfer id="feComponentTransfer69" result="invhqminhp" in="hqminhp">
+<!-- Computes (1/10)*(1/(hq-hp)) -->
+<feFuncR id="feFuncR71" exponent="-1" amplitude="0.1" type="gamma" />
+<feFuncG id="feFuncG73" exponent="-1" amplitude="0.1" type="gamma" />
+<feFuncB id="feFuncB75" exponent="-1" amplitude="0.1" type="gamma" />
+</feComponentTransfer>
+<feComposite k4="0" k3="0" k2="0" id="feComposite77" k1="10" operator="arithmetic" result="coefs" in2="invhqminhp" in="hrgbminhp" />
+<!-- 10*(hrgb-hp)*(1/10)*(1/(hq-hp)) = (hrgb-hp)/(hq-hp) -->
+<!-- The following uses "iterative" refinement (or at least something similar) to improve the result, but it cannot cope (well) with negative residuals. -->
+<feComposite k4="0" k3="0" k2="0" id="feComposite79" k1="1" operator="arithmetic" result="hrgbminhpestimate" in2="hqminhp" in="coefs" />
+<!-- (hrgb-hp)/(hq-hp)*(hq-hp) = (hrgb-hp) -->
+<feComposite k1="0" id="feComposite81" k4="1" k3="1" k2="-1" operator="arithmetic" result="hrgbminhpresidual" in2="hrgbminhpestimate" in="hrgbminhp" />
+<feColorMatrix id="feColorMatrix83" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 0 1" type="matrix" result="hrgbminhpresidual" in="hrgbminhpresidual" />
+<feComponentTransfer id="feComponentTransfer85" result="invhqminhp" in="hqminhp">
+<!-- Computes (1/100)*(1/(hq-hp)) -->
+<feFuncR id="feFuncR87" exponent="-1" amplitude="0.01" type="gamma" />
+<feFuncG id="feFuncG89" exponent="-1" amplitude="0.01" type="gamma" />
+<feFuncB id="feFuncB91" exponent="-1" amplitude="0.01" type="gamma" />
+</feComponentTransfer>
+<feComposite k4="0" k3="0" k2="0" id="feComposite93" k1="100" operator="arithmetic" result="coefscorrection" in2="invhqminhp" in="hrgbminhpresidual" />
+<!-- 100*(hrgb-hp)*(1/100)*(1/(hq-hp)) = (hrgb-hp)/(hq-hp) -->
+<feComposite k4="0" k1="0" id="feComposite95" k3="1" k2="1" operator="arithmetic" result="coefs" in2="coefscorrection" in="coefs" />
+<!-- Combine p and q -->
+<feComposite k4="0" k3="0" k2="0" id="feComposite97" k1="1" operator="arithmetic" result="qminpc" in2="coefs" in="qminp" />
+<feComposite k4="0" k1="0" id="feComposite99" k3="1" k2="1" operator="arithmetic" result="color" in2="qminpc" in="p" />
+<!-- This has a slight chance of failing, as alpha gets larger than 1 internally, but it really shouldn't be a problem as the specification clearly says that it operates in premultiplied mode AND the results are clamped to [0,1]. -->
+<!-- Reconstruct original alpha channel -->
+<feColorMatrix id="feColorMatrix101" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" result="alpha" in="SourceGraphic" />
+<feComposite k4="0" k3="0" k2="0" id="feComposite103" k1="1" operator="arithmetic" in2="alpha" in="color" />
+</filter>
+
+<filter color-interpolation-filters="sRGB" width="1" height="1" y="0" x="0" id="replaceHue">
+<!-- This is mainly to make sure the flood color has the desired effect. It would be better to use "real" colors and compute the hue from them instead, and if so linearRGB might actually have an advantage. -->
+<!-- Set up p, q and q-p -->
+<feColorMatrix id="feColorMatrix7" values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 " type="matrix" result="r" in="SourceGraphic" />
+<feColorMatrix id="feColorMatrix9" values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 " type="matrix" result="g" in="SourceGraphic" />
+<feColorMatrix id="feColorMatrix11" values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 " type="matrix" result="b" in="SourceGraphic" />
+<feBlend id="feBlend13" result="minrg" in2="g" in="r" mode="darken" />
+<feBlend id="feBlend15" result="p" in2="b" in="minrg" mode="darken" />
+<feBlend id="feBlend17" result="maxrg" in2="g" in="r" mode="lighten" />
+<feBlend id="feBlend19" result="q" in2="b" in="maxrg" mode="lighten" />
+<feComponentTransfer id="feComponentTransfer21" result="q2" in="q">
+<!-- q without the red channel -->
+<feFuncR id="feFuncR23" slope="0" type="linear" />
+</feComponentTransfer>
+<feBlend id="feBlend25" result="pq" in2="q2" in="p" mode="lighten" />
+<!-- p in the red channel and q in the rest -->
+<feColorMatrix id="feColorMatrix27" values="-1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 0 0 0 1 " type="matrix" result="qminp" in="pq" />
+<!-- Set up coefs -->
+<!-- This is what determines the "target" hue. In the ideal case this would use feImage to get the image data from some other object and compute the hue from that. -->
+<feFlood id="feFlood29" result="hk" flood-opacity="1" flood-color="rgb(80%,80%,80%)" />
+<!-- This could also use an arbitrary image whose hue has been determined. -->
+<feComponentTransfer id="feComponentTransfer31" result="coefsq" in="hk">
+<feFuncR id="feFuncR33" tableValues="1 1 0 0 0 1 1" type="table" />
+<feFuncG id="feFuncG35" tableValues="0 1 1 1 0 0 0" type="table" />
+<feFuncB id="feFuncB37" tableValues="0 0 0 1 1 1 0" type="table" />
+</feComponentTransfer>
+<!-- Combine p and q -->
+<feComposite k4="0" k3="0" k2="0" id="feComposite39" k1="1" operator="arithmetic" result="qminpc" in2="coefsq" in="qminp" />
+<feComposite k4="0" k1="0" id="feComposite41" k3="1" k2="1" operator="arithmetic" result="color" in2="qminpc" in="p" />
+<!-- This has a slight chance of failing, as alpha gets larger than 1 internally, but it really shouldn't be a problem as the specification clearly says that it operates in premultiplied mode AND the results are clamped to [0,1]. -->
+<!-- Reconstruct original alpha channel -->
+<feColorMatrix id="feColorMatrix43" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 " type="matrix" result="alpha" in="SourceGraphic" />
+<feComposite k4="0" k3="0" k2="0" id="feComposite45" k1="1" operator="arithmetic" in2="alpha" in="color" />
+</filter>
+
+</defs>
+
+<g id="layer1" inkscape:groupmode="layer" inkscape:label="Layer 1">
+<image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAAAAXNSR0IArs4c6QAAAv1QTFRFCAIG
+BwQTAgcFGAUMHQUNFgcZEAgkPwMWPAQjMAokVAIOLg0TIQ8wJg8iKw8bXwQHRQ4OIBcmJRcadAER
+fAIHdQQibwgwNx4PaxACNyEsVBknNyMjNSI6Ths2RyEzPCNMSiQqbxoljxIiNS00NitNWyUhNDAp
+XCcRNDFDYysEjBsyRy87RTEwQTBIOTgaVDAiTDYZSzYnjiBEgSpEqSA4YToPUDtPTTtcVkEPWD0+
+SUBQUD9HUEE9SEkRczdGXz1QjTQkiTQ4O1ASRkViaD9Efzs6eUAbYkU3fkIEVko3fEAvSU1Wd0I8
+qjYfdEoEpTVGSVQrTlBHqTg1bEsvb08EaFIEqTk/WE5eX1EvaExMX05VS1wHXFgEX1BLeVAkb1FD
+TV8eb1YbZFZDblcpXV0jglNYfldaemAUs0lVrE1CdVxVc1xdgFdrYWFrbGBWamBdW2VajF4VbF1+
+nFoRnFJhe15PgGQFq1BTcmJPa2ZPdGsFcmoZmls4lVpSdWJumVxIZ3AZdWhEW2mHjGBUl2YBimNH
+kGkAkGU3ZHBMiG0Ag2o3c281aHMzfXMAk2NnWXKKjWZoim4kXnN9gWtrhGtkiWtccHB5e29kf29c
+a3Rqd3JbeXBstHECuG0frnIgrnYAumlrpnwAjoEapHogmX4dr3RDZ4KXgYcdnndyiH19hH91lYYA
+j3x1iH9toIMAiYoBiYBmk31vln1oeIV4qH07hICIhYdAsndgeYSIm4I6fYSAmIJKr3hxqH5Mo3qH
+kYZdhIeftooFroJxsoJmp4ZkroaAo4x+iJKWi5KOjJOFuY41nJB3oY2GlI+ZmpB+p413mo+Pl5GH
+tJcOrpY2x5oTxZOCxZZ5u5eRs5qRrJulnKCwuZyGvpx5r56WmKSirqCOqKGWrqGHpqGgwp9oo6Ko
+xaFbyawjs6qBqa+fy6uFxKqkv6uwuq+dubGVsLG8uLGms7Kzz7RYq7az3bNg2bdzxMC4vcPJvMW7
+zcWs08iayc+vzNTY0dbN4+jh7u3OwPYOzwAAAAlwSFlzAAAN1wAADdcBQiibeAAAIABJREFUeNpM
+/Atc0nf7Bo5/rFxPB81DrcdDamk9LjXXyUKx1tI505+uZSlOxjLTkgH5LJV0WuahqbkOKJD8f2se
+nhL84CNMkszmPIQaZy3ToQFqZQbCU6GurNfv/tC+r9f/jSCSk8vruu7rvm+KIeNqEYORz2IxmhV6
+o2VhwWKZs8B5Ma4bf2kxm/unxrncl+ZJs3kErrPwyJtZ85x57sWI+Y0hmSySy+W9cnkffPpDLldZ
+74nkvXB/RK4ymfVjOsu7hXfvFhYWTl376adT1347dSoq+ODC2xmzxcwViUXmcZXaPDVlNpsm6aTR
+6O0H5k37tu8LP4C8MFtMFpNpbm7OYgA479/NzcOnuXmvwBVut2+3JXI4IpWc+Sdg+h4wWebgWWZn
+LbNm87hljtsr7gNQAATDNgnX3l75n6pe7CuVfN6gGxvTmh4tYOeNwdH7lPWE+B5cWJiZm60Ui3tF
+ZrP5pdmsejkz0pcfody+fb1leF94+L4DiMU0Pwdgv79s1AJP85fhK4wti3R00SK3BJxZns/kMswm
++O/zZ2fNM4BsZHZ29u3szIx5bo4rkovlvflqmQoOgFHJJ+Uf+JtUvTAaH2nHjGOmhQ/HJfjUQUAW
+FbUpyjI3DjqIe3t7MebNMyOiKfNkH084t1xp2nNgPSl8DcBCWdPzJhQ1AZaFefS5aRpUNC/4+69Y
+sXXrT3jc47lxMYAyj+dbZswLptk5YMo8MgeCgpbjcjFQteeAqysR5UjUGHVwJv+YVKmmTcN6A7Bl
+0r77GxePRvP22RQVFbXw9q1ZMDsn/0P0cnbOPAMqiGbk8n6z6eXMowMnT57cvg+xvMjfO22xpMpA
+QtPctOb93DRoOj/n4rcMWbsWF98RlMzMn8Rw5Ztn5kwvZmdfTGLEj5tfmKwKmNQL0eHLo/dEu7q2
+jkzKR0b+HBkBk5kMJpPMaDRrp416cOz8guV7icJ7ZcCpkIPB8rn8l1TaJOZIMAQoMCs3M2Xwo8yz
+c3uWZmfvw2B5eIC59sruYb+9xTA9bzFNWSzzhwoObSTgCzik+A6metyks5i+H7PMQRUAWRZAk6/G
+GBx/qRuRczn5QezwAxuj2z/A+nNc3ms2TZumAdnY2LTRdHlh4cX8C5NMzfe2dfH1poxwzWQuXiQS
+ExPV85bZl7MzZp2ZgckJKC3r14eHI3M6y4sxsL3BBKDmxsD/ZhOoOL+VzfDy2lqQSKIWMI3mF2bd
+u4X3KhAaPAUkmV6aLVMYhZOTOo56XC7nMsGD7yaBJtWkfLxXbjCatGMGk2FaqzPpQIgXUEgynuIg
+jnvKjmqZm+0Xc0Si3kicF51sxhw7NzmHlfnMzOzI5NjyQOQF+M8yNjJtmje9mQP5NPCzxk2mN2Gq
+Nk5ygr+Ykgg/1Gx+MbKx/R3HAPcwtsCoJoBqHp95aTLrTBj9Ivgjs2lEDmSBNhqL6Z7RYBoDdIYR
+k9EASkD08KQUP5Tjhps17xWJoRDbQvzCKgVmcCvAUVlemOWiP2dnekUiGTJrScx/Y7LQ3hwHKkwm
+BVem9zCNqcbH1W3MrU6Im12QPkxn6J0c2XhWB2hGmCNv3717hxGFWX8SaMNAvRjnYA+9fDH9fuTP
+SRG4YmzMZDJrDYbpKZ3BaDZClcOvwqO5NP+2TG0eF4n3Tprl4nQiQc+YgdqflcuB/xkwvkjHZKpk
+iGXOpJufs3z/fo8FkzKMk8+YMo/oRGP573RG1goHVy8vQhghzItF6lIDIbrjpD3ReXlz5pcW0+Sk
+HIOGPSFmuhfz76cfDTXAoyrDI5NBrx8DUFqTwaCbNhl+t5bjHjdHCcGO95IhEjHNk2LxGb9kvUTU
+1/vHS4jjkclZM0Bi9FPUXMRkuizTWyzoex7klUmWH0aeIu+Vz06q8lHdyLiay98YSEonEUgEOuGM
+fzJHdTw67Gxr1wtrK7DIQc8pwDUy/f69RtnVrRnt6hrp7TMZJGNG2TOjVm98AwAN4DKLakQ2ZmYm
+BrFdVjJQpki8ggM6kogkgeyPP8QiCZMi16nmzHImN98sAlgWCEuZ2fL9m3UghUqn0zEYiUBlvipx
+hCsScds4+fkRuPSIZEJmIJGQToiIjgaydBApL02TOrVp7uXI/DtLl/Uou7o0PV26d+9+/2NMN67V
+amWyYaPMgOWEdjifwENN+Y52NP8wQlsbk+IP0JggQ5VOTolX7R1hithzM7NmlY4z83Jch4z/xmGi
+IN+wTK/jTXK5vPx8hlqm5jDzVSqZiseVq5h7IyLCgK0ILwKBEEiKjj4brX0DPoMkfPTm/fTDrr9P
+95CmS9OuzKcRGDKZ9pFBpx02gIbge/3wsAxFeSjB8rMdy3ZZYjzzsWgvQGMSyGTlyGQfU+jxUi5W
+j0NJzpqm5lQyGcITtfH6RWqdTitr2K6BtvrirWlSpW7j+KlR6Ci6cRUPF0EKI0QTvQgkEinwQDjp
+QHhyWISHq+zRvYfdo92gXU9X12jrkGbo+ehzjYacni8xyUzDOgO4Hq3UToPltQo1H2XzOGqT5cXl
+ZX7xOC83PKVXnk8ikfuhUER71829zdeZvv9eh15mK4VCJdIH8aECk2J9/t27t5gzLS9UIi63jWuZ
+EsGfMjltvF5mWCBpIzUwgeQKIh44EBYBZgvrxigahdvW7i7NQ/3DIeUzzdBQ4t69MiWW8VNgKhZ5
+WGfUGoZlMpSDoijbYpkdXxni7+VPpLr4exHpBKJKPju3MAcMcdUoA76btXdcP2UCWH0q+fjIO+tZ
+wKBZLDpVW1ubSmSZ402qJsf7IcE4bfnEMDouIjAien30geiIiGQSKbqrW/mwa7T7YZdm6JlG3zU0
+JHymeTj0MYEg0QieP3+uGR3SogKjXqscHpNxebw2PoOXbjKJ1BocHu9/ZisO55/OolGYI2qubvz7
+Eex7VEYeiho1HgZEN6WbhLy2YrKeWcuCZZzb1y/mQR6oVKI+eS94jcflwGEyww78C+giJBOScaSu
+ntHRrqGHGrDUkOs6JUg4r3mo2YxLl2ofASz4s+fNEsNYpU4i06EslMtmMzgmE5drMuIDcX7cvbOz
+Y1SSHy5MKBgfl1kYPA6NIyAzpt7d85AhMAVA613Z+2fvDIZrlgvDgRm4ahOJFuZ03BG5B5un6u1V
+q/qYUJbXKG2gYTQughBNInWNDvWMdg8FhhlHn/81r3n+/NHCfFfhvj0Epc7wfOj586HuLmGDUa+T
+STlqXj6Lzc5ncSqnDfnqKYPRy58nIKsN6bhkLdoAdTtiSb3XfpzB4KE8I4QxYraewEA7dxh/xs3j
+XOhrIq6qjSsHEc19KnWiVzR4TzQ+rlOpuOPj48BZfr9anY9zHR3VvHukefjXe0D0YgE065r9a6j1
+9HYvvRHYGn0+2lPFv2wYU2slCh6DxWLT2exKvsqSz50Du/F0KlQx73V5bmFENj4+qbJ0PWwPT6Wg
+HJ7W8mYeMc/CSGxaHrbRdd2hQnV/n1rFG5f3YVOdfGEBxpdJk6lwalymGlfpVH35fTA5qHk8HkBT
+vxl6rnkHFlrnCrBkJqXm4bCRoXyU13BaKzM9x1QcvcsQzGuhxiUqLicxnUVdYPPZJpNlzKDL56Iy
+rXYenPPWPCnTjastyocP70VDuLGeGU3zSLyH+5xpyivMdSPuwFmJWrRuXKeTySBWtTDNy2Qqy/j7
+PJ1Z9VglV/dNjc/N6VTwOMSGCp1+bvwrBJ69ah24e364UDOtVBmHz+ad/lmiHpp4Pjr0fOIuQTIP
+OaFVQ2yxyCjPMsbOJ+t0MLGYVahOppkHVG/N8Ixj4xDJD9u7olMFldBz5hEc0dbGzjEwLMzBNXqP
+QqKWQh1LNFr4XpO1MH8//g/Nixls5MNWATXWmqew9vf+Uevzh/NE4MRVDz0n39Qw3d7113DDz+0a
+o3FfNCYi0NXQI9HLZAoFaEgmkwXoO3LDm7cLC2/BH6hKbbRghWaeHIcxBGC1d3XdK6ziKQ0LAMuV
+bvuRj21VJonerJVAy4dRRG9A3y9MRx8vzMsrzNueLB2bxbr0jNWFlvdw5rsgFlpHR58njz58vnT9
+o6Fu489YUDwHn/2cnZ19goBZHtPx8ryWIZXxQBsyA0X5XIjGtzAzwww/KRNNG7G0nH1p0pnGFtox
+WMquPWrGizEFwiJX7qL47N+oBThGrFcYTXCjiy4sPJuXd5qwNPoAnZMP6fx/iN5Pt997mN36EFL0
+oeY5UaN5aNTCb9n189C8xrANBsufw0+fzl4TNjphxTWkRyFK1fm0xHw+j9FcCTDegnILMMCPq+et
+Af5uwTwybvr9XjvWwe51cbnDJhMCw1r8Vd+rGzVjWr1Bi4GbNgJlhYV7PaApey2LDqeDxXmPrJB+
+Pd1+796v2GltHeoeGtLMNwy1apTK9vbC6I8/Tl2/b1teeHver2uyY/dOTDzvBlgTz3tQLspgcVgM
+AZ/HFzAAkhXXwuwk14RiqN5h7pqXye69a9jD43JZTOAFgS6Rz6yuZuu1oB2MIoZpyzxMu3lnvQIL
+w/ME0qroZA6Hx2tQdq+Znn4BmLIB1L3sIw1YPxyS9ABtmqGuVevz9u2Lzmu919r+656PPz59env0
+6NCPd1t7wGSolM/jUFEeG0Tksz6ICB1udnbEyHj3ga45mUmlqlS/E6QTvfaqdVotYjAMEwQKLYAy
+GfXgd6nWaGmAUMjTG41n86ILwzeSyCwGD/rexlXT2b8++rU9+2Rsd/dnlx/C6AAGu/twaKirK/ps
+XldeQytX2J137/Tx5cdPxu59PtTa3d3dCpVKxlCBs1jsqqp0FBsHMdcDNotOhvWVt28tIzoug4++
+XeBxyCwiwUuCSI06iQnUgxHXIIMJSSAVSKXTpp9b86rA8NFVYQciyBwup721deOq9Seztx/oIPW0
+NnQfkUIzHOp+CCE62v6wu7tnT3FV1543hZe7Tp/O2/7zvtPbRycm/hne+gUUZCUjv5nOZ/HZzc0s
+NsOKCmNsBoRUqbB7b2ffvuDxYfTh/s5CeWQOYwyRmsag/GCO1BplMIvoFBB+MoMxr7hQX3j2gIfb
+8fUkBoeBwYo+EN5cVdyq/+tZV/vZPKNmCOw+hF2G2oe6vUKqen7+XqmU/H46+9f1p09k7wsbHe0+
+dPcL8JeQxeLzeDDXcBgstBLcNWtFNmOxvJ3E6Hq7MPsW7MtV8xhkHj8fDZPpkB4jLCYwbxu0KBkc
+r4PRzaCzWH7O83CR5eX54y+7htHgV2jt6j5wdpVr19ni0fVdzw3D995ruiSjz2HI0jh49bS26gWZ
+VTIduaq99fSvHxO2Q0iA6Sf+0/MtwFImMjg86NOVoBM7n22xEoSRBjmhUr2bfWuZTGfw1GqUw81H
+0csMnn4Y2as2mXRGo0HH57MN0zqtYcw0NmwxFRauC1FHF+LwDFccVkZd3a2tZ6NdlVUajWb6r0dd
+zmHKoaHWUVdQsuev9vZ/HDeil6tcU6Xt7d9nb4/es+1k9rYDEKdQjHoJ0MTitKlZPBaAY7MqP2Ay
+z7w1g+1lU8BcJTwD1qYZvHwU7hoMiN4EQAwGaFQyiRaLrBfTU/AptdDPQ3egmNR8eWMgjc3BLH9A
+mPeXpvuvv9qr8gp79h0fxZgKg7kvVdfenddxXFBVdXxdV0/ex9tPbwxfk33iBJj++USDQKJkkel0
+qocdh8GuquSw6WdUGFFzsNi/nZ01j6jeLXDYHBaUKYsHUxlQxpp+AQGh15lAQ+AMVnMtLPpgfonk
+eLR2ihEdvSc6kBGRT+Zwurqjo12X7hUeL+wZlbZ2tf/zeHv3w26Nx9DDh3vCurq7j0crW2GIUXd3
+LU8vdMjcvCY7++PwHkazEn5hdiW9mrxsGa+aw2LhaJns6oXZ2bldUx75l2HXnOTxGBwgkiUAq/PY
+HBgheEYLBIReN6bVzWMvcpnG7kF/N02bVIafMxdvwnu8KQybGTHTqCxOV1dxcSFboyzMG1UaC7u6
+ndtbu9vBNqOjD4svQ5OVhiu7lA1dDdM/LieHbydvwzoQqlAqLYb5YnI68IVbxkqvZtHs3diVLPXs
+3GzYCnuPaGeJ2dxH5sAgxmBU81gM8B/K5nAMC4hB1qwja8H1gA3kNMHyD3uA7nK0A8n1wLvM+Hyz
+mcbicJStrYVnowsbWruqCqM3Ll23vqtrqOvhs7Duoe6NG9tbR//6q+ueMo9xOXp4+d7w7Njsj9cX
+ohyFab543liMEsiV5OqPT2///R5jmRu/mk1+Oze7i04naMZmZ+YY/HRgkQoXDsrj8Bh8BsPwDjFp
+eVqO1ITFlkEvs0xZX6N8YRkXexSymXPBPOacmUFjMBpaW/NawwsvR693Di8OP3JgjeY/XcohTSJ0
+oHnDo+6H8z+nkgqdCwvzTmbvy84+TUKlw2NzhvCx4nlD2c+Z6fTM5FT2xuXrw7f/3sBoYFfOWtaR
+aXSDgfOYyeHwq6vTM8ksNsrnwQfgMr5DDDqJjqNO1RqgOep0pjnoydMW3f7zl87v11+L5zDjmTNm
+shq9111YRVoVvmfPZ9mb8yA0t3MeQhGO/tX1cKhLOdpVdXzfvjBSduzZBuPPeZcZEqVRqx3WdkUD
+W4aey4TkdCKEFqMqPTN66fLft58+PbKw3JWQatR7sKCFcIAkVjqZCuYSpKNgMx3GlsLI4zOU0A11
+BtmYac5k6r10/vzVS5cuXWUyr3Gioh7PTL5hCbpbwz9btS+vWKjMG73X3v0Zd0hzb7Th+dBDkLGn
+cL3zvuxwmEwKC0+gVajROGw0uE4rusL1xW8M+p+JVCLRnliJklMZKJt1ObXrr+kdG1aFpUuG6Xwq
+g4xy2Cj4JJ2B0hjNLFSBiQh9B4ZHPTQg2ZhWAdUov7H/0tWrGKxL8RQKk3IwfiR/QSXo7j4bLjU+
+Kyzsafirq7ArGn1ouDfaPTo01I2ti3l5rT2FDcfJDeG/GO9pDbKNRjTVYGyIvjc6bTCi5HQq0Y6c
+Cg5jp6MQUNOG4a93bFhKMGioMH9DG2SR+WReOoOTz2Nx0lm8d5iIijHtlE4Cs9aYSa3V3Tj/76uX
+rvoAX+fPR50HWIAtSK5Cu7vzihv+etZd2Jr5l0Cg2RPdPa8ZwqYb7KWHruLCvYV5hc7GidFRHZqq
+p6cb0cwx08frT//aNX0azq8hdmBQxnFGZT6vsnJ++tGRIztWL5+eJlfSCZDW1WSsMUFLZ1HZHD4H
+gzUlgRqUSfWy4bEx1aUb54El8XnPqzcuXaLsj4LNMD4qKn5uBsXmAZnxmQAtFuoLM7UN7Q/nQT/M
+WkPtXdn79lXtezKqeaQVTqBnUg10kqEhfcyAMkgO2du3n3Z2/ifDg0cmo6mMKjKjErrJo9NHYr9e
+s2F1HpppdRVK5LFZrGoOn3qGTeKQ3yFTWoUMfAXO0usuXcWYuuQZf+nG/huXrp7fv59JoZyKioqa
+MaPdXWcPSJVd+ujiQmkVWD66ax5WV/B91x7Svm2fva78uapStu4/dycUrMsGOl0Lq8JyEoPBFgg1
+Sr1G47YsNX2Ns/P6VNj5GfPT7dnbTpzIPnkim0zmkKlUKi9ZUclKrwRoHA6dBbBgftAaGXq1TnQD
+czqc8/t9boCKAOs8pe381f3B8ZSXI8x/V0Wvz3wmLS4U3jNWtv/VPg8D/dDzsJPZ2a2a109cw6TK
+lp4ej4mJ/2nJbKlAoB9WOKxJZVxmSfUSveTevewdm48c2bBh9SpyKko2WNpPbF5z4uRJgMZKp+ZD
+cyOhGFnNrGohg8rikRGtdkwhWKdmQCJgkC5hyUC7dGn/JUB56dqNqzfAYlEq8Y3zN/YzjQ2Cwqqz
+XcPk4+8bJAJNXnb29z++enWA9PpJyxfSwZaeFumTiR4tv1mrl4wZHT52dkbRSg0q0T/SK09sOBK7
+YYPzBuc1DCHDMH869siaEwDqxIk8KIdkMBiPnp6cST+D9XI4yLBCxldsAm4A1t+X85xLl3wu3bjB
+vMFlwqercP3zhvVcFhRmotGFe8L2HdFLZPt++B/h1etXecWv//ckT/qkZRT21ScTMK7JwK4O69eD
+aIIwaUOXViMZ3nAi9siJDV+vBr4qLxtMJ07scMg2Zp8EHdMJLCoZQLEIDA6HQyNT6dAZEa1CKv4D
+EwyDxTx/6d/nL+33AdufvxR+No9wCUizAvrjBtTAeUa089Ll4Z99VtiwBx0Tvn71WvL61avRqtcT
+T85qntwXtt6JPjAhUUqGtWNLw9asWbPP2dlVIhNItMPK7A2xmzfv2LBj9WrQ0Qiwjqx6OG+l6ySZ
+TWbxOZVsMpkKy2QlDdIVRXQ3QCaIzkvWpLpxFQvSq5iCywSp0Xv+uHrj7wMPXVpPyvtMU+gcCPvk
+8UqNYPTV/ypfv35V/NerVy0Typboyn/WFR/4TKEfE+CWOzs7r3Fes8N5DexFAFOzY/OG5R9v2Lzh
+6x2bVzsf0ZwGPDtOHGnPPpF9JDWZSiUto4N0ZGoylc5iVLHZCOYmiE/4uIG5CeMJAMB91x9/bD8L
+lsJoumG9nGcfp2k5hQeURkZDVcOYZOjV6+OvXr16P/rkyd3wNQcORG+O7im+i+LpvOXteXnt7e3r
+Y3fESoYlyl/bT//e/uvq5YbVRzYcAeevyv7A08nY1RuANyohEueWmJxeTSUT6VR6PoQ+AvTAMwMo
+jCfM2Bg1GH8ehdln83h/3OjFYJ4HoOcvCU0yCY8dTheQJev2GISvX79+D0y9evXkifMXP27+7EIh
+W9/Sg/qtCsOYArrWwNR14t6jn9c7rwb2dmz49ciGk9mxJ2I3A65tGLAjq1dnnzySRyCFeRAjSJD3
+HDaVlslqJiPwpH+KMVtfspL0f5JdveFxNu/sjwLZyz/OY/a6dOPPP8WoKl+tZR2oaqarBV2Sqiev
+n7x69fr1kycT938U6vXRPRp2T3EzzyE2NjZML5NopBis7Ngq5WWlTK98GLv6xIbYDZBWJzcAX9uc
+oQX8fvp3wJZNIHgsJdLIfHo6h0iDnKdykPPnz4uxOryEQbmB2eoGRtql8x4//ni2VapAH4PfH/f2
+6/rVaplOpUtlr/9LrxaEpaJVwNZrYGri9fOWH1CB/m5PT0Mz7BBL9yxfdVyr1wj19+7d+70duzHA
+QHjvyIbVJ4Gt7F9BxjWbs52dP16z2nn1kfZH2dnkdA6BRCezqDgykcAh01jIfqvTb3ywEIYHLtB5
+zt/wPNB6Nk893vvnDADSqdX9PL5aN6Ue1wneKHiZDJ5A0P3qyavXTyYaLj9v+UUo7GnIJLvQL/Tw
+nJevco5WyhSXhUJZs1SpVwqllXplVTh46eTJI1i4bz65Y/kJ5/UaiQTV9szfyz59HOUyyenE9GTW
+GRqxmpbOQhAbLEUxkm6Ib/xt7RuQ7UwK888ZsxooUisAlLpf6yftV6m1at34iBq6/OVUafer112w
+dQmkz1s2KgWMfx1KPlRWnO78T/BRtFIqEFYp7ul+16JKIUkiBAgN/zwJgh3J/hW42rH8pIPrM1TS
+oNeM/PrridMMAYebTCYySOQzBHoYjYE4LEZ8IN+tFfeh6M6L+9U6QKBSqxXAk07dBsNHm4hLkMBX
+MvhaPT6u3qdRyiZev9478erJz5eftezcmkA/dmDztm2bN4PXAZYQFSq1VYwG59gq4T2lRNsgUKKX
+nU9kb/750fbT7audV51c7aqUSNQCWClPb7+MvZ5LpaefoRPPEGlEMhHxWuG0yPb8h8HhRm8fJphK
+rWjTqrX9QE0/n8tsY2IvMvM4OEkb7JhAF7A3rtMZBBOvXqdOTDz5nvHsPxcKir8twwOobVZUznuE
+UikqaUahHDcrBWxllVIoZKTuyT6yYU+VVKrnrF7lHLvnkVI51rAnPLqSISNQOWQ+h0zEleOpeACI
+rN26AkEQW6z33bjkuXcKQzUGoqmn1P0iZhu30DmEI277DebaRAWHp1Zp1ePAoPVVzK4nr6tGJyYa
+jJqWljJCkN+y5XCcV0MYrAmXCnjSe1WrsFDd0CBsqFRKhJJ09okjDoxh7TB6b82q5dl7xhouZ95j
+CAQyLZrOSSUT0yNwhGOZRCqVQEQckEhkCeK22Aea4iWxJ4Ib0+nGMVgqNY/LjKfwRap+zGF79+gF
+WqOWwcb+ukonn/zzT1HXkwk2RGnLnTupzI884r8gYaiguiClNjIksstrVmHErVkTqxQK0Kr1aGbm
+8hP/ZGi0yuFKZ+fwNQTZcQYKY56+QYJWn0lNp6an03EJ6XQWu5qFqNUuTvbIiq1uUJOU8/u32i4h
+6DD/qNXgKCZcTlGYXM54IKrXaGGE1Wt5f17i0uQKjoI38WRiXnP/CUHsuXKl1zpvFxfn2M3Q+QDK
+9j1oZkNs7Nf7nD+EqlKi1Gw7smNb7I4Nqdrh4WHnzfvC2PmZEtQoY3zPMOrJZBqeSCdSyYQyOoEA
+8xfydtbCXLx4hX+ym9NHl86vxOPcEFtgCnTCcPF4vH41h/k94ZlWoVEOS7RGnY7npWJq+B1cdHTi
+7sTltviV7ntbDhG24j091mzbvM0Ka/l6AnnVx7GxH6L+4zWx97okR3YcOblj9bYwiVb5u3P08qW8
+vYwGXCYqYcge6QiJdAI1ksxJJxLIBCKNRkNmFxYW5rwW46mR/ms/2uWI88fh19rgdFjNqblclUqN
+9qfjpTKjvkqrUUoM+rF5PS5M3dGRqeJP9OSfX+no6ecV4u2SGImz8whfv2b9ZmuTXpW6ahVu1eYj
+JzcDLOc1H+/DBvrt27fv+XjNo4ZHEqlGtmZ4nZZwKIwhE6CaVAKRcJxAOkPg0AkQXmQ2HeHMzVgW
+FtSBOFo1zs3JHWeH98dHOi4m6MatSqpVYTQ+TaCVSmCyHgMRpQIJX9pM4hMkrPiVKz0Ptfh5+eM9
+3ZMPkTqqipev+mCn9ZWrnFctX7UndjOw9fHHAK1KWFWJCvnCZqmwgJ2XffrIEeiN0MmzY+Fe7JGT
+sUf24DKJDHJqJCEznUpG+pn5phcLbxcIZAaJisMT8JFutEg8fvExCkJzAAAgAElEQVTiRB6NRqUx
+kiOesSRCQQeq11cq2Jk8CSoF40uF95555F/xD/RtcU+IiHAndrF7YFv8bDPk1mbnsOOACjhL/Ocq
+q4ZwZaMKvUBRJb0nUSoLTgKi2JOxsScAElxO7jjyNXzFTk9lsziREVR6JBFh8nmJjLlZ0JJMiCAS
+qfjIyMgILzx+K0JN1yuf6ZWZ0ma9XlAoUepQxQqtEtVrtbCTPNMYcXeD7fEB39oWeK3wCkQKhMpo
+V8xan62qOv5P59UYHOhC2CfAlcnmC5olWgVDoIcB7G+KYr+GKQdgfX3ESheBUElIJxBJDLwbGRkh
+99PaKObZuZmFESqNSPAmEomR9tRIIt6p6ll15TNNcyYPFWoipOwqusdevURRqddqtGNjGuHe4ig8
+zveK7aeIA26xDYIstd+Yt23bhlWMj61zDeap/zsEIdrQrJAppdoqo2ZYmA1kHbGiAh3hFnDBSSeQ
+E6npgbhkQjUZ+b6ZmajmLLx993Z2do4WQiCEJBNxkZsicfjkQimPU6UnsQSXG4SBlUtxUzqODjUY
+jI+M/HVBtMSVdiu9Ix2vZHwZY+tlu8hlyRK3FeiqNasyV1nLb/2a1VZc2FXwDOVkCirZzc2ZUqGw
+oSrbCgOYOgnXEyf/JowEuAgsAp1OJRIQESrKj6fNYa9JL5jNkzgcMZlIOOONw7sRMzU8dnNVsxRF
+ZcOHpDhSqkrOUejJHkRKiJ2Hi4ud0zJbu+SWCxkZy2ydkE1OK5YsZfxzFRvm5c0bQDgrOOtNs0Ao
+gxkNrYTxkU8SKKtOYpCsULBzIvbrr3fAXQIOZhvyXtiAmhMRHvexnMOcs74mvTA7O9OLs/dPTj6Y
+EBmCL1QqaJkyCSqBBhnBT7b/B423LCjEHW8PkJY5+h20t3dZtszRYy2ChBxc5LQCsfXaGLEUe7rN
+R6wxah3n16zpqBKmK6ua+QKpIFPKFwrZ6bHYN30NAoKlrBpa2UsNYeCo6cQQIv4ADaHJ56wv3ltf
+wLdSluhPI25KxuMPpmoUCpJWgo49yw+xC9nkgrA3uhE4HiEu9i5Ojo6Aycne0c7Jzsnbzc7e2w1Z
+ZOv9r/Ue8BQbNq/5/zvhGB6IlUo2n13dzNbypM3bMKaysSrEjA+4dmCfoxOJBCqZSqSGuKQjIy8+
+YAJA716quJUy8zpi8iY3fzwRL5QI9FryUv9mDx7Oa+USO/+DibhEew//EEcA5uXitNI/xH6lk53f
+SlubJTZO3o52fku2EVydV61atTn2623btleGhWOJVQ0TIyog8arpPzWz6TBZVEJb2nESQ7LjyJHN
+Vi0xEfflh9FoibT0ZDqRiMz9/nLmxczbmXFVKqmqsKpYx4zEEd3cbPyIOLKfC+7MErslfrYRXl4u
+9v7L/D3s7Vzcndzc7J2cltjZOa60s19pix2YQRAbWxec68d7cf9ctXyJ6oAgLL2ax853dj4kUDSn
+VzVXS9BmOptdoOgQNLMxu38da3X6jg1rTmDBBTGWXUngkKjkRAIbYOmw1+xTM6uqqgq7CruLi41u
+/v54HIeJx/u7ONp6uzg6uS1Z5uLm7ebiZucGLHpZxbOzt1sG+tk5bvK2tYVwgBsbpPzZpkAGdVW0
+tDJMquCwFXwWZ01EoQAlS9IJDWx2cyadRacLq4TszR/kA642bN585MQRsPzXX8eeJLFYlQwY5TkE
+GkJKZXcLq4qLLxRbTw9UA49FY5DT/fD+NlH2tnZudnZOTnb2TsscHe3c7Je5rXBzdLR1tANYANDW
+ztbdxmaZLeJoiySsWAz47Kj6Q1R2s4BPpVVz+Aw+n82RCGRStl7IJyUTIujNLKnwQwVisFZtsAYr
+UHfiSGx1KpnHYHMi8pkcpLCQhKHRY5gy01MFAhY7k1AtVXOT7Yk2Nt5RAMnxg7Xt7ezsXNzsXdwd
+7UNwiX7geUcMGwUBumzA8EgmpiXOjdPMIxKquXw2n1/JR8mBUr7Gi0QiaAUCakREoFIgFIDFd8RC
+JcZuW+VgkEwfb8BS4shJHiOfz2JdbmaTWEhVVXHhkuJigEVqplc38HFUHkch6+dx8GcOui11snH0
+RRy9neyX2NsDYUCeo523o7sL8RSOaGtnt9LOyd7WxhYzlk3CMQC1CIl0IzTzBJCbEjorvZnGRllV
+qD5QGFGpZDdLIwIPNYP7IbcAFhhq8yqHn10f/UOCdceTsZdRlJHPYKEctBkp7inMXEEkLA2LSKdX
+MprDOGqUw1Tw1OgKhOi3FCZ9G28nWycQzc4eXYYRBsfN3i7Ej0hMDIGHHW0Wg61sFq9FPIAzBPFy
+SedII8jNPDZfyuBn8s6wm1E9+RmLrtBnZtIjSGx+89ZsTDcsrTY7L9/j+r3rFAgJBSnhMFAWp4rB
+YTGQYi+oyEj4jwl0N7afy9RLFU/NQWHnsVtMxW/c6uBgv3hRlK0jGCvfNA6wHEE6u35vJ7uDiUEH
+ExMdP3CFICsKbBYhANDf7QykAJvBaj4jYCvYzyCq6JrqZ0Q2KhRmRpCaISAOWTPLOj1sXr4ns13w
+1xGrwxpkPC4D5fC5KA8hFS8WsNMj8CyaF5GWyKH0zr5Uw0DM49kuPnhwKf5TB4elS2xsoiAF/E20
+ZbaOK23hhmljG2RnuxKOVTg4gYE2GFcI4u9dzRZKq9VzfH5zs5RPJ6RmCvRsQ7pCyhY00wsKSAXp
+EQBh24YNq63biHWtPLAv/PTpwoZ7LFTGYwkYKBcpLF7iT6Sx6OprnJC9ib2UoF75y3xUzZMucYvE
+OxBXuHptdPByRHztFwNTy+wW29va2jnZfhRi2+sL4kIw2H6AswyUXATO93AjZPLSFeNtOgIAq7RP
+ZnsptNi/+GBnSprT6R1seqbX+vXO2JK0fOPGdYSIdGpycmYl1TW60gunG5ahMKpzeci3JLe1uDBg
+J/FaCJ4XJRYze8VzPDWX4+cWgvvHprWBDncOLnVYCoQ5brKztYVscPzIEUhatAvCyg5kswE0NoF0
+K2cYW/hqIY+uE7X19ikYUtwy+5BkxQopIV1I1Q9DEVRL2ZkFdBKAA0DpQF86T60h85sv01exIiOS
+1ybKZKiAiyKHolcgLEE0JzERj0+ELYeZSKH8MZfPR528CoiBuE8dcGXJfiRXByfEJgrIWWwL2tna
+LAKObFeCscBPcIGGuAj5W8RIPpvF728T9/b1tnGI/iEHvfGZRgEVuqFWoqRXgdUyC5olCgkd9i86
+m0UcQ7V6qAVOdPXWrZFe/v4MAQoiZh6yt+UxI2HbwOMpV68ymcAWpVe8V81sptqvWIQ4uN5BqAUb
+jzn8w87GMXixo52j7UoQDzj7yKogFu+LETzmdsC1aNHWRB5B97jvtzYV4BKJ/ez9/YmsBkE6XaJu
+lnbcKujo6DiTUrA7t1zQQc+EAYylpLPOoFAcqahXhNfWrVuHZSpUhhwqXuFGhL2fgA8RX71KaRO3
+ia+KF68UMVleZHDzsTKHsiXEAocy/6UOKxYtsvGGPPgIEH30AZD1YrM1AUP1N11ubFZfW19vv7gP
+6GK6RHok4qUCBalSwkaTy8tvdpSXp5y7lXDuUyntDCn5DCFTq1cUXKRXpwulLA6BiHNrmNbpVEhZ
+uf+SgyFENz9i4kEK86pYLI5nUpbgKL+JtXSvKmo6gVBmSyxfXs7Bd2x0WGGz6BTU5EobW1uwvjXe
+AU+CFY7N37d0Nr1PpFL1ysW9vWJmiB0Oj4ctNawSTHVRm1Jefqw8iT5lniq/2FFdzaYWJF82JieU
+l7PpVcKUn5TYXwvL0LFEpDh6hQ1MLN5U/NVTFAqgEgM2BBdACRKL9DQyKkFR+4MFGzs29d+BrICw
+2HTQFmvMtiGnrExhNCVjeKzEQS1K+X1t/b0fTh/FDVorXi2dS6iWVm9JSUlIKVC8tb4dYGYq4kxK
+QkH5T2HG5JTylJ/KO5q/++6rFAUqkml5RCTz1grECR/iz6bAEbe1tV29RmEigRwmLd7NBVedTKXx
+kGsFyzuotreW36IuddjoiHjb2dMEKGGRzQflIgMRrBoXwQF4dHx/G4go6u+X98lFTAoNH5mIoqLq
+amVzZMIUNgCbsX8h/2KkoyDhKPFiykVSx1cXU86lnMv96lzoN999lXCsYOuWSOTbTK9N/geX4Sin
+KNeuXbsqvmoXQsHTilksBgidSKjSGbTkjQ7L75xZ0rG8g0ftcHBd6kaTVclQW5sPVQhzw6L/C1WH
+JStSf2vrF/X1Wt+j0SfuE4koFPtKsZirWrC+V8KsRpOD1HqT7ndpOZD01VehoZHgtZRz5QXlX33+
+3edfwQd8Qu70k1ZssvdiRlGuMoEuoMzpTC2dTZrQK6RapdLIFMlZ/6icC+Tbd7jeWcZpdtjp4IrX
+qbiUxR9sbrM1GVlkTXgbZOv6wGpy/29tIpBPjr1RBNwl6m071TYH4y/QpJJpLQaTF30Ylei0QmAo
+NCWpPCU0IeVWStLFi1+lSM98/nno59hBDt0+lvGpk39UFOXUb0wxBgvnVj74XH9fr4cFWNDXJpe/
+nJ2Z6bP9qWNjhxurzCH6H17+qIq3GPlgqEBYEW0xsgCbrd1WYr+oDeMKMxZcgTAA1kvcO6Pi6ubm
+p40N8yg+XTtvnLeUnys/l3vu3LnylJSL5bdCL15MKd9apTVu+RzI+hxpWlXj5XbmKpD1m5TJDKZQ
+/oGLbH6q1GieKaUSqZop2vtS3jvz8qXXWgfXDpfqso1fLPXCCVRBVkww9rm5LVmy+IOGi+2cCDym
+WC63IsL4AoDWf65/jTBmMs2PyEx6g0noRnpjlCokR89dPJdUfuviufLc0Ju5Fz/9KeGrlOSI5s+/
+SfoGYA2W3ixY8dup365e43RcDabcunqN6HduELZ8/YSgUiDqk0NpTk7KRV5TLx932IH5A1eQidW0
+vxsz4u++zNHW/u+vbM/g+8S9/XKMK7FVwz5MR3E8wV+pNUj1BsmccgxdRpAIBIJn5QlfAaTy8u9S
+ys+lpJRf/OpMudaLkBka+s3n33yHDGZ863/hzKlrd57V3sqPv/XbIL6srKP+7jN9j7CSzuoXcUSQ
+QHVC6eTLmRnXxZD3Bxxc3MIWW7PAFtnq62tjuxgP7kcWBbrhOH1iEXD1+IOCcEBAeS8eYlLZoIWD
+6gxKgUeETlClNybc+hRsFQqZ8dPFc+cuJoG1tFOpR0PhfP4dciuw9OJtyq1bV8vrk6s7mO61xWWN
+BVLJs9sTQjYnv00kEkE5KYW98rGXM/leK+wDN67ww6+zqoYtPFG+to6brFwttrUP44mgF/Zi79jC
+fNX7B5DV10fLv0bwMpr4YxKhbnp4Dl1BNGh1en1KecTum+cuYrhyL14MvZhScIsHgwtg+nx3KJJT
+P/C/xvr7ndW30tJu7d8VdeXKsZgBZc+EUsrmUUTYOzmAgLoWRQY81bopYCzQwd/NdjHWm5FFZyK9
+7b38/04H22QC5IFVuw/OAoR90BmpQWJcsr5KJlNrhZWmR6y1yaZh2fwzaEIp5UkXUz5POffdudCL
+IGRKiixfJZNFpISGIrk1dTWDt2sHE7LKqJAP3ndqAhvLpMI7yo67zGIpE2NLdKe8pu6JJL9X/ueM
+8dm/lnDqP3jJ1svWJtjRxfvvfFhMa/tNLH7c++djSCwga7xXhDkr5JpYvJf4TCtQSLRGg1ai/ijf
+1CAwjKHQc3LPXQQMoSm3bp0DWKEpP6lUYzCbHQpFahubBorKam9V3z5DaztoS0kvq/k0uudOzx0l
+L/M2zCdiOVNc1nf9SQ+3lzIp7526/8W/PmkCa5WAhivoiK+jk5UqR1iJzohemidBwse9j//mrE0O
+Q8S1NtFW/BhD0lCllQ4bUE/3qXmtRjMvYe1OSEr59FZCaBIW8hfLz1387rvQFDUDVXHHkNs5jRUD
+nbVHa0r++5OLLcXnqc+XS5tapMrB23U8LmgoEnF5gzk1d9CJPlQe1Ntzq+JW00s7+0WfNA4U/QCI
+vBd9CHnbrSGPpybNj/98DJMDxpY16QFVvFjURsQp9bJhY/PwmCTI19H992fzz+YtFm35sYIc6Dgp
+36RcvFh+8RyU4OehW44eUjFkSEVaRVZp0WDJAIfI9DoYRUksc2hMu62821RzS3ibAXUIP/lJS2NN
+vaxOJZbfKbnVlGu4cwd/6H5n54MaqMcPJrOxcZqSPx6fmpzsHZdbqcI+4HoN86YY5y+TGLVhhgaB
+2tPX0/0jT5kRGDMqCj49tzbl1sXPv9vyTeTFi+cgHEDJBJ5ChpSl3SqpiCtpuTJQXnumsRxGjbqK
+ptrSK2V3CpgTmLOArydPazrr79TJ71y5XV6Q0nH7SkdOUw3A6nyC/Ovvdrg4Iip/3Dz5kiPGmk6f
+vO/DEJEoZmJFg4vE3scyZkhv3hsQEOzu4kleZ7AYjYaqmxiW0KTQ8tDPQ6FFJmzZ/a2Az5PJkMHc
+usbDWU9zaq/U1w90NOKEt12bOsuartSxrzHv3BEz29pEgs4H9U09d++I6nOkt6rLSosr67NqBu43
+Pe388lnN4O4lGFleEZQAN2abGADJe/+Uy4HlfvDZb4l9EKdML6JCNjz8jD3MdA/wDvDw8VT7Buyd
+15ie7b4ZmvTdFjA98JRSUMCFSV4hgxuk9lZO7k85jVm3G0s6W2ppA/EdMSVNX5aUsNKZbew7orYO
+MffBwIOSu50tg8315RUVh7mc2wM1pU1PSh8M/O9tS0tnzZfYmki6RvG37wVYmN3/HO/tfQygemlW
+rtrEfmca9AqUzeIGB7kHBPgE0BYC3N19UueNkt2hX6VsKQhN2fJdAp+rFEgEqFomkSmQ3vK0ChAx
+p+ZCTU5jU0d9SWNWXVHdhcxA1m/MtrtoG6f09tMHJU+L6ps6mtJqbyXw6xv/N5Cb1Vh3p6O5ZeDC
+QOngU8TeyUvMvObthr3n1Jqj8slJgNWbL27DeqJY7OKvZZgUmeTgAF93n4O+nhtZbQG7POFY3kSk
+YNmQsDbSSyKQStRqNSpDi0lIeW5OY2NjVn3J4Zqs0sbOpv/VlnQ21d05Sivj3bpTdpspGiht6uxs
+qocgaUrKyrndWNFYUdpY23is+EFnTXHJk8GaFTZOETQx0++3ZcDLY2sjhJocn+wTwbrSa4WFx3co
+XigY+b7uUUCT304eqdcnwDPAx8dznb4g6ZuU5MgVhGZpM68BuBKgdCIBSUrpz6rIyWoqSiv677cV
+jU2Nh6/U514pqn96/7b0TketGB3kXq9p6qwHLEmHk0DFiqbGwZwHFaUDNTVFdwYHmzpv27gRKZS2
+XooXcIW9oZU5CRJOyvsoHBhyxNhok0iUSLR8XnwAHM8gIq6a670/YJePZ4Cv7y7Pc1u++nxLaGSq
+QoYCUwSphO0ViGypflqbk5Z1M6si42hj47HGmoyciqTO+uY7VzoGb5dV8Gru9zTV/fK/uoKcmP8e
+zspNyskBZEcHanLu375S0lhW0zQ4uDjSvhomSGxoAAXFbXinl+bexLZ/i8S9UMr9YqzZo6iWFQIa
++ga7B+FCAoKCMLL2x/vscgerrQ3dsmUrnY+9yUMm4/H51XTk8O7QnIGKik/SauNKs2pLaxqTsHyo
+aKpLqx0cqKltAkkH6ls6n3YOJITurtgNmVxemtQ5kAHKDtx+0vmgZcDJjUZdvBcGyF5riMpFm/Cb
+2sDrbUzr4NUvHu/rJSjZKMM3wC8gyCcg5CC4PioIuMI+fIImfTx9zl3k0PgMLspisVABlCKyKHRt
+aVNOWkVc1s7SxpqY2tvf7s7NvVMeN8Cur6spKRlsyik5mgbJWdNZ09iZlpR0Lq08tyKuvqYGlC3p
+bLzdQvUawHn5E53wvRQK8PNHn9jff1Nbm1jE6cVgQff6s1eFkzSr4wEFplxwQEDQLtAvINg3KsDH
+d8bTx8XTx6cN5eNwPImAqxCwBUYk1MYW8uxwTkxORUZjbtPO2w8Scivqa2+V196ubqqrqSgdHPwl
+7WlnxvWMgcak+lDAdbhid1pRTU3pg6YaLFQvdA48n8hMdvGyxd5DB6NWm4u3G1DVZt2qof3I5ZPK
+QCkmobd3SEBUYlD8Lt+g4ODgoIAA32Af5q5d+z09fYkoH+Wx9DIeqh8bM0qQW7bekbufNiblxDWm
+nSttqk06nOzPzCp9Un/zdm59SU1jXWn9D09rajKeZtU1JT0Y2J0UerSztKSmprak5sGDEoB2vfOB
+5vkMGU+NdPJoo1yDHA1xcRNxxG0fogKbCxukYdogoicIGOAdHL8/KChqf0B8AOSDT1BA/v4g3/0B
+wRQ8Ts3jVym0MGUMG7RIym5Hty0JoXH/TalI2Vpau/vTssPM5oLcnzqarjTdvxnT2Fn3S8b9uqaa
+iqTrnTWd12tiOrIGQNCaktImSIi7yuvX7w/MPTERaLBSetlfa4tnYpMDJHtfHxZi4t6+SZ1ME8EL
+CHCP9/OhxAcTA+J3wYUC9gKPxe8P8PX0gc+JyUT9lHbMYBw2GI165CKyyC0JGmboUaccaNo5t7Ii
+crk7axrLsyClYm7W305r+iEr7X81WVnXm64XPe3s/GSgCDPawIPOB0+bwGIPHoCSRlWNndcZHNHP
+vheUBDS/WUdmbPzqndKjmTjIK0gpn+CokJCooPigqKioYEpAcFBQfEAQZjWKezKr0qiHeUxpMMgk
+AuRW6JYVbklbKw5nfXW4MRdqMPdcblJZ1kBtbdJgU1ZuTUvalYz/X8svDx50Xm8qfVBTVJIBLbq+
+EwzfWVrxGmDVF11//p+W651O9hwiMZFo79KXz+QwxdZOLW573DeplKBMJxoEVkDIyr0HgzwAy/4g
+oCp4l0/wrv27fAL2B+8K9ksnEk1Gvd4o0cPNMHJxyxabrZ8m7HZbG1eRlVs6mFubW3EzJ6O+FqK8
+EyvFtIy7D5qarjc9vT6I0dSZk1XTCU2xBmzVWHrnP0UlA7887WmBecKNgyNcIxPxtnvFTEov1oj+
+gHGiTyeV8iCvooJ9fXxtNwUEeAQRg+ODg6OCg312xUcB2Kj9YDo8PZNuMDwa08IIa9RqkN1LtkAH
+/+qrr775b86tuMba0sHaT6/sTEqLS4ImE9eU03Lsy+tFD4qeQr+uedpZc71kZ8n9B1lPi0qySrNu
+3cyqKS0tGnhwHaTc6MZKJi+pJtITXbz7mPlMa9uR9042C/w93b19fYIDfLwd3T1t3QOCg5nBwZTg
+XfHxu4K9IfWhJoMTOWySXjOs1euHpQajFvn01leLQrcc3BQaGpdUW591szR3d+7RnbW743bGZd2B
+BwZ2x8UV1dflAk9FRTWdvzTFNAJnGTElOTlZWf+pKK0By9cMdD44lOHFodLd3DhEWiTRzq/X6jCY
+BPlS6S6gyh1gBUT6OPr6BwUFUXwh5vdTvOMxyqJCKJ7unjQanaw3aoyFGr1ea9QgVwbr1+6s/3TL
+lrWHb547fA4iPukcdMkrScdqUy40lSTVlcUMlGVk7Wy6DvZ6+gCyvaSz5mlcY1IBhNbTitKcphIs
+vq63XPCqxpNdNvGI+RwqEb/MS3yNKZfLUQGBEhziDW3HOwiPDwihRAFZu6J8gjHnBwdDEQQx4+OD
+gqkcaibUoR5srx/WKpFjtYd255YeDf3mHCTlN9/kQHrl5BQcPpz7yYWSL2I6y8q+/KGuJKuz82k9
+PDlUXn1NSc3A084m8H/nQFbF4ZymJqDr+kSPaCsr8Yy9E4tKc+HSiLCp9VMeyx8TBBwsRHftig/Y
+RYkiRoXs35W4KzhoV3wIZVdAcIjn/nhKPNPXx+dMMlFoHNbohzWY57VIQu7tmJ2/xGTUJsUlhZ5L
+upl1M+fcYFJSVkRWVsXuw0nffvv/xtTGZDUNpO0c6ARiakprm0pLmppKAOHT6yWHP4mrB7z1Ay3S
+Ng4tkb7JqZpIdrMjEmkRmxbbR+LQZnbQLnyQb4B7QBA+ICo+0TM4HsjZHwIpHxy1f7/nfh9KcFCw
+ry+eQpcCHv2w/tmYUa9BjpXdzI35V13dJ01l9TeTknIqdiedq01K2Z2R23Q07tu0gZgfvtwN9t4d
+05TTWDoAaB5kdGZ1Xo8Dr3UO5MQdvo7NEKWv38lUai6VvAREpLk4+dMIHCLe7tNIBp8TTA3x2xXv
+4+Mf4BcVEuwTAoYKCIFYgOSCeSJ+FyXg1C7PSCdHmlSvkUiUj5TDeo0M2flJTcuFL2Jqa8DChyty
+QMncm1dyqr+Mu3D027S6tOtFRWUxO4vSDh+GcC2twVh6UPTgaSk8/mCgtjymZmCgc6Bxoq7z/fu+
+/jaciwsNT/O39adTacRTxEgijxF08GBQMD4gKMQfUjQI5iuXAM9d1jkrGL9rFyWEEg+UeW66FrnW
+YNTLDHqN/pn2kQQ5VnDll19aMj75JDcpruzwt4czfsgYWLskrqKorLT+zp0vD3/xbd3Ow0drf/kl
+rggsVdGY1QQ96OnODJAzt6mxqQTYamx58uT9+3fvVKcS8USeH83F0Y+YyPP2oyTieKcIUHkQ4yGQ
+7vFQjL4wYAXHB+zHCjPY99Quyv6g+PgAfOS1xTyJTKJXajRKrUSiQOrvlv1yKKMoLS7hcExL7uGM
+ppqiDHi2mrqytJKSuKKYmKaY0l+Kv/22riSuqan2h4HG0qedT7OyYmoagd/GivqBzpaBJ/c759+9
+e/+OnojDJUI52uKpNJ7dpmsuWz3z/50YEgVcJQIuKDjfYGAKuk1wsG+Qp6+7OyUeEtV9hR9zE1Gi
+lGj0WnRYJpDoh5GjGWV1gxcy6spKcrN2tpTW/VDa+cPtumO1g18eXftpTkZWxpcZOXFFGSVJh+vu
+l9V/WVLRVDRQFFe7uzQmJysNIhVKMqtp4v37989HO5f4E7cSiEQ3OzyVynPaRHNJ9qfkx4cE4YMS
+9xJ3RYVA24mCYSbAB1B5RgW5wxQY7Aup5eZmjx+TSqTDMlQg1ChkQgmSdeXCjxfuZhRdKK7LrSuq
+v1ia0VmTVdOUG1caU1R7LO5K0xedNTHH0oqyvkmLiSspTUPzVvcAAA7iSURBVCqN6Ww6WgNNICer
+IguWk86Sifv1E4MTdQMl/7O1WXKGSk12oR6knmlzcsq3K4hEiPG0gyGE+I2UKArEql8ANgb6wKTs
+4xskVpDIAYm+nosXL/FLHNPD5qNXSpUC2MqESMyFspILx9L+FbezPqG+vu7KlZacirjOc8SdFRkZ
+Md9mfJJ1IeZoWVZ9TtqxuJjSopja/8Zh43JJ0rkVKXFJSYOlg7AytgzeHrwPprextbWhHaRS8cRI
+As/RneaYcCwhckkIII0ghuA9oOPEB8SHBIO7YJpAM6ksnPvKXZ5uyOLFiyVqpUQqgUrUCyolAhly
+7FBBQVndnYyyY/W3d+aUlV3JHUgafFCxe0XtziKHmM/KAc3duLhjVzJ2H03affhm6c1PHAauD5Tu
+Tst5lpPWWDtQUau/Avbv7HzS8rwIFtlFNv7UxGQqleXmeCaETidFJLjY4cIiKHsh4qPiQ/DYFhYE
+ceWDJO/y9l7p4/ORvdsmx36QUCaVSoQSoVQiUEqRtFvl3xZ8kfavb8vv1FzYXV4fl7Q7Kac0Z0VS
+0idZ0TEZMVk7M27uhFpMKMmIy7kZV1GaFTNQ8/SHmlvNFbthB8pKg4mwoqimvnOw5oktstjWZtEi
+mHBC8Di3TTR/dgG9oCDiU8SLFeGRGB8VHxACrSckyhfyIcB9kY+P+0feK7032bu7Ke/JFDAAKQVK
+OiqUMJTI7fKjxYc+iYs5fOwYKeNQ6OG4krhvcko/zf00NCv3aFpMVnXB0cNZpUVxZfVpVypyyrIO
+N4GjBjpLMp4m/auiIulmxUAW9KWmmrqJNwveyJKkRYsWbUVoRHwiHheyKZN+hk5POPapPxJIT0z0
+T/w37GE+8TCMuq90911pY7PyI+zfLnj7SaRSgaABuBJclgiVSqUQud1Ev1Nw4W7K7rK4srL7oYd3
+1pTsXutQezM3Nyk3Li0trjhmd11GRdat2ty0mIqjtXHg8dpbA6UD5253dCTV5+T2NMEM3dT018TC
+/DsEgeENWYRfbOuEx3kT7aJCDtGP0en05IStizYd9AqKCvaDRhgMbHm6r1zpbmNr47gSWfTRJrUE
+Fcpge20WSBoawPKKZuTCj/Tcrz690HjoduaV64P3c1vqBpouppzLTdm9My63Pm13UVJgxiHs3rmk
+rC++uHn4/8kBtnamgc7PknKaGktvP4PFsvG+ZeH9whs361/72BzcZLNoE0wRXmT/BDomIy2ZlLBp
+sX8AEUcL9gkIgiHHJ2DlSp+VH9mstEXA8A0CkA9VoJIGVrNA2iwUSJGMQwllh1oyEo6WHTpQ1nKl
+4mhZS1rSlbqym4P1MSUxh8tiSnbHXbmTlXvlVm3OlR++LLpyG+IjKebwucM5z3JvldRcqWjKGHwz
+aMH+H1v2CLJoyaJFW9ba2CRTl3D8/SPoyXR6QfKyZmpBZMImFzfPEL/gKHdvENFzpeNKR19fWztk
+EaLlC+AoLjfzpEKFlC3MbBYgF1IKDsXdTjl2rKDs0O4LFzquHE67Un9/sCYnbTCu5pOYtJgv6i4I
+i+O+3F1f9EvGL9e/3F3UlFHxr5qKnN1JSdIcbFAs/f9KuN6YttEz7qNFWsWKWr7kaDgWifY4REqc
+Dz45Jei+nPLnNFmdbCQHYWe2o7MU7sKsKJEpFZq1kBQzpEXQxgdtUQnVqSwgyrLqWFRl3brdwUEL
+tB9mNBiX+VY0rsaKRGCFk/b67pVe598H//w8v/f3PG/e933u3Ts6enVycnDSdP5UndVu/mtZ5RZP
+n+pqYiVWkkS2ts4mAoNZIHt7Y7sbBKOL7zVcPH+2oeG8uUSzOzMDVPThQu5rZX5+NreSWxidhxKC
+JHcW5UVelrN8anlYIJhHi6jUn/4cR3wMhhAJRgIKlueFxLKQ9HVG72Yn78SjnSDXAEH01dzck6lr
+I/8zz3AfHN24Gqprs0LQ6aq3nNQpACsYBMwSg25rnbnVQCTtNY3tl7uuXGl4r+FnF8F4fMtccngI
+sMzHbs6M5RbGlNzDm7lcbh6iZV6mB2NenM++kPNzKYSD5SlyuINJMzSCgfakRcCYuC/hA23yevT+
+7dvRO55ounhtJEFw3SO/v7b4+qjw5uTN0cG/Qh2hpvN175rmcoarIHcTKQJrSYFaa21MDAZJmITP
+Wl0T7vcvN9SbE7T3AK+qlpQLEYBkdHbs5sxsZn40LM4/nIW4fDyVoi24LOND0wJOk6RMp1BPf38S
+iz+im5sJDKMJTPDQSTqezc5N5peFRPR2NDH3qBMjCiPTyel/SycHANbB3rOO0FW3v+M0VPWu1dUD
+Qe7GMMAiifgpezUr4QFKJFncbm1sbXU1+OsvX/mpuRBSNzo7PruQySmZntH58TElI2YeKhVomJgi
+ORnNysHBbCrrweZexOVUmsFRIs7w3d0og8WTQhxYihGwLPby9vJdLBpt8RH8Yj+WuDY1NfemMPLf
+w4PX8Pp+CSbbqVBH/emzVmsrVQW1O0VSDJKkt85f3QdolmnsG2RFr63a+37rxcv1Z8x9TNCsklHC
+8xllbDSWiYjzmZgSZk9OIEeedQTTJH2umMaxrBBNI2JQofN3ibTAhDg6GvfFk0wWo30pT/5efGou
+cT2aTTBEkU9JQ5/LRCca/0Y+ONrxtz3bmyUjXZTbXeW0WpvcFAS5WgNeW5j9Y2W1q1oSyUCfyyaR
+eNDb9q7Vzl62NprLDEsfzM4osQXFPPAdjolsJhBWxEoFks+RJM7BeB+HpJBB3OMX/XRKmMNxGscE
+BgdZPgFyGwHh44m00M9P8sKdZGLyfpSg5Uf84tSb4nD86PBwZVZagp0dXZGqNhdUZWu1kM4QZPcG
+va3QkqEbxyczQYlyB63mCGCDOBiTF9xnFAqyT4zOZEZnZ0bHxsZjvaICfvayx8cVKOuHUxyX8jrg
+6ZSczm5MAwW0ONL0/eFBn+BrifoEwC5hSuD5oWvd/MZQ/AlPC763segQn3qVLBS+eXNU3Prg1MQ7
+20bJLFu2v28WPtxXS/t7Kuv1N/1CNVRjwKiclKjq9/1iLEzZgZLBTdWXr9yQpIdjANTs/MSsqFAT
+oksUKRd7qANrCThXKHKyjHI0k+fwwRciLuHN00jKw2FYnGEYoF0tuODj3u5OpKJJnkZ5TPIJdFFg
+ivvffftq//XRzrrLWr8+s7ulGlsmrP1D44eKaiUqxv5QAG5bMx7o5iZgNydJLOToCcZIb1O9KBUB
+qkCkV3EpYdEV6wmyQda1e1wB1sqn0zA6SAsyCctICHkx0oxyEh73ZDtbHNFLKBiEPNGSHiKSUQzj
+h6b4LP3bTkHopzl+avrpd6939/d3VlasZzPUxAdbqloy4ewZqqpphlHS1pd0cNU2jW3jK+OwUja+
+gsSJX1W5JSBmcCDWp4QzmdlMZEwMj0aooBhxBUnvcaVyrEHJj2jHJYR+PEgyNziYDiIwY2HyOE8T
+OCogQrwfI3jAKVPB0nHiGsMvDvFpYY4YfsXzhW+Ki4WtrcBZqpdqtfVS6ypwXmmnpG5tqTsqeFnT
+dUPVdW1TK2nlAb1i6IfrvbU1lCT1iSwlFYGqf6xk+iJiRuyLBLvYD1kbsNWxrkKPP+Km6XyLA5cv
+kTIymHcMMrTFgW5wKIkmh0NEItGS5rpvpEFG3z3cnQbZDkH0z/FPJpf5wj8L/fIfHvyk7jMwj3d3
+9fZM5EqqUdbN0jKaeQGgNjeB3VStVBowtr8ol806dfW2iTCA1WeGSyVgVzKxcMQVoVjW6/ZbM5WK
+XintQmlxJC4OW9BQWxGuwZthC9xhIQkCQ0My3c2hKEYgdEiAHaiHb8E6mThQVqJlemrq3jxdeD7y
+kBqvdQ70uimKivxpIvf3XEmv6Ia2B7pq1r0xfWhsAj+ufmpsasaAfmjWjvSDQCTF/CAgieORmGgX
+xUDYS1EBt8tpGgs8DrTIpAowPy0HUavzUlyEOdwRIlEGTvcz+Sj3hEi3tLREcQ58RSAdGNc93AmS
+wydg8vqf+3fu9CuKdaaX8lvZLmpgZmJ0YX3r49+VSkZpD3hT0w4BFE1bMssuapq+Cui2OaCXyxVj
+Rww+k1iQ9ARsrkgGjMLGDyk7RbmcFdCMw1Udmmp2kE4cqaE5WfJKTkuRJOE2DEcRziFdoqMJLI/4
+MILj0A4MCRE+YrEQYnjh7j3m3stJbvpm10RPF/Dg5c96el9s3FxbWyktHfxYpMp0oQE4pYELGAGg
+6XpJ3f5C14ECqDm2NxNUgiBBpCIs0GC3y03V1psbXvSTw4oKLXBpL58inPFUjUXqwHkHi9TgYMZi
+sTSjNHE9GxewBILCNIOS3QiHpT1xgmGw5DT/cpKZvznfQwXslL1xxt0bebqQ//YpyDFXPjE3HBn6
+rlkaEphLV9W1H96YgvbltjFQPtQPjdIhKSrjgVY24vWTrXaHzen29wIVOT4BXtcg5iOJxRHEwsQt
+QSpkcfwcETwcjDoxGPakMCEf9fkwBEdxhEgBHWsemRYQrp/nN+Ibg57YoIt1vNPoPutqpfyjhcdj
+X+fWCutqvnSgrRk/VqwEqEAva2vbO8ByJsm+rGjbB3t62ViLzGQabSATA1yn/G6bzXZsnnBQjYp+
+DNXgFsQvOc4NO0kbB/v9IcslGFCpm0RauOj1FIg7fD9Jkp1C5zIIQ7yAIUzn8PRIcsPn9T1DaOrM
+qVrK3tpKLTzN3f/bwl9Wcs+BOpQ+0cB9TVBlwCp1RwOA1O1t02Z/vgW8emvTdHKJHQePY2dZF3Ch
+3+48qZg79lWASodgHA/BDi8ukH2ws8YZCl21oLi3iKYlS3Ne8F3HEgQQLzDXQAgEUI7rAHF75EXh
+ZVYp0hekerf1TGNTI/tg4qmSe/D4N88XHqyurKvmTXeB5wAWbQkQq2SYTiybFFu/ZQDjlW4BPxpG
+2dbV92l7wO60W+vtfQCU/j0Qt8omgMV5ENwZ9p5jSba2puOXVzuutl2lZQ+H0HiKE2ghSRDNBEp0
+/hrlJS4LJIPoJDwIJiQSk3fra63udqq91TwqOCo8Hlj+6/M1eUX7R7m8V9aANmxqP7ZtrWx+KoG+
+aqibmrq5ub2qGsCiS64AS/kd/uraWjPofF8ydK0yMPB/u/CTdQdAY0cAAAAASUVORK5CYII=
+" width="300" height="300" id="image" x="0" y="0" />
+
+<use xlink:href="#image" transform="translate(300,0)" style="filter:url(#replaceHue)"/>
+
+<use xlink:href="#image" transform="translate(600,0)" style="filter:url(#replaceHueFromLayer)"/>
+
+</g>
</svg>
diff --git a/share/examples/rope-3D.svg b/share/examples/rope-3D.svg
index 0601e0171..d28113ed9 100644
--- a/share/examples/rope-3D.svg
+++ b/share/examples/rope-3D.svg
@@ -1,24 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="793.70081"
- height="1122.5197"
+ width="744.09448819"
+ height="1052.3622047"
id="svg2"
sodipodi:version="0.32"
- inkscape:version="0.92.0 r15304"
+ inkscape:version="0.92"
sodipodi:docname="rope-3D.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
- sodipodi:modified="true"
- version="1.1">
+ sodipodi:modified="true">
<defs
id="defs4">
<clipPath
@@ -74,15 +72,13 @@
inkscape:pageshadow="2"
inkscape:zoom="0.8880571"
inkscape:cx="390.31137"
- inkscape:cy="707.92073"
+ inkscape:cy="798.00503"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="845"
- inkscape:window-height="1025"
+ inkscape:window-height="656"
inkscape:window-x="0"
- inkscape:window-y="25"
- showgrid="false"
- inkscape:window-maximized="0" />
+ inkscape:window-y="0" />
<metadata
id="metadata7">
<rdf:RDF>
@@ -103,238 +99,205 @@
y="0"
xlink:href="#use4519"
id="use4526"
- transform="translate(448)"
+ transform="translate(420,0)"
width="744.09448"
height="1052.3622" />
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.8353138px;line-height:125%;font-family:'Bitstream Vera Serif';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.76358515px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="174.73824"
- y="1050.9255"
- id="text5678"><tspan
+ style="font-size:24.66694641px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif"
+ x="-466.004"
+ y="-174.40106"
+ id="text5678"
+ sodipodi:linespacing="125%"
+ transform="matrix(0.7158611,0,0,0.7158611,497.41123,1110.0896)"><tspan
sodipodi:role="line"
id="tspan5680"
- x="174.73824"
- y="1050.9255"
- style="font-weight:bold;font-family:'Bitstream Vera Serif';stroke-width:0.76358515px">Best of all: edit the original shape </tspan><tspan
+ x="-466.004"
+ y="-174.40106"
+ style="font-weight:bold;font-family:Bitstream Vera Serif">Best of all: edit the original shape </tspan><tspan
sodipodi:role="line"
- x="174.73824"
- y="1081.7593"
- style="font-weight:bold;font-family:'Bitstream Vera Serif';stroke-width:0.76358515px"
+ x="-466.004"
+ y="-143.56738"
+ style="font-weight:bold;font-family:Bitstream Vera Serif"
id="tspan5412">and the entire 3D assembly updates live!</tspan></text>
<use
height="1052.3622"
width="744.09448"
- transform="translate(5.8089872,654.74306)"
+ transform="translate(5.4459255,613.82162)"
id="use4519"
xlink:href="#use3529"
y="0"
x="0"
clip-path="url(#clipPath4523)" />
<path
- style="fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:17.06666756;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 173.18668,34.357227 c -7.00949,-0.72512 -13.26864,1.8016 -19.8,5.4 -13.06273,7.196906 -27.60687,20.107946 -42.2,35.16672 -14.593133,15.058666 -28.963725,32.225173 -40.333336,47.733333 -11.3696,15.5081 -14.780245,20.37604 -20.478432,27.05906 -20.486069,20.79166 9.044053,37.86098 14.411765,16.37426 1.228587,-4.60693 8.971222,-18.51744 19.833334,-33.33333 10.862122,-14.81594 24.827019,-31.5146 38.799999,-45.933377 13.97298,-14.418773 28.19265,-26.586453 38.2,-32.099946 5.00368,-2.7568 9.01401,-3.912534 9.8,-3.4 1.53716,1.00224 1.16921,4.503786 -0.26667,8.099946 -1.43587,3.59616 -4.11089,8.234134 -7.53333,13.266667 -6.84488,10.065173 -16.62333,21.765333 -25.43333,32.96672 -8.81001,11.20139 -16.78666,21.41024 -20.06667,31.93332 -1.64001,5.26157 -2.0441,11.86218 1.86667,17.2 3.91076,5.33783 10.20724,7.3567 17.2,7.96667 10.97705,0.95752 19.17,-5.62989 28.13333,-12.93333 8.96333,-7.30345 18.31434,-16.50985 27.36667,-24.83333 9.05233,-8.32352 17.9659,-15.70432 24.5,-19.06666 3.26705,-1.68118 5.77494,-2.23734 7.03333,-2.2 1.25839,0.0373 1.49578,0 2.7,1.43328 1.29551,1.53749 2.14422,4.27712 2.33334,8.6 0.18912,4.32298 -0.30885,9.74197 -0.46667,15.33337 -0.15782,5.59142 -0.26403,11.68562 3.23333,17.7 3.49737,6.01438 11.18451,9.72241 19.56667,9.7 13.40388,-0.0358 22.52608,-8.60452 29.5,-15.43333 6.97392,-6.82881 12.32145,-12.70786 17.75434,-13.62831 5.9689,-1.00635 7.84782,0.58446 9.64566,1.89498 1.79785,1.31051 3.88571,4.28844 6.73333,8.66666 5.6442,8.67792 16.29249,21.37952 38.3,22.63334 0.1991,0.0113 0.3657,0.0572 0.56667,0.0667 v -0.0333 c 21.54946,2.20392 48.38497,-8.34311 70.76667,-23.96666 11.28685,-7.8788 21.31267,-17.18613 28.29999,-27.63327 6.98733,-10.447257 11.05994,-22.511577 8.63334,-34.76683 -1.54259,-7.790507 -6.39385,-14.228053 -12.63334,-17.166507 -6.23948,-2.93856 -12.98475,-2.760533 -19.26666,-1.30016 -12.77112,2.969174 -21.42306,16.166294 -24.18617,28.519254 -3.3666,15.050986 5.3246,18.040423 9.87177,6.604266 3.1734,-6.0048 10.94826,-16.773546 18.28107,-18.52352 3.66639,-0.874986 6.55589,-0.529173 8.03333,0.16672 1.47744,0.695787 2.36356,1.369067 3.13333,5.03328 1.37022,6.52256 -0.30662,13.643734 -4.92029,21.14784 -4.54294,7.389117 -11.89024,14.707307 -21.85777,21.665067 -19.93506,13.91575 -47.71821,23.72474 -62.03726,22.66004 l -0.27849,0.009 -0.27852,-0.0249 c -17.83448,-0.38703 -20.71232,-6.18422 -26.12767,-14.38976 -2.70871,-4.10441 -5.51115,-9.16564 -11,-13.16671 -5.48884,-4.00106 -12.48465,-7.072 -21.49849,-5.55232 -12.59192,2.13344 -21.23223,12.42112 -27.86817,18.91903 -6.63595,6.49788 -10.12848,10.51064 -16.05039,11.90063 -2.93948,0.68995 -5.43019,-1.3875 -6.31628,-2.60063 -0.77891,-1.06639 -1.09812,-3.97605 -0.96667,-8.63333 0.13146,-4.65738 0.76742,-10.42068 0.5,-16.53343 -0.26741,-6.11264 -1.46138,-13.0848 -6.33333,-18.866667 -3.86835,-4.59072 -9.69014,-7.335466 -15.23333,-7.499946 -5.5432,-0.16448 -10.56807,1.63072 -15.36667,4.099946 -9.59721,4.938667 -18.88759,13.073497 -28.23334,21.666667 -9.34575,8.59328 -18.61784,17.66279 -26.6,24.16676 -7.98215,6.50397 -15.08134,9.01694 -15.86666,9.16667 -4.32558,0.82474 -4.74125,-1.83562 -3.86427,-4.26696 1.82409,-5.0571 8.61098,-15.5886 17.16667,-26.46668 8.55569,-10.87808 18.13966,-21.52139 25.76426,-32.733123 3.8123,-5.60576 7.04265,-11.04672 9.23334,-16.533334 2.19069,-5.486613 3.58878,-11.294186 1.83333,-17.4 -2.07052,-7.201706 -8.62385,-13.274773 -15.63333,-14 z"
+ style="fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:16;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M -147.17109,-1087.1156 C -153.74248,-1087.7954 -159.61044,-1085.4266 -165.73359,-1082.0531 C -177.9799,-1075.306 -191.61503,-1063.2019 -205.29609,-1049.0843 C -218.97715,-1034.9668 -232.44958,-1018.8732 -243.10859,-1004.3343 C -253.76759,-989.79546 -256.96507,-985.23176 -262.30712,-978.96643 C -281.51281,-959.47425 -253.82832,-943.47176 -248.79609,-963.61556 C -247.64429,-967.93456 -240.38557,-980.97566 -230.20234,-994.86556 C -220.0191,-1008.7555 -206.92701,-1024.4105 -193.82734,-1037.9281 C -180.72767,-1051.4457 -167.39673,-1062.8529 -158.01484,-1068.0218 C -153.32389,-1070.6063 -149.56421,-1071.6898 -148.82734,-1071.2093 C -147.38625,-1070.2697 -147.73121,-1066.987 -149.07734,-1063.6156 C -150.42347,-1060.2442 -152.9313,-1055.8961 -156.13984,-1051.1781 C -162.55692,-1041.742 -171.72421,-1030.7731 -179.98359,-1020.2718 C -188.24297,-1009.7705 -195.72108,-1000.1997 -198.79609,-990.33431 C -200.3336,-985.40159 -200.71243,-979.21352 -197.04609,-974.20931 C -193.37975,-969.2051 -187.4768,-967.31241 -180.92109,-966.74056 C -170.6301,-965.84288 -162.94921,-972.01858 -154.54609,-978.86556 C -146.14297,-985.71254 -137.3764,-994.34354 -128.88984,-1002.1468 C -120.40328,-1009.9501 -112.04681,-1016.8696 -105.92109,-1020.0218 C -102.85823,-1021.5979 -100.50708,-1022.1193 -99.327337,-1022.0843 C -98.147597,-1022.0493 -97.925047,-1022.0804 -96.796087,-1020.7406 C -95.581547,-1019.2992 -94.785887,-1016.7308 -94.608587,-1012.6781 C -94.431287,-1008.6253 -94.898127,-1003.545 -95.046087,-998.30306 C -95.194047,-993.06111 -95.293617,-987.34779 -92.014837,-981.70931 C -88.736057,-976.07083 -81.529367,-972.59455 -73.671087,-972.61556 C -61.104947,-972.64915 -52.552887,-980.6823 -46.014837,-987.08431 C -39.476788,-993.48632 -34.463478,-998.99793 -29.370148,-999.86085 C -23.774298,-1000.8043 -22.012817,-999.31292 -20.327337,-998.08431 C -18.641857,-996.8557 -16.684487,-994.06389 -14.014837,-989.95931 C -8.7234073,-981.82376 1.2593727,-969.91601 21.891413,-968.74056 C 22.078063,-968.72993 22.234253,-968.68693 22.422663,-968.67806 L 22.422663,-968.70931 C 42.625283,-966.64314 67.783572,-976.53098 88.766412,-991.17806 C 99.347842,-998.56443 108.74704,-1007.2901 115.29766,-1017.0843 C 121.84828,-1026.8785 125.66635,-1038.1889 123.39141,-1049.6781 C 121.94523,-1056.9817 117.39718,-1063.0169 111.54766,-1065.7718 C 105.69814,-1068.5267 99.374452,-1068.3598 93.485162,-1066.9906 C 81.512242,-1064.207 73.401042,-1051.8347 70.810632,-1040.2538 C 67.654442,-1026.1435 75.802442,-1023.3409 80.065412,-1034.0623 C 83.040472,-1039.6918 90.329402,-1049.7875 97.203912,-1051.4281 C 100.64116,-1052.2484 103.35006,-1051.9242 104.73516,-1051.2718 C 106.12026,-1050.6195 106.951,-1049.9883 107.67266,-1046.5531 C 108.95724,-1040.4382 107.3852,-1033.7621 103.05989,-1026.727 C 98.800882,-1019.7997 91.912792,-1012.9389 82.568232,-1006.416 C 63.879113,-993.37003 37.832403,-984.17411 24.408293,-985.17226 L 24.147213,-985.16434 L 23.886103,-985.18766 C 7.1662727,-985.5505 4.4683027,-990.98537 -0.60858734,-998.67806 C -3.1480073,-1002.5259 -5.7752973,-1007.2708 -10.921087,-1011.0218 C -16.066877,-1014.7728 -22.625447,-1017.6518 -31.075928,-1016.2271 C -42.880848,-1014.227 -50.981137,-1004.5823 -57.202337,-998.49056 C -63.423537,-992.3988 -66.697787,-988.63684 -72.249577,-987.33372 C -75.005337,-986.68689 -77.340377,-988.6345 -78.171087,-989.77181 C -78.901317,-990.77155 -79.200577,-993.49936 -79.077337,-997.86556 C -78.954097,-1002.2318 -78.357887,-1007.6349 -78.608587,-1013.3656 C -78.859287,-1019.0962 -79.978637,-1025.6326 -84.546087,-1031.0531 C -88.172667,-1035.3569 -93.630597,-1037.9301 -98.827337,-1038.0843 C -104.02408,-1038.2385 -108.7349,-1036.5555 -113.23359,-1034.2406 C -122.23097,-1029.6106 -130.9407,-1021.9842 -139.70234,-1013.9281 C -148.46398,-1005.8719 -157.15657,-997.36928 -164.63984,-991.27181 C -172.12311,-985.17434 -178.7786,-982.81843 -179.51484,-982.67806 C -183.57007,-981.90487 -183.95976,-984.39895 -183.13759,-986.67833 C -181.42751,-991.41937 -175.0648,-1001.2926 -167.04384,-1011.4908 C -159.02288,-1021.689 -150.03791,-1031.6671 -142.88984,-1042.1781 C -139.31581,-1047.4335 -136.28736,-1052.5344 -134.23359,-1057.6781 C -132.17982,-1062.8218 -130.86911,-1068.2664 -132.51484,-1073.9906 C -134.45595,-1080.7422 -140.5997,-1086.4357 -147.17109,-1087.1156 z "
id="path3116"
sodipodi:nodetypes="csssccsssssssssssssssssssscsssccsssssscssssscccsscssssssssssssssssc"
- inkscape:connector-curvature="0" />
+ transform="translate(309.5336,1119.3255)" />
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.08639526px;line-height:125%;font-family:'Bitstream Vera Serif';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06035531px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="486.31961"
- y="56.474079"
+ style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif"
+ x="150.85501"
+ y="-1066.0659"
id="text3273"
- transform="scale(0.9940831,1.0059521)"><tspan
+ sodipodi:linespacing="125%"
+ transform="matrix(0.9882012,0,0,1,304.15186,1119.3255)"><tspan
sodipodi:role="line"
id="tspan3275"
- x="486.31961"
- y="56.474079"
- style="font-weight:bold;font-family:'Bitstream Vera Serif';stroke-width:1.06035531px">Original rope-like shape </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="80.332077"
- id="tspan3281"
- style="stroke-width:1.06035531px">with unset fill</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="104.19006"
- id="tspan4507"
- style="stroke-width:1.06035531px">(e.g. created by converting </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="128.04807"
- id="tspan4509"
- style="stroke-width:1.06035531px">stroke to path)</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="151.90605"
- id="tspan3515"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="175.76405"
- id="tspan3517"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="199.62204"
- id="tspan4511"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="223.48004"
- id="tspan4513"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="247.33803"
- id="tspan4540"
- style="stroke-width:1.06035531px">Create a clone, blur by 5%</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="271.19601"
- id="tspan3519"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="295.05402"
- id="tspan3521"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="318.91202"
- id="tspan3523"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="342.77002"
- id="tspan4625"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="366.62799"
- id="tspan4627"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="390.48599"
- id="tspan4631"
- style="stroke-width:1.06035531px">Create another clone,</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="414.34399"
- id="tspan4633"
- style="stroke-width:1.06035531px">position it over the blurred one</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="438.202"
- id="tspan4635"
- style="stroke-width:1.06035531px">with some shift </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="462.05997"
- id="tspan4646"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="485.91797"
- id="tspan4648"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="509.77597"
- id="tspan4650"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="533.63397"
- id="tspan4652"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="557.49194"
- id="tspan4656"
- style="stroke-width:1.06035531px">Select both and do</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="581.34998"
- id="tspan4658"
- style="stroke-width:1.06035531px">Object &gt; Clip &gt; Set</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="605.20795"
- id="tspan4723"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="629.06592"
- id="tspan4725"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="652.92395"
- id="tspan4727"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="676.78192"
- id="tspan4729"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="700.63989"
- id="tspan4731"
- style="stroke-width:1.06035531px">Create a third clone, </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="724.49792"
- id="tspan4733"
- style="stroke-width:1.06035531px">paint yellow, </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="748.3559"
- id="tspan4735"
- style="stroke-width:1.06035531px">place under the clipped shader</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="772.21393"
- id="tspan5650"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="796.0719"
- id="tspan5652"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="819.92987"
- id="tspan5654"
- style="stroke-width:1.06035531px" /><tspan
- sodipodi:role="line"
- x="486.31961"
- y="843.7879"
- id="tspan5658"
- style="stroke-width:1.06035531px">Create a fourth clone, </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="867.64587"
- id="tspan5660"
- style="stroke-width:1.06035531px">blur 5%, opacity 40%,</tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="891.50385"
- id="tspan5664"
- style="stroke-width:1.06035531px">place it at the bottom as a </tspan><tspan
- sodipodi:role="line"
- x="486.31961"
- y="915.36188"
- id="tspan5676"
- style="stroke-width:1.06035531px">drop shadow (with some shift)</tspan></text>
+ x="150.85501"
+ y="-1066.0659"
+ style="font-weight:bold;font-family:Bitstream Vera Serif">Original rope-like shape </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-1043.6076"
+ id="tspan3281">with unset fill</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-1021.1076"
+ id="tspan4507">(e.g. created by converting </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-998.6076"
+ id="tspan4509">stroke to path)</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-976.1076"
+ id="tspan3515" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-953.6076"
+ id="tspan3517" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-931.1076"
+ id="tspan4511" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-908.6076"
+ id="tspan4513" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-886.1076"
+ id="tspan4540">Create a clone, blur by 5%</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-863.6076"
+ id="tspan3519" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-841.1076"
+ id="tspan3521" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-818.6076"
+ id="tspan3523" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-796.1076"
+ id="tspan4625" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-773.6076"
+ id="tspan4627" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-751.1076"
+ id="tspan4631">Create another clone,</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-728.6076"
+ id="tspan4633">position it over the blurred one</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-706.1076"
+ id="tspan4635">with some shift </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-683.6076"
+ id="tspan4646" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-661.1076"
+ id="tspan4648" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-638.6076"
+ id="tspan4650" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-616.1076"
+ id="tspan4652" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-593.6076"
+ id="tspan4656">Select both and do</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-571.1076"
+ id="tspan4658">Object &gt; Clip &gt; Set</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-548.6076"
+ id="tspan4723" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-526.1076"
+ id="tspan4725" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-503.6076"
+ id="tspan4727" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-481.1076"
+ id="tspan4729" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-458.6076"
+ id="tspan4731">Create a third clone, </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-436.1076"
+ id="tspan4733">paint yellow, </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-413.6076"
+ id="tspan4735">place under the clipped shader</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-391.1076"
+ id="tspan5650" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-368.6076"
+ id="tspan5652" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-346.1076"
+ id="tspan5654" /><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-323.6076"
+ id="tspan5658">Create a fourth clone, </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-301.1076"
+ id="tspan5660">blur 5%, opacity 40%,</tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-278.6076"
+ id="tspan5664">place it at the bottom as a </tspan><tspan
+ sodipodi:role="line"
+ x="150.85501"
+ y="-256.1076"
+ id="tspan5676">drop shadow (with some shift)</tspan></text>
<use
x="0"
y="0"
xlink:href="#path3116"
id="use3527"
- transform="translate(0.0136681,629.33333)"
+ transform="translate(1.2813844e-2,590)"
width="744.09448"
height="1052.3622"
style="fill:#fff900;fill-opacity:1" />
@@ -342,7 +305,7 @@
style="fill:#000000;filter:url(#filter4662)"
height="1052.3622"
width="744.09448"
- transform="translate(0,157.86667)"
+ transform="translate(0,148)"
id="use3529"
xlink:href="#path3116"
y="0"
@@ -352,13 +315,13 @@
y="0"
xlink:href="#use3529"
id="use4492"
- transform="translate(5.8089872,164.07639)"
+ transform="translate(5.4459255,153.82162)"
width="744.09448"
height="1052.3622" />
<use
height="1052.3622"
width="744.09448"
- transform="translate(0,309.33333)"
+ transform="translate(0,290)"
id="use4496"
xlink:href="#path3116"
y="0"
@@ -366,7 +329,7 @@
<use
height="1052.3622"
width="744.09448"
- transform="translate(5.8089872,334.74306)"
+ transform="translate(5.4459255,313.82162)"
id="use4639"
xlink:href="#use3529"
y="0"
@@ -378,7 +341,7 @@
y="0"
xlink:href="#use3529"
id="use4660"
- transform="translate(5.8089872,484.07639)"
+ transform="translate(5.4459255,453.82162)"
width="744.09448"
height="1052.3622" />
<use
@@ -386,7 +349,7 @@
y="0"
xlink:href="#path3116"
id="use4743"
- transform="translate(10.447534,793.72703)"
+ transform="translate(9.7945627,744.11909)"
width="744.09448"
height="1052.3622"
style="opacity:0.4;filter:url(#filter5670)" />
@@ -394,7 +357,7 @@
style="fill:#fff900;fill-opacity:1"
height="1052.3622"
width="744.09448"
- transform="translate(3.0896657,785.1937)"
+ transform="translate(2.8965616,736.11909)"
id="use4737"
xlink:href="#path3116"
y="0"
@@ -402,7 +365,7 @@
<use
height="1052.3622"
width="744.09448"
- transform="translate(8.8849849,639.93676)"
+ transform="translate(8.3296733,599.94071)"
id="use4739"
xlink:href="#use3529"
y="0"
@@ -410,101 +373,118 @@
clip-path="url(#clipPath4643)" />
<g
id="g4292"
- transform="matrix(0.25,0,0,0.25,148.0294,-32.494187)">
+ transform="matrix(0.25,0,0,0.25,138.77756,-30.4633)">
+ <path
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 512.34629,358.02671 L 517.33829,358.15471 C 522.62894,358.15479 526.6396,357.04545 529.37029,354.82671 C 532.18626,352.60812 534.31959,348.85346 535.77029,343.56271 L 555.35429,343.56271 L 555.35429,432.01071 L 533.08229,432.01071 L 533.08229,375.17871 L 512.34629,375.17871 L 512.34629,358.02671"
+ id="text4244" />
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 546.50271,381.89516 5.3248,0.13653 c 5.64336,9e-5 9.9214,-1.18321 12.83413,-3.54987 3.0037,-2.36649 5.27926,-6.37146 6.82667,-12.01493 h 20.8896 v 94.34453 h -23.7568 v -60.6208 h -22.1184 v -18.29546"
- id="text4244"
- inkscape:connector-curvature="0" />
- <circle
+ transform="matrix(1.0557928,0,0,1.0557928,-45.416178,-34.024051)"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ sodipodi:ry="63.69397"
+ sodipodi:rx="63.69397"
+ sodipodi:cy="401.18643"
+ sodipodi:cx="555.21912"
id="path4248"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- cx="576.83215"
- cy="415.51541"
- r="71.730812"
- d="m 648.56297,415.51541 a 71.730812,71.730812 0 0 1 -71.73082,71.73081 71.730812,71.730812 0 0 1 -71.73081,-71.73081 71.730812,71.730812 0 0 1 71.73081,-71.73081 71.730812,71.730812 0 0 1 71.73082,71.73081 z" />
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
</g>
<g
id="g4297"
- transform="matrix(0.25,0,0,0.25,147.49969,87.656853)">
+ transform="matrix(0.25,0,0,0.25,138.28096,82.1783)">
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 576.13044,535.35866 c 9.01116,9e-5 16.70253,2.63974 23.07414,7.91893 6.8266,5.64347 10.23992,12.92524 10.24,21.84533 -8e-5,14.29054 -11.6054,29.62778 -34.816,46.01174 h 35.08906 v 20.34346 h -66.08213 l 0.8192,-21.57226 24.43947,-19.38774 c 10.74057,-9.73933 16.11089,-17.74927 16.11093,-24.02986 -4e-5,-2.82163 -0.91027,-5.14269 -2.73067,-6.9632 -1.63844,-1.82038 -3.91399,-2.7306 -6.82666,-2.73067 -4.09604,7e-5 -7.09977,1.63847 -9.0112,4.9152 -1.0923,1.91154 -2.18456,5.37038 -3.2768,10.37653 l -22.39147,-1.2288 c 2.36657,-23.66569 14.15394,-35.49857 35.36213,-35.49866"
- id="text4250"
- inkscape:connector-curvature="0" />
- <circle
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 540.12229,501.89874 C 548.57025,501.89883 555.78091,504.3735 561.75429,509.32274 C 568.15423,514.61349 571.35422,521.44015 571.35429,529.80274 C 571.35422,543.20012 560.47423,557.57878 538.71429,572.93874 L 571.61029,572.93874 L 571.61029,592.01074 L 509.65829,592.01074 L 510.42629,571.78674 L 533.33829,553.61074 C 543.40758,544.48012 548.44225,536.9708 548.44229,531.08274 C 548.44225,528.43747 547.58891,526.26147 545.88229,524.55474 C 544.34625,522.84814 542.21292,521.99481 539.48229,521.99474 C 535.64226,521.99481 532.82626,523.53081 531.03429,526.60274 C 530.01026,528.39481 528.98627,531.63747 527.96229,536.33074 L 506.97029,535.17874 C 509.18895,512.99215 520.23961,501.89883 540.12229,501.89874"
+ id="text4250" />
+ <path
+ sodipodi:type="arc"
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4254"
- cx="576.83215"
- cy="586.18207"
- r="71.730812" />
+ sodipodi:cx="555.21912"
+ sodipodi:cy="401.18643"
+ sodipodi:rx="63.69397"
+ sodipodi:ry="63.69397"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ transform="matrix(1.0557928,0,0,1.0557928,-45.416178,125.97594)" />
</g>
<g
id="g4306"
- transform="matrix(0.25,0,0,0.25,148.00311,202.31392)">
+ transform="matrix(0.25,0,0,0.25,138.75292,189.6693)">
+ <path
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 528.18985,724.87474 C 528.18983,727.86143 529.2565,730.3361 531.38985,732.29874 C 533.60849,734.17609 536.25383,735.11476 539.32585,735.11474 C 548.02981,735.11476 552.38181,731.82943 552.38185,725.25874 C 552.38181,720.65077 549.94981,717.70678 545.08585,716.42674 C 544.06182,716.17078 542.48315,715.95744 540.34985,715.78674 C 538.30182,715.61611 535.61383,715.53078 532.28585,715.53074 L 532.28585,699.40274 L 534.97385,699.40274 C 544.61648,699.40279 549.43781,696.50146 549.43785,690.69874 C 549.43781,684.46948 546.32315,681.35481 540.09385,681.35474 C 533.69383,681.35481 530.19516,684.98148 529.59785,692.23474 L 508.47785,690.69874 C 510.95252,671.49882 522.38717,661.89883 542.78185,661.89874 C 550.80314,661.89883 557.5018,663.77616 562.87785,667.53074 C 568.93646,671.88282 571.96579,677.89882 571.96585,685.57874 C 571.96579,695.5628 567.14446,701.96279 557.50185,704.77874 C 563.47513,707.08279 567.78446,709.68545 570.42985,712.58674 C 573.67245,716.08544 575.29379,720.77877 575.29385,726.66674 C 575.29379,735.79743 571.58179,742.75208 564.15785,747.53074 C 557.84314,751.54141 549.82181,753.54674 540.09385,753.54674 C 530.70716,753.54674 523.15517,751.45608 517.43785,747.27474 C 511.29385,742.66675 507.70985,735.88276 506.68585,726.92274 L 528.18985,724.87474"
+ id="text4256" />
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 563.40251,773.19972 c -2e-5,3.18581 1.13776,5.82545 3.41333,7.91894 2.36655,2.0025 5.18825,3.00375 8.46507,3.00373 9.28422,2e-5 13.92635,-3.50433 13.9264,-10.51307 -5e-5,-4.91517 -2.59418,-8.05542 -7.7824,-9.4208 -1.0923,-0.27302 -2.77622,-0.50058 -5.05174,-0.68266 -2.18456,-0.18201 -5.05175,-0.27303 -8.6016,-0.27307 v -17.2032 h 2.8672 c 10.28548,5e-5 15.42823,-3.0947 15.42827,-9.28427 -4e-5,-6.64454 -3.32235,-9.96686 -9.96693,-9.96693 -6.82669,7e-5 -10.55861,3.86852 -11.19574,11.60533 l -22.528,-1.6384 c 2.63965,-20.47991 14.83661,-30.7199 36.59094,-30.72 8.55604,1e-4 15.70128,2.00258 21.43573,6.00747 6.46252,4.64222 9.6938,11.05928 9.69387,19.2512 -7e-5,10.64966 -5.14282,17.47632 -15.42827,20.48 6.3715,2.45765 10.96812,5.23382 13.78987,8.32853 3.45877,3.73195 5.1882,8.73817 5.18826,15.01867 -6e-5,9.7394 -3.95953,17.1577 -11.8784,22.25493 -6.73569,4.27805 -15.29177,6.41707 -25.66826,6.41707 -10.01247,0 -18.06793,-2.23004 -24.1664,-6.69013 -6.5536,-4.91519 -10.37654,-12.15145 -11.4688,-21.7088 l 22.9376,-2.18454"
- id="text4256"
- inkscape:connector-curvature="0" />
- <circle
+ transform="matrix(1.0557928,0,0,1.0557928,-45.416178,285.97594)"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ sodipodi:ry="63.69397"
+ sodipodi:rx="63.69397"
+ sodipodi:cy="401.18643"
+ sodipodi:cx="555.21912"
id="path4260"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- cx="576.83215"
- cy="756.84875"
- r="71.730812" />
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
</g>
<g
id="g4311"
- transform="matrix(0.25,0,0,0.25,100.38212,371.85986)">
+ transform="matrix(0.25,0,0,0.25,94.10824,348.61862)">
+ <path
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 681.57291,713.35474 L 718.43691,663.56274 L 739.68491,663.56274 L 739.68491,716.93874 L 751.46091,716.93874 L 751.46091,734.47474 L 739.68491,734.47474 L 739.68491,752.01074 L 717.41291,752.01074 L 717.41291,734.47474 L 681.57291,734.47474 L 681.57291,713.35474 M 718.18091,716.93874 C 718.18088,713.35478 718.39421,708.44812 718.82091,702.21874 C 719.24754,695.98946 719.46087,691.55214 719.46091,688.90674 C 718.60754,690.27214 716.55954,693.42947 713.31691,698.37874 C 710.50088,702.64546 706.36222,708.83212 700.90091,716.93874 L 718.18091,716.93874"
+ id="text4262" />
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 727.0111,760.91172 39.3216,-53.11146 h 22.66454 v 56.9344 h 12.56106 v 18.70506 h -12.56106 v 18.70507 h -23.7568 V 783.43972 H 727.0111 v -22.528 m 39.04854,3.82294 c -3e-5,-3.82289 0.22752,-9.05667 0.68266,-15.70134 0.45508,-6.64456 0.68263,-11.3777 0.68267,-14.19946 -0.91026,1.45642 -3.09479,4.82424 -6.5536,10.10346 -3.00376,4.55117 -7.41834,11.15027 -13.24373,19.79734 h 18.432"
- id="text4262"
- inkscape:connector-curvature="0" />
- <circle
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ sodipodi:type="arc"
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4266"
- cx="768.83221"
- cy="756.84875"
- r="71.730812" />
+ sodipodi:cx="555.21912"
+ sodipodi:cy="401.18643"
+ sodipodi:rx="63.69397"
+ sodipodi:ry="63.69397"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ transform="matrix(1.0557928,0,0,1.0557928,134.58383,285.97594)" />
</g>
<g
id="g4318"
- transform="matrix(0.25,0,0,0.25,57.682571,520.87168)">
+ transform="matrix(0.25,0,0,0.25,54.07741,488.3172)">
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 924.37764,771.28826 c 0.54611,3.54989 2.04798,6.64465 4.5056,9.28426 2.5486,2.36661 5.64335,3.54989 9.28427,3.54987 4.00494,2e-5 7.32724,-1.27429 9.96693,-3.82293 2.73063,-2.63962 4.09596,-5.96193 4.096,-9.96694 -4e-5,-3.64085 -1.27435,-6.87214 -3.82293,-9.69386 -2.54866,-2.82165 -5.68893,-4.23248 -9.4208,-4.23254 -4.91523,6e-5 -9.01122,1.91151 -12.288,5.7344 h -20.8896 l 5.46133,-54.34026 h 60.75734 l -2.048,19.79733 h -40.96 l -1.50187,15.1552 c 6.18948,-3.91389 11.92387,-5.87087 17.2032,-5.87093 9.01115,6e-5 16.42945,3.04931 22.25493,9.14773 5.91638,6.09854 8.87459,13.60787 8.87467,22.528 -8e-5,10.64962 -3.77749,19.29672 -11.33227,25.94133 -7.09978,6.28054 -16.11097,9.4208 -27.0336,9.4208 -9.83042,0 -17.9769,-2.68515 -24.43946,-8.05546 -6.46259,-5.3703 -10.19449,-12.97065 -11.19574,-22.80107 l 22.528,-1.77493"
- id="text4268"
- inkscape:connector-curvature="0" />
- <circle
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 866.60404,723.08274 C 867.11602,726.41077 868.52402,729.3121 870.82804,731.78674 C 873.21735,734.00543 876.11868,735.11476 879.53204,735.11474 C 883.28667,735.11476 886.40133,733.92009 888.87604,731.53074 C 891.436,729.0561 892.716,725.94143 892.71604,722.18674 C 892.716,718.77344 891.52133,715.74411 889.13204,713.09874 C 886.74267,710.45345 883.79867,709.13079 880.30004,709.13074 C 875.69201,709.13079 871.85202,710.92278 868.78004,714.50674 L 849.19604,714.50674 L 854.31604,663.56274 L 911.27604,663.56274 L 909.35604,682.12274 L 870.95604,682.12274 L 869.54804,696.33074 C 875.35068,692.66147 880.72667,690.8268 885.67604,690.82674 C 894.12399,690.8268 901.07865,693.68547 906.54004,699.40274 C 912.08664,705.12012 914.85997,712.16012 914.86004,720.52274 C 914.85997,730.50676 911.31864,738.61342 904.23604,744.84274 C 897.57999,750.73074 889.132,753.67474 878.89204,753.67474 C 869.67602,753.67474 862.03869,751.15741 855.98004,746.12274 C 849.92137,741.08809 846.42271,733.96276 845.48404,724.74674 L 866.60404,723.08274"
+ id="text4268" />
+ <path
+ transform="matrix(1.0557928,0,0,1.0557928,294.58383,285.97594)"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ sodipodi:ry="63.69397"
+ sodipodi:rx="63.69397"
+ sodipodi:cy="401.18643"
+ sodipodi:cx="555.21912"
id="path4272"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
- cx="939.49884"
- cy="756.84875"
- r="71.730812" />
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+ sodipodi:type="arc" />
</g>
<g
id="g4323"
- transform="matrix(0.25,0,0,0.25,57.674037,713.76057)">
+ transform="matrix(0.25,0,0,0.25,54.06941,669.15053)">
+ <path
+ style="font-size:128px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Atkins"
+ d="M 890.44048,525.96274 C 888.64843,521.61081 885.53377,519.43481 881.09648,519.43474 C 875.89111,519.43481 872.05112,521.99481 869.57648,527.11474 C 867.78445,530.9548 866.88845,535.8188 866.88848,541.70674 C 871.92312,536.5868 878.15244,534.0268 885.57648,534.02674 C 893.85376,534.0268 900.72309,536.8428 906.18448,542.47474 C 911.64574,548.02145 914.37641,554.97611 914.37648,563.33874 C 914.37641,571.78676 911.21908,578.95476 904.90448,584.84274 C 898.58976,590.73074 891.16576,593.67474 882.63248,593.67474 C 869.91778,593.67474 860.36046,589.32274 853.96048,580.61874 C 848.49914,572.93876 845.76848,562.44277 845.76848,549.13074 C 845.76848,536.92813 848.45647,526.38947 853.83248,517.51474 C 860.14713,507.10416 869.06445,501.89883 880.58448,501.89874 C 897.13909,501.89883 907.76308,509.49349 912.45648,524.68274 L 890.44048,525.96274 M 881.09648,575.75474 C 884.42444,575.75476 887.1551,574.64543 889.28848,572.42674 C 891.42176,570.2081 892.48843,567.47743 892.48848,564.23474 C 892.48843,561.07744 891.42176,558.47478 889.28848,556.42674 C 887.24043,554.37878 884.55244,553.35478 881.22448,553.35474 C 877.98178,553.35478 875.16578,554.37878 872.77648,556.42674 C 870.38712,558.38944 869.19245,561.03477 869.19248,564.36274 C 869.19245,567.5201 870.34445,570.25076 872.64848,572.55474 C 875.03778,574.68809 877.85378,575.75476 881.09648,575.75474"
+ id="text4274" />
<path
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:128px;line-height:125%;font-family:Atkins;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666672px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 949.80318,561.02692 c -1.91152,-4.64206 -5.23383,-6.96312 -9.96693,-6.9632 -5.5524,8e-5 -9.64839,2.73074 -12.288,8.192 -1.9115,4.09607 -2.86724,9.28433 -2.8672,15.5648 5.37028,-5.46127 12.01489,-8.19193 19.93386,-8.192 8.8291,7e-5 16.15639,3.0038 21.98187,9.0112 5.82534,5.91649 8.73806,13.3348 8.73813,22.25494 -7e-5,9.01122 -3.36789,16.65708 -10.10346,22.9376 -6.73571,6.28053 -14.65464,9.4208 -23.7568,9.4208 -13.56235,0 -23.75683,-4.64214 -30.58347,-13.9264 -5.82543,-8.19198 -8.73813,-19.38771 -8.73813,-33.5872 0,-13.01612 2.86718,-24.25736 8.6016,-33.72374 6.73562,-11.10462 16.24743,-16.65697 28.53546,-16.65706 17.65825,9e-5 28.99051,8.10106 33.9968,24.30293 l -23.48373,1.36533 m -9.96693,53.11147 c 3.54982,2e-5 6.46252,-1.18326 8.73813,-3.54987 2.2755,-2.36655 3.41328,-5.27926 3.41333,-8.73813 -5e-5,-3.36779 -1.13783,-6.14396 -3.41333,-8.32853 -2.18459,-2.18449 -5.05178,-3.27676 -8.6016,-3.2768 -3.45888,4e-5 -6.46261,1.09231 -9.0112,3.2768 -2.54865,2.09354 -3.82297,4.91523 -3.82293,8.46506 -4e-5,3.36785 1.22876,6.28056 3.6864,8.73814 2.54858,2.27557 5.55232,3.41335 9.0112,3.41333"
- id="text4274"
- inkscape:connector-curvature="0" />
- <circle
- style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.92000002;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:18.01886368;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ sodipodi:type="arc"
+ style="opacity:0.92000002;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="path4278"
- cx="939.49884"
- cy="586.18207"
- r="71.730812" />
+ sodipodi:cx="555.21912"
+ sodipodi:cy="401.18643"
+ sodipodi:rx="63.69397"
+ sodipodi:ry="63.69397"
+ d="M 618.91309 401.18643 A 63.69397 63.69397 0 1 1 491.52515,401.18643 A 63.69397 63.69397 0 1 1 618.91309 401.18643 z"
+ transform="matrix(1.0557928,0,0,1.0557928,294.58383,125.97594)" />
</g>
<use
x="0"
y="0"
xlink:href="#g4292"
id="use3398"
- transform="matrix(0.5,0,0,0.5,413.83356,1007.4092)"
+ transform="matrix(0.5,0,0,0.5,383.34304,945.46156)"
width="744.09448"
height="1052.3622" />
</g>
diff --git a/share/examples/stars.svgz b/share/examples/stars.svgz
index d6000f00e..5d5675229 100644
--- a/share/examples/stars.svgz
+++ b/share/examples/stars.svgz
Binary files differ
diff --git a/share/examples/tesselation-P3.svg b/share/examples/tesselation-P3.svg
index b78aa6a69..0d4603ec7 100644
--- a/share/examples/tesselation-P3.svg
+++ b/share/examples/tesselation-P3.svg
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
@@ -11,12 +10,12 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="tesselation-P3.svg"
- inkscape:version="0.92.0 r15304"
+ sodipodi:docbase="/home/d/ink/inkscape/share/examples"
+ inkscape:version="0.92"
sodipodi:version="0.32"
id="svg1278"
- height="227.30284mm"
- width="314.42914mm"
- version="1.1">
+ height="297mm"
+ width="210mm">
<defs
id="defs3">
<linearGradient
@@ -32,38 +31,38 @@
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3508"
- id="radialGradient32678"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6506603,0,0,0.6892864,-1.6214453,-0.1072288)"
- cx="198.96782"
- cy="909.01093"
+ r="14.898239"
+ fy="909.58490"
fx="198.90167"
- fy="909.5849"
- r="14.898239" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3508"
- id="radialGradient32680"
+ cy="909.01093"
+ cx="198.96782"
+ gradientTransform="scale(1.547494,0.646206)"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6506603,0,0,0.6892864,9.7286752,-41.301173)"
- cx="197.22726"
- cy="909.71918"
- fx="197.16112"
- fy="910.29315"
- r="14.898238" />
- <radialGradient
- inkscape:collect="always"
+ id="radialGradient3521"
xlink:href="#linearGradient3508"
- id="radialGradient32682"
+ inkscape:collect="always" />
+ <radialGradient
+ r="14.898238"
+ fy="910.29315"
+ fx="197.16112"
+ cy="909.71918"
+ cx="197.22726"
+ gradientTransform="scale(1.547494,0.646206)"
gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-1.1671931,1.1671931,-0.48739909,-0.48739909,1007.7602,851.47183)"
- cx="198.96782"
- cy="909.01093"
+ id="radialGradient3523"
+ xlink:href="#linearGradient3508"
+ inkscape:collect="always" />
+ <radialGradient
+ r="14.898239"
+ fy="909.58490"
fx="198.90167"
- fy="909.5849"
- r="14.898239" />
+ cy="909.01093"
+ cx="198.96782"
+ gradientTransform="scale(1.547494,0.646206)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient1195"
+ xlink:href="#linearGradient3508"
+ inkscape:collect="always" />
</defs>
<sodipodi:namedview
showborder="false"
@@ -72,1141 +71,924 @@
inkscape:window-height="654"
inkscape:window-width="825"
inkscape:current-layer="layer1"
- inkscape:cy="429.54868"
- inkscape:cx="594.1968"
- inkscape:zoom="0.50634541"
+ inkscape:cy="303.74752"
+ inkscape:cx="667.12730"
+ inkscape:zoom="1.6747183"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
- id="base"
- showgrid="false"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5"
- inkscape:window-maximized="0" />
+ id="base" />
<metadata
id="metadata4">
- <rdf:RDF>
+ <rdf:RDF
+ id="RDF5">
<cc:Work
+ id="Work6"
rdf:about="">
- <dc:format>image/svg+xml</dc:format>
+ <dc:format
+ id="format7">image/svg+xml</dc:format>
<dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage"
+ id="type9" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
- inkscape:label="Layer 1"
- transform="translate(-265.2137,-421.82326)">
+ inkscape:label="Layer 1">
+ <rect
+ transform="matrix(1.417309,0.000000,0.000000,1.874534,-235.0703,-534.9604)"
+ y="517.04688"
+ x="359.70108"
+ height="361.24158"
+ width="751.75220"
+ id="rect1386"
+ style="color:#000000;fill:#ff0a00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block" />
<g
- id="g32676">
- <rect
- style="color:#000000;display:block;visibility:visible;fill:#ff0a00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.34658003;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- id="rect1386"
- width="1136.4962"
- height="722.30359"
- x="293.0531"
- y="463.21231" />
- <g
- id="g1290"
- inkscape:tile-w="80.925240"
- inkscape:tile-h="30.283344"
- inkscape:tile-cx="336.93399"
- inkscape:tile-cy="536.40016">
- <path
- inkscape:connector-curvature="0"
- style="opacity:1;fill:#ffd300;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.66666675;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 327.26667,552.83333 c -0.25375,0.0112 -0.44502,0.13193 -0.6,0.36667 -3.03886,4.60255 -2.15008,3.71521 -0.46667,9.6 1.00178,3.50199 1.73486,8.76848 0.46717,13.05139 -0.0287,-0.01 -7.58344,-0.20511 -10.16717,-3.95139 -2.37588,0.12098 -8.58285,1.10685 -8.47455,7.00838 3.01661,3.11521 5.88657,4.65851 9.82036,5.86337 l 5.7514,1.76158 c 1.70845,0.43979 2.70741,1.08149 4.3,4.26667 1.00634,2.01268 -5.74088,3.18874 -7.13054,3.46667 -3.02478,0.60497 -7.12607,0.56666 -10.96667,0.56666 -3.9,-2e-5 -7.46027,-0.0226 -10.43333,1.16667 -3.24324,1.29727 -5.34004,3.77969 -6.93334,5.37299 -0.80627,0.80628 -1.57506,1.79172 -2.33333,2.42701 -5.24906,6.82378 -6.49236,16.26746 -1.6,27.43333 1.85324,4.77824 8.18016,9.27704 8.56667,14.63334 0.43331,6.00497 4.46964,14.23254 11.96666,14.86666 10.58492,0.89533 12.16948,1.96743 15.06667,1.90956 5.83398,-0.11652 13.21414,-0.4844 16.66667,-1.10956 0.72827,-0.13187 1.45231,-0.1772 2.2,-0.26666 -0.22427,-1.54644 -0.33002,-3.10247 0.16666,-4.16667 0.52616,-1.12737 1.81979,-4.88021 4.7,-4.03333 3.79876,1.11698 5.91138,3.53239 8.5,6.56804 3.04766,-0.55581 3.76021,-0.6748 4.73745,-2.1703 1.48435,-2.27152 2.89673,-3.86355 -2.57078,-10.23108 -3.24842,-3.78313 -8.89119,0.76258 -9.96667,-6.76666 0.58427,-0.71949 0.98802,-1.46112 1.46667,-2.2 3.92997,-0.72465 6.93036,-1.46587 9.8,-4.2 2.17353,-2.07089 -0.42009,-5.04732 -1.13333,-6.06667 -0.60665,-0.86702 -1.86156,-1.54777 -3.16667,-2.1 0.4678,-1.2921 0.88761,-2.62642 1.46667,-3.86667 3.17178,-6.79339 6.63496,-13.68591 11.66666,-20.96666 1.38814,-2.00863 5.80782,-11.00698 17.88617,-9.52167 0.06,-0.0301 0.13945,-0.0691 0.2,-0.0999 0.58836,0.24684 1.24962,0.45658 1.8,0.56666 0.62731,0.12544 1.07989,0.43461 1.63333,0.76667 0.54152,0.32488 0.76904,0.43381 1.43334,0.56667 0.46216,0.0925 1.06844,0.2 1.7,0.2 0.28398,-3e-5 -0.0884,-0.96966 -0.36667,-1.43334 -0.30306,-0.50511 -0.5,-0.80106 -0.5,-1.53333 0,-0.99458 -0.90138,-2.68539 -0.95283,-3.645 0.9679,-0.77042 1.97808,-1.51144 2.83333,-2.36667 1.72779,-1.72779 4.04053,-5.11603 5,-8.66667 0.35662,-0.26746 3.73773,-3.58934 3.3335,-3.99356 -0.22108,-0.2211 -3.07914,-3.37204 -3.36683,-3.50644 -0.66363,-2.95845 -1.85464,-4.95187 -2.63334,-8.06666 -0.51934,-2.07738 -3.74773,-5.09913 -5.7,-5.43334 -1.17136,-0.20052 -4.63433,0.56868 -5.9,3.1 -1.67315,3.34633 -1.21315,6.71316 -3.86666,9.36667 -2.23412,2.23411 -3.76775,4.59466 -7.16667,7.14387 -2.09852,1.57389 -3.94435,3.03146 -5.8,3.68946 0,0 -12.73027,0.41032 -13.83333,0.11476 -2.17649,-0.58319 -5.72154,-0.93994 -8.46667,-3.1 -2.51644,-1.98014 -4.24999,-4.13722 -6.2,-7.51476 -1.9203,-3.32606 -3.96372,-6.91632 -6,-9.23333 -0.81858,-0.93146 -4.65711,-5.71177 -6.43333,-5.63333 z"
- id="path1353"
- sodipodi:nodetypes="ccccccsccccccccccscccccscccccccccccccccccccccccccccccccc" />
- <ellipse
- ry="4.3107715"
- rx="3.5923097"
- cy="571.54138"
- cx="391.29471"
- style="color:#000000;display:block;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.10862186;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- id="path2215" />
- <ellipse
- ry="1.3488659"
- rx="1.6860825"
- cy="568.67535"
- cx="392.31766"
- style="color:#000000;display:block;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.08561234;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- id="path2216" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 324.08402,575.90642 c 9.44114,1.77425 24.13015,1.45739 26.32723,21.9232"
- id="path2220"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 393.39595,590.62515 c 1.37977,-0.34494 -1.68185,-2.31011 -2.31789,-3.5822 -0.73252,-1.46502 -0.89819,-2.32844 -1.26431,-3.79293 -0.27765,-1.11056 -0.21072,-2.21808 -0.21072,-3.37147"
- id="path2221" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 382.66361,569.59603 c -1.44126,1.84435 -1.42664,5.6453 1.33294,6.18477 0.46635,0.0801 0.95162,0.0596 1.40638,-0.0739"
- id="path2222" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 349.5809,637.19722 c -2.57692,-5.83044 -12.13214,1.50709 -11.08476,5.14709 -3.73186,4.68233 -20.05093,8.93775 -23.42195,1.06386"
- id="path2226"
- sodipodi:nodetypes="ccc" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;display:block;visibility:visible;opacity:0.16666667;fill:url(#radialGradient32678);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.66666675;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- d="m 329.54522,611.95944 c -6.36018,0 -11.96742,2.82233 -15.33333,7.1 0.81575,0.83572 1.58514,1.71473 2.53333,2.43333 1.55265,1.17671 3.23454,2.19426 4.96667,3.06667 1.73213,0.8724 3.50649,1.58646 5.2,2.16666 1.11182,0.48172 2.22055,0.81264 3.33333,1 1.11278,0.18736 2.21981,0.22923 3.33333,0.2 2.22704,-0.0584 4.47126,-0.47517 6.7,-0.93333 2.22875,-0.45815 4.47124,-0.93095 6.7,-1.16667 0.31198,-0.033 0.62138,-0.0116 0.93334,-0.0333 -1.39522,-7.83847 -9.06081,-13.83334 -18.36667,-13.83333 z"
- id="path2886" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 355.27028,626.32384 c -8.90836,-2.43565 -17.8369,4.37431 -26.73147,0.52056 -6.77402,-2.32081 -14.72935,-6.93081 -16.88712,-14.21725"
- id="path3512" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;display:block;visibility:visible;opacity:0.16666667;fill:url(#radialGradient32680);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.66666675;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- d="m 340.89534,570.76549 c -6.36018,0 -11.96742,1.6913 -15.33333,5.96896 23.93929,-0.89154 24.19985,20.85762 24.51181,20.83594 29.65125,-19.26034 0.12738,-26.80491 -9.17848,-26.8049 z"
- id="path3522"
- sodipodi:nodetypes="cccc" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;display:block;visibility:visible;opacity:0.16666667;fill:url(#radialGradient32682);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.66666675;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- d="m 340.79353,652.84553 c 4.49732,-4.49732 3.41715,-12.06288 2.77244,-17.4677 -11.07432,16.71747 -26.85935,13.40348 -28.69802,6.44839 -8.37575,20.98974 19.34535,17.59955 25.92558,11.01931 z"
- id="path1194"
- sodipodi:nodetypes="cccc" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.06666705pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 308.98492,643.02009 c -4.85838,-2.24007 -7.58335,5.03113 -3.27386,7.88423 3.17021,2.09884 9.79507,2.10768 8.48575,-2.74606 -1.44278,-3.51205 -8.82132,-0.53661 -4.95174,1.95455 0.49414,-0.10267 0.89874,-0.47523 1.11185,-0.92169"
- id="path1818"
- sodipodi:nodetypes="csccc" />
- </g>
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(129.48043,74.755531)"
- id="use2388" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(0,149.51104)"
- id="use2389" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(129.48043,224.26656)"
- id="use2390" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(0,299.02219)"
- id="use2391" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(129.48043,373.77771)"
- id="use2392" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(0,448.53323)"
- id="use2393" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(129.48043,523.28875)"
- id="use2394" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(0,598.04427)"
- id="use2395" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,402.5565,572.16014)"
- id="use2396" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,445.71673,646.91571)"
- id="use2397" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,359.39639,646.91568)"
- id="use2398" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,402.55662,721.67124)"
- id="use2399" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,316.23628,721.67121)"
- id="use2400" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,359.39648,796.42684)"
- id="use2401" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,273.07614,796.42681)"
- id="use2402" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,316.23636,871.18238)"
- id="use2403" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,229.91594,871.1825)"
- id="use2404" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,402.5562,572.16018)"
- id="use2405" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,488.87669,572.16055)"
- id="use2406" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,445.71643,646.91593)"
- id="use2407" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,532.03662,646.91577)"
- id="use2408" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,488.87666,721.67168)"
- id="use2409" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,575.19685,721.67152)"
- id="use2410" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,532.03659,796.4269)"
- id="use2411" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,618.35678,796.42673)"
- id="use2412" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,575.19682,871.18265)"
- id="use2413" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(258.96075)"
- id="use2414" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(388.44117,74.755531)"
- id="use2415" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(258.96075,149.51104)"
- id="use2416" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(388.44117,224.26656)"
- id="use2417" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(258.96075,299.02219)"
- id="use2418" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(388.44117,373.77771)"
- id="use2419" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(258.96075,448.53323)"
- id="use2420" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(388.44117,523.28875)"
- id="use2421" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(258.96075,598.04427)"
- id="use2422" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,532.03707,646.91574)"
- id="use2423" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,575.19729,721.67131)"
- id="use2424" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,488.87695,721.67127)"
- id="use2425" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,532.03718,796.42685)"
- id="use2426" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,445.71684,796.42682)"
- id="use2427" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,488.87705,871.18244)"
- id="use2428" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,402.5567,871.18241)"
- id="use2429" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,445.71693,945.93797)"
- id="use2430" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,359.3965,945.9381)"
- id="use2431" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,532.03665,497.40464)"
- id="use2432" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,618.3571,497.40503)"
- id="use2433" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,575.19689,572.16038)"
- id="use2434" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,661.51702,572.16026)"
- id="use2435" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,618.35712,646.91614)"
- id="use2436" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,704.67726,646.91601)"
- id="use2437" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,661.51705,721.67136)"
- id="use2438" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,747.83718,721.67122)"
- id="use2439" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,704.67728,796.4271)"
- id="use2440" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(517.92149)"
- id="use2441" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(647.40192,74.755531)"
- id="use2442" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(517.92149,149.51104)"
- id="use2443" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(647.40192,224.26656)"
- id="use2444" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(517.92149,299.02219)"
- id="use2445" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(647.40192,373.77771)"
- id="use2446" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(517.92149,448.53323)"
- id="use2447" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(647.40192,523.28875)"
- id="use2448" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(517.92149,598.04427)"
- id="use2449" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,661.51763,721.67135)"
- id="use2450" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,704.67732,796.4266)"
- id="use2451" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,618.35751,796.42688)"
- id="use2452" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,661.51722,871.18214)"
- id="use2453" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,575.19741,871.18242)"
- id="use2454" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,618.35707,945.93774)"
- id="use2455" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,532.03727,945.93801)"
- id="use2456" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,575.19696,1020.6933)"
- id="use2457" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,488.87707,1020.6937)"
- id="use2458" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,661.51706,422.64913)"
- id="use2459" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,747.8375,422.64953)"
- id="use2460" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,704.67729,497.40487)"
- id="use2461" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,790.99743,497.40475)"
- id="use2462" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,747.83753,572.16063)"
- id="use2463" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,834.15766,572.16049)"
- id="use2464" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,790.99745,646.91584)"
- id="use2465" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,877.31759,646.91571)"
- id="use2466" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,834.15769,721.67159)"
- id="use2467" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(776.88235)"
- id="use2468" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(906.36267,74.755531)"
- id="use2469" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(776.88235,149.51104)"
- id="use2470" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(906.36267,224.26656)"
- id="use2471" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(776.88235,299.02219)"
- id="use2472" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(906.36267,373.77771)"
- id="use2473" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(776.88235,448.53323)"
- id="use2474" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(906.36267,523.28875)"
- id="use2475" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="translate(776.88235,598.04427)"
- id="use2476" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,790.99765,796.42663)"
- id="use2477" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,834.15789,871.18221)"
- id="use2478" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,747.83755,871.18218)"
- id="use2479" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,790.99777,945.93775)"
- id="use2480" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,704.67744,945.93772)"
- id="use2481" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,747.83763,1020.6933)"
- id="use2482" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,661.5173,1020.6933)"
- id="use2483" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,704.67753,1095.4489)"
- id="use2484" />
- <use
- height="100%"
- width="100%"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(120.00001,618.3571,1095.449)"
- id="use2485" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,790.99746,347.89361)"
- id="use2486" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,877.31796,347.89398)"
- id="use2487" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,834.1577,422.64937)"
- id="use2488" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,920.47789,422.64921)"
- id="use2489" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,877.31793,497.40512)"
- id="use2490" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,963.63812,497.40495)"
- id="use2491" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,920.47786,572.16033)"
- id="use2492" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,1006.798,572.16017)"
- id="use2493" />
- <use
- height="100%"
- width="100%"
- style="opacity:0.85"
- x="0"
- y="0"
- inkscape:tiled-clone-of="#g1290"
- xlink:href="#g1290"
- transform="rotate(-120.00001,963.63809,646.91609)"
- id="use2494" />
+ inkscape:tile-cy="536.40016"
+ inkscape:tile-cx="336.93399"
+ inkscape:tile-h="30.283344"
+ inkscape:tile-w="80.925240"
+ id="g1290">
+ <path
+ sodipodi:nodetypes="ccccccsccccccccccscccccscccccccccccccccccccccccccccccccc"
+ id="path1353"
+ d="M 306.81250,518.28125 C 306.57461,518.29175 306.39530,518.40493 306.25000,518.62500 C 303.40107,522.93989 304.23430,522.10801 305.81250,527.62500 C 306.75167,530.90812 307.43893,535.84545 306.25047,539.86068 C 306.22354,539.85190 299.14100,539.66839 296.71875,536.15625 C 294.49136,536.26967 288.67233,537.19392 288.77386,542.72661 C 291.60193,545.64712 294.29252,547.09396 297.98045,548.22352 L 303.37238,549.87500 C 304.97406,550.28730 305.91058,550.88889 307.40363,553.87500 C 308.34708,555.76189 302.02156,556.86444 300.71875,557.12500 C 297.88302,557.69216 294.03806,557.65625 290.43750,557.65625 C 286.78125,557.65623 283.44350,557.63510 280.65625,558.75000 C 277.61572,559.96619 275.64997,562.29346 274.15625,563.78718 C 273.40037,564.54307 272.67963,565.46692 271.96875,566.06250 C 267.04776,572.45979 265.88216,581.31324 270.46875,591.78125 C 272.20616,596.26085 278.13765,600.47847 278.50000,605.50000 C 278.90623,611.12966 282.69029,618.84301 289.71875,619.43750 C 299.64211,620.27687 301.12763,621.28196 303.84375,621.22771 C 309.31311,621.11847 316.23201,620.77358 319.46875,620.18750 C 320.15151,620.06387 320.83029,620.02137 321.53125,619.93750 C 321.32100,618.48772 321.22186,617.02894 321.68750,616.03125 C 322.18077,614.97434 323.39355,611.45605 326.09375,612.25000 C 329.65508,613.29717 331.63567,615.56162 334.06250,618.40754 C 336.91968,617.88647 337.58769,617.77492 338.50386,616.37288 C 339.89543,614.24333 341.21954,612.75081 336.09375,606.78125 C 333.04836,603.23456 327.75826,607.49617 326.75000,600.43750 C 327.29775,599.76298 327.67627,599.06770 328.12500,598.37500 C 331.80935,597.69564 334.62221,597.00075 337.31250,594.43750 C 339.35018,592.49604 336.91867,589.70564 336.25000,588.75000 C 335.68127,587.93717 334.50479,587.29897 333.28125,586.78125 C 333.71981,585.56991 334.11338,584.31898 334.65625,583.15625 C 337.62980,576.78744 340.87653,570.32571 345.59375,563.50000 C 346.89513,561.61691 351.03858,553.18096 362.36203,554.57344 C 362.41835,554.54528 362.49277,554.50865 362.54953,554.47969 C 363.10112,554.71111 363.72105,554.90774 364.23703,555.01094 C 364.82513,555.12854 365.24943,555.41838 365.76828,555.72969 C 366.27595,556.03427 366.48925,556.13639 367.11203,556.26094 C 367.54531,556.34762 368.11370,556.44844 368.70578,556.44844 C 368.97202,556.44842 368.62285,555.53939 368.36203,555.10469 C 368.07791,554.63115 367.89328,554.35369 367.89328,553.66719 C 367.89328,552.73477 367.04824,551.14964 367.00000,550.25000 C 367.90741,549.52773 368.85445,548.83303 369.65625,548.03125 C 371.27605,546.41145 373.44425,543.23497 374.34375,539.90625 C 374.67808,539.65550 377.84787,536.54124 377.46891,536.16228 C 377.26164,535.95500 374.58221,533.00100 374.31250,532.87500 C 373.69035,530.10145 372.57378,528.23262 371.84375,525.31250 C 371.35687,523.36496 368.33025,520.53207 366.50000,520.21875 C 365.40185,520.03076 362.15531,520.75188 360.96875,523.12500 C 359.40017,526.26218 359.83142,529.41858 357.34375,531.90625 C 355.24927,534.00073 353.81149,536.21374 350.62500,538.60363 C 348.65764,540.07915 346.92717,541.44562 345.18750,542.06250 C 345.18750,542.06250 333.25287,542.44717 332.21875,542.17008 C 330.17829,541.62334 326.85481,541.28889 324.28125,539.26383 C 321.92209,537.40745 320.29688,535.38519 318.46875,532.21875 C 316.66847,529.10057 314.75276,525.73470 312.84375,523.56250 C 312.07633,522.68926 308.47771,518.20772 306.81250,518.28125 z "
+ style="fill:#ffd300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1.0000000;opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;" />
+ <path
+ transform="matrix(1.268764,0.000000,0.000000,1.268764,-98.58983,-144.6807)"
+ d="M 369.49063 536.34937 A 2.6543868 3.1852641 0 1 1 364.18186,536.34937 A 2.6543868 3.1852641 0 1 1 369.49063 536.34937 z"
+ sodipodi:ry="3.1852641"
+ sodipodi:rx="2.6543868"
+ sodipodi:cy="536.34937"
+ sodipodi:cx="366.83624"
+ id="path2215"
+ style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.080261566;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block"
+ sodipodi:type="arc" />
+ <path
+ d="M 369.37849 533.13312 A 1.5807023 1.2645618 0 1 1 366.21709,533.13312 A 1.5807023 1.2645618 0 1 1 369.37849 533.13312 z"
+ sodipodi:ry="1.2645618"
+ sodipodi:rx="1.5807023"
+ sodipodi:cy="533.13312"
+ sodipodi:cx="367.79779"
+ id="path2216"
+ style="color:#000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.080261566;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:nodetypes="cc"
+ transform="translate(0.000000,0.417450)"
+ id="path2220"
+ d="M 303.82877,539.49482 C 312.67984,541.15818 326.45078,540.86112 328.51055,560.04782"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+ <path
+ transform="matrix(-8.852539e-8,1.000000,1.000000,8.852539e-8,-181.3865,186.6669)"
+ id="path2221"
+ d="M 367.04413,550.19524 C 366.72075,551.48877 364.87840,548.61850 363.68582,548.02221 C 362.31236,547.33548 361.50290,547.18016 360.12995,546.83692 C 359.08880,546.57663 358.05050,546.63937 356.96919,546.63937"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+ <path
+ id="path2222"
+ d="M 358.74713,533.99628 C 357.39595,535.72536 357.40966,539.28875 359.99677,539.79450 C 360.43397,539.86963 360.88891,539.85041 361.31525,539.72522"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+ <path
+ transform="translate(0.000000,0.358292)"
+ sodipodi:nodetypes="ccc"
+ id="path2226"
+ d="M 327.73209,597.01410 C 325.31623,591.54806 316.35821,598.42700 317.34013,601.83950 C 313.84151,606.22918 298.54238,610.21864 295.38205,602.83687"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+ <path
+ transform="translate(-1.520105,-0.100527)"
+ id="path2886"
+ d="M 310.46875,573.81250 C 304.50608,573.81250 299.24929,576.45844 296.09375,580.46875 C 296.85852,581.25224 297.57982,582.07631 298.46875,582.75000 C 299.92436,583.85316 301.50113,584.80712 303.12500,585.62500 C 304.74887,586.44288 306.41234,587.11231 308.00000,587.65625 C 309.04233,588.10786 310.08177,588.41810 311.12500,588.59375 C 312.16823,588.76940 313.20607,588.80865 314.25000,588.78125 C 316.33785,588.72646 318.44180,588.33577 320.53125,587.90625 C 322.62070,587.47673 324.72303,587.03348 326.81250,586.81250 C 327.10498,586.78157 327.39504,586.80158 327.68750,586.78125 C 326.37948,579.43268 319.19299,573.81249 310.46875,573.81250 z "
+ style="opacity:0.16666667;color:#000000;fill:url(#radialGradient3521);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block;" />
+ <path
+ transform="translate(0.000000,0.436956)"
+ id="path3512"
+ d="M 333.06589,586.74164 C 324.71430,584.45822 316.34379,590.84256 308.00513,587.22967 C 301.65449,585.05391 294.19637,580.73203 292.17346,573.90100"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+ <path
+ sodipodi:nodetypes="cccc"
+ transform="translate(9.120633,-38.71985)"
+ id="path3522"
+ d="M 310.46875,573.81250 C 304.50608,573.81250 299.24929,575.39809 296.09375,579.40840 C 318.53684,578.57258 318.78111,598.96242 319.07357,598.94209 C 346.87162,580.88552 319.19299,573.81249 310.46875,573.81250 z "
+ style="opacity:0.16666664;color:#000000;fill:url(#radialGradient3523);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block" />
+ <path
+ sodipodi:nodetypes="cccc"
+ transform="matrix(-0.707107,0.707107,-0.707107,-0.707107,944.7754,798.2549)"
+ id="path1194"
+ d="M 310.46875,573.81250 C 304.50608,573.81250 300.20684,579.54386 297.05130,583.55417 C 315.47483,579.81326 323.74204,592.47424 320.35030,598.30373 C 339.81705,589.94176 319.19299,573.81249 310.46875,573.81250 z "
+ style="opacity:0.16666664;color:#000000;fill:url(#radialGradient1195);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:block" />
+ <path
+ sodipodi:nodetypes="csccc"
+ transform="matrix(0.595823,-0.586335,-0.586335,-0.595823,468.1987,1125.937)"
+ id="path1818"
+ d="M 286.70212,595.81818 C 284.58065,601.43052 276.68272,597.76178 277.88321,592.09119 C 278.76633,587.91970 284.05499,582.70135 286.82645,587.61116 C 288.43583,591.55346 280.19720,594.97918 281.33076,589.94395 C 281.80652,589.63731 282.42300,589.61685 282.94455,589.80609"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.1962602pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
</g>
+ <use
+ id="use2388"
+ transform="translate(121.3879,70.08331)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2389"
+ transform="translate(0.000000,140.1666)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2390"
+ transform="translate(121.3879,210.2499)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2391"
+ transform="translate(0.000000,280.3333)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2392"
+ transform="translate(121.3879,350.4166)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2393"
+ transform="translate(0.000000,420.4999)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2394"
+ transform="translate(121.3879,490.5832)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2395"
+ transform="translate(0.000000,560.6665)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2396"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1030.631,477.7652)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2397"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1152.019,547.8485)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2398"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1030.631,617.9318)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2399"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1152.019,688.0151)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2400"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1030.631,758.0984)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2401"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1152.019,828.1818)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2402"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1030.631,898.2651)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2403"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1152.019,968.3484)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2404"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1030.631,1038.432)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2405"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,101.5587,1131.435)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2406"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,222.9466,1201.519)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2407"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,101.5587,1271.602)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2408"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,222.9466,1341.685)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2409"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,101.5587,1411.769)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2410"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,222.9466,1481.852)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2411"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,101.5587,1551.935)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2412"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,222.9466,1622.018)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2413"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,101.5587,1692.102)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2414"
+ opacity="0.85000000"
+ transform="translate(242.7757,0.000000)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2415"
+ opacity="0.85000000"
+ transform="translate(364.1636,70.08331)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2416"
+ opacity="0.85000000"
+ transform="translate(242.7757,140.1666)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2417"
+ opacity="0.85000000"
+ transform="translate(364.1636,210.2499)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2418"
+ opacity="0.85000000"
+ transform="translate(242.7757,280.3333)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2419"
+ opacity="0.85000000"
+ transform="translate(364.1636,350.4166)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2420"
+ opacity="0.85000000"
+ transform="translate(242.7757,420.4999)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2421"
+ opacity="0.85000000"
+ transform="translate(364.1636,490.5832)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2422"
+ opacity="0.85000000"
+ transform="translate(242.7757,560.6665)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2423"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1273.407,477.7652)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2424"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1394.795,547.8485)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2425"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1273.407,617.9318)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2426"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1394.795,688.0151)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2427"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1273.407,758.0984)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2428"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1394.795,828.1818)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2429"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1273.407,898.2651)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2430"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1394.795,968.3484)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2431"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1273.407,1038.432)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2432"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,344.3345,1131.435)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2433"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,465.7223,1201.519)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2434"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,344.3345,1271.602)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2435"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,465.7223,1341.685)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2436"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,344.3345,1411.769)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2437"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,465.7223,1481.852)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2438"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,344.3345,1551.935)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2439"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,465.7223,1622.018)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2440"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,344.3345,1692.102)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2441"
+ transform="translate(485.5514,0.000000)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2442"
+ transform="translate(606.9393,70.08331)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2443"
+ transform="translate(485.5514,140.1666)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2444"
+ transform="translate(606.9393,210.2499)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2445"
+ transform="translate(485.5514,280.3333)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2446"
+ transform="translate(606.9393,350.4166)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2447"
+ transform="translate(485.5514,420.4999)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2448"
+ transform="translate(606.9393,490.5832)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2449"
+ transform="translate(485.5514,560.6665)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2450"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1516.183,477.7652)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2451"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1637.570,547.8485)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2452"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1516.183,617.9318)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2453"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1637.570,688.0151)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2454"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1516.183,758.0984)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2455"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1637.570,828.1818)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2456"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1516.183,898.2651)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2457"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1637.570,968.3484)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2458"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1516.183,1038.432)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2459"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,587.1102,1131.435)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2460"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,708.4980,1201.519)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2461"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,587.1102,1271.602)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2462"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,708.4980,1341.685)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2463"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,587.1102,1411.769)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2464"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,708.4980,1481.852)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2465"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,587.1102,1551.935)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2466"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,708.4980,1622.018)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2467"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,587.1102,1692.102)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2468"
+ opacity="0.85000000"
+ transform="translate(728.3272,0.000000)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2469"
+ opacity="0.85000000"
+ transform="translate(849.7150,70.08331)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2470"
+ opacity="0.85000000"
+ transform="translate(728.3272,140.1666)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2471"
+ opacity="0.85000000"
+ transform="translate(849.7150,210.2499)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2472"
+ opacity="0.85000000"
+ transform="translate(728.3272,280.3333)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2473"
+ opacity="0.85000000"
+ transform="translate(849.7150,350.4166)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2474"
+ opacity="0.85000000"
+ transform="translate(728.3272,420.4999)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2475"
+ opacity="0.85000000"
+ transform="translate(849.7150,490.5832)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2476"
+ opacity="0.85000000"
+ transform="translate(728.3272,560.6665)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2477"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1758.958,477.7652)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2478"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1880.346,547.8485)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2479"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1758.958,617.9318)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2480"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1880.346,688.0151)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2481"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1758.958,758.0984)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2482"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1880.346,828.1818)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2483"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1758.958,898.2651)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2484"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1880.346,968.3484)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2485"
+ transform="matrix(-0.500000,0.866025,-0.866025,-0.500000,1758.958,1038.432)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2486"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,829.8859,1131.435)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2487"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,951.2738,1201.519)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2488"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,829.8859,1271.602)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2489"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,951.2738,1341.685)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2490"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,829.8859,1411.769)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2491"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,951.2738,1481.852)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2492"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,829.8859,1551.935)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2493"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,951.2738,1622.018)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
+ <use
+ id="use2494"
+ opacity="0.85000000"
+ transform="matrix(-0.500000,-0.866025,0.866025,-0.500000,829.8859,1692.102)"
+ xlink:href="#g1290"
+ inkscape:tiled-clone-of="#g1290"
+ y="0"
+ x="0" />
</g>
</svg>
diff --git a/share/examples/text-on-path.svg b/share/examples/text-on-path.svg
index eed685302..c4742a24d 100644
--- a/share/examples/text-on-path.svg
+++ b/share/examples/text-on-path.svg
@@ -11,31 +11,31 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="text-on-path.svg"
- inkscape:version="0.92.0 r15304"
+ inkscape:version="0.92"
sodipodi:version="0.32"
id="svg1"
- height="216.33148mm"
- width="208.59648mm"
+ height="297mm"
+ width="605.28000pt"
version="1.1">
<defs
id="defs3">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="0 : 561.25983 : 1"
- inkscape:vp_y="0 : 1066.6667 : 0"
- inkscape:vp_z="807.04004 : 561.25983 : 1"
- inkscape:persp3d-origin="403.52002 : 374.17322 : 1"
+ inkscape:vp_x="0 : 526.18109 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="756.60004 : 526.18109 : 1"
+ inkscape:persp3d-origin="378.30002 : 350.78739 : 1"
id="perspective90" />
</defs>
<sodipodi:namedview
inkscape:current-layer="svg1"
- inkscape:window-y="25"
- inkscape:window-x="98"
- inkscape:window-height="951"
- inkscape:window-width="1089"
- inkscape:cy="408.8154"
- inkscape:cx="394.19807"
- inkscape:zoom="0.8952696"
+ inkscape:window-y="0"
+ inkscape:window-x="0"
+ inkscape:window-height="1000"
+ inkscape:window-width="1225"
+ inkscape:cy="689.50235"
+ inkscape:cx="479.26439"
+ inkscape:zoom="1.29"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
@@ -43,11 +43,7 @@
pagecolor="#ffffff"
id="base"
showgrid="false"
- inkscape:window-maximized="0"
- fit-margin-top="5"
- fit-margin-left="5"
- fit-margin-right="5"
- fit-margin-bottom="5" />
+ inkscape:window-maximized="1" />
<metadata
id="metadata4">
<rdf:RDF>
@@ -56,381 +52,330 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<path
- transform="matrix(-2.0673333,1.1935744,-1.1935744,-2.0673333,1835.6319,1128.0223)"
- d="m 341.72628,601.83162 c 17.33152,-14.41598 5.48621,-46.58634 -16.57761,-51.21119 -20.48335,-4.29357 -44.64233,30.92005 -26.94195,42.08689 19.06614,12.02848 46.00157,-9.17827 43.58197,-31.59137 -2.24628,-20.80761 -43.20195,-32.90256 -48.35253,-12.61775 -5.548,21.84998 22.94432,40.91385 43.51275,31.68664 19.09507,-8.56624 17.94205,-51.25495 -2.94157,-49.88509 -22.49498,1.47556 -31.82119,34.46443 -16.6896,51.1748 14.04768,15.51338 54.29075,1.22526 46.53454,-18.21293 -8.35467,-20.93804 -42.6109,-19.61367 -53.8275,-0.0589 -10.41312,18.15403 15.61148,52.0122 31.7015,38.62888 z"
- inkscape:randomized="0"
+ transform="matrix(-1.938125,1.118976,-1.118976,-1.938125,1739.406,987.5115)"
+ d="M 341.72628,601.83162 C 359.05780,587.41564 347.21249,555.24528 325.14867,550.62043 C 304.66532,546.32686 280.50634,581.54048 298.20672,592.70732 C 317.27286,604.73580 344.20829,583.52905 341.78869,561.11595 C 339.54241,540.30834 298.58674,528.21339 293.43616,548.49820 C 287.88816,570.34818 316.38048,589.41205 336.94891,580.18484 C 356.04398,571.61860 354.89096,528.92989 334.00734,530.29975 C 311.51236,531.77531 302.18615,564.76418 317.31774,581.47455 C 331.36542,596.98793 371.60849,582.69981 363.85228,563.26162 C 355.49761,542.32358 321.24138,543.64795 310.02478,563.20274 C 299.61166,581.35677 325.63626,615.21494 341.72628,601.83162 z "
+ inkscape:randomized="0.0000000"
inkscape:rounded="0.41880668"
inkscape:flatsided="false"
sodipodi:arg2="-1.6363991"
sodipodi:arg1="1.1491439"
sodipodi:r2="16.735273"
sodipodi:r1="37.824844"
- sodipodi:cy="567.3197"
+ sodipodi:cy="567.31970"
sodipodi:cx="326.24576"
sodipodi:sides="5"
id="path1003"
- style="color:#000000;opacity:0.09747291;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25114322;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+ style="opacity:0.097472914;color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2511432;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
sodipodi:type="star" />
<text
+ sodipodi:linespacing="100%"
+ transform="matrix(1.000000,0.000000,0.000000,2.251099,-21.25875,-634.2331)"
id="text2252"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.60527611px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-74.834648"
- transform="matrix(1,0,0,2.251099,-85.078106,-1082.0699)"><textPath
- style="font-family:'Bitstream Vera Sans';stroke-width:1.06666669pt"
+ style="font-size:9.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Sans;"
id="textPath2286"
xlink:href="#path2267"><tspan
- style="font-family:'Bitstream Vera Sans';stroke-width:1.06666669pt"
+ style="font-family:Bitstream Vera Sans;"
id="tspan2253">Several texts</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
+ transform="matrix(1.000000,0.000000,0.000000,1.403056,-17.05781,-255.5465)"
id="text2255"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.66289234px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.26347378pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-508.41428"
- transform="scale(0.84423334,1.1845066)"
- x="-95.467804"><textPath
- style="font-family:'Bitstream Vera Sans';stroke-width:1.26347378pt"
+ style="font-size:9.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Sans;"
id="textPath2290"
xlink:href="#path2267"><tspan
- style="font-family:'Bitstream Vera Sans';stroke-width:1.26347378pt"
+ style="font-family:Bitstream Vera Sans;"
id="tspan2256">can be attached to the same path.</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
+ transform="matrix(1.111838,0.000000,0.000000,0.970866,-46.58320,-31.24526)"
id="text2258"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.3864994px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.10822806pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-255.14598"
- transform="scale(1.0701413,0.93445607)"
- x="-109.20307"><textPath
- style="font-family:'Bitstream Vera Sans';stroke-width:1.10822806pt"
+ style="font-size:9.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Sans;"
id="textPath2294"
xlink:href="#path2267"><tspan
- style="font-family:'Bitstream Vera Sans';stroke-width:1.10822806pt"
+ style="font-family:Bitstream Vera Sans;"
id="tspan2259">An attached text can be freely moved and transformed</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
+ transform="translate(0.122982,-4.828527)"
id="text2264"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.60000038px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-218.6403"
- x="-62.270924"><textPath
- style="font-family:'Bitstream Vera Sans';stroke-width:1.06666669pt"
+ style="font-size:9.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Sans;"
id="textPath2302"
xlink:href="#path2267"><tspan
- style="font-family:'Bitstream Vera Sans';stroke-width:1.06666669pt"
+ style="font-family:Bitstream Vera Sans;"
id="tspan2265">without losing the link to its path.</tspan></textPath></text>
<path
sodipodi:nodetypes="cc"
id="path2267"
- d="m 335.50864,504.91661 c 38.2244,-51.5575 104.69196,110.18417 252.5744,30.86089"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.33333385;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.66666773, 1.33333387;stroke-dashoffset:0;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 333.04044,403.34989 C 368.87582,355.01473 431.18916,506.64755 569.82894,432.28197"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.2500005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:2.5000010 1.2500005 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;" />
<text
+ transform="translate(15.77788,-10.17928)"
id="text2927"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.96000004px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-74.834648"
- transform="translate(-45.572367,-149.51313)"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath6114"
- xlink:href="#path6098"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan2928"
- style="stroke-width:1.06666669pt">Text on path is fully editable, including kerning and letterspacing.</tspan></textPath></text>
+ xlink:href="#path6098"><tspan
+ id="tspan2928">Text on path is fully editable, including kerning and letterspacing.</tspan></textPath></text>
<text
+ transform="translate(1.577177,20.05106)"
id="text2933"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.96000004px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-192.10208"
- x="-60.719784"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath6777"
- xlink:href="#path6098"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan2934"
- style="stroke-width:1.06666669pt"> Horizontal kerning is often necessary to fix intervals in sharp bends:</tspan></textPath></text>
+ xlink:href="#path6098"><tspan
+ id="tspan2934"> Horizontal kerning is often necessary to fix intervals in sharp bends:</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
+ transform="translate(-27.01395,2.842171e-14)"
id="text2936"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.53333378px;line-height:100%;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-74.834648"
- transform="translate(-91.216986,-138.65523)"><textPath
- style="font-family:'Bitstream Vera Serif';stroke-width:1.06666669pt"
+ style="font-size:8.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Serif;"
id="textPath7441"
xlink:href="#path7440"><tspan
- dx="0 0 0 0 0 0 0 0 0 0 0 0 0 -0.048257273 0.046831831"
+ dx="0 0 0 0 0 0 0 0 0 0 0 0 0 -0.045241192 0.043904841"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
- style="font-family:'Bitstream Vera Serif';letter-spacing:1.00700927;stroke-width:1.06666669pt"
+ style="font-family:Bitstream Vera Serif;letter-spacing:0.94407117;"
id="tspan2937">Without kerning:</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
id="text2939"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.36117363px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-62.402107"
- y="-138.65523"><textPath
+ style="font-size:5.9636002;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath8886"
- xlink:href="#path8260"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan2940"
- style="stroke-width:1.06666669pt"> too dense</tspan></textPath></text>
+ xlink:href="#path8260"><tspan
+ id="tspan2940"> too dense</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
id="text2942"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.36117363px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-62.402107"
- y="-138.65523"><textPath
+ style="font-size:5.9636002;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath8261"
- xlink:href="#path8189"
- style="stroke-width:1.06666669pt"><tspan
- style="letter-spacing:0.64914674;stroke-width:1.06666669pt"
+ xlink:href="#path8189"><tspan
+ style="letter-spacing:0.60857505;"
id="tspan2943"> too sparse</tspan></textPath></text>
<g
- transform="matrix(3.954125,0,0,3.954125,-577.61642,-2374.8699)"
+ transform="matrix(3.954125,0.000000,0.000000,3.954125,-523.0143,-2296.450)"
id="g3595">
<text
+ transform="translate(-0.179946,0.667297)"
+ sodipodi:linespacing="100%"
id="text2969"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24.53333282px;line-height:100%;font-family:'Times New Roman';writing-mode:lr-tb;text-anchor:start;opacity:0.08303247;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-9.4059057"
- y="-60.225147"
- transform="translate(-0.1919424,0.71178347)"><textPath
- style="font-family:'Times New Roman';stroke-width:1.06666669pt"
+ style="font-size:23.000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;opacity:0.083032437;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Times New Roman;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
+ style="font-family:Times New Roman;"
id="textPath2970"
xlink:href="#path2951"><tspan
dy="0 0 0 0 0 0 0 0 0 0 0 0 0"
- dx="0 0.46066141 -0.6142152 -0.92132276 0.3071076 -0.92132276 -0.76776898 -1.3819841 0 0 -0.76776898 -2.917522 -1.9961993"
- style="font-family:'Times New Roman';letter-spacing:-4.0380888;stroke-width:1.06666669pt"
+ dx="0 0.43187007 -0.57582676 -0.86374009 0.28791338 -0.86374009 -0.71978343 -1.2956101 0 0 -0.71978343 -2.7351768 -1.8714368"
+ style="font-family:Times New Roman;letter-spacing:-3.7857084;"
id="tspan2971">inkscape 0.40</tspan></textPath></text>
<path
+ transform="matrix(0.707107,0.707107,0.707107,-0.707107,-356.0688,926.3581)"
id="path2951"
- d="m 177.80212,690.33912 c 0.13957,-2.79976 0.95463,-5.55868 2.39073,-7.96833 4.26081,-7.14931 13.86593,-10.25616 21.1311,-5.69553 5.69904,3.5775 8.15818,11.44544 4.23469,17.23271 -2.88373,4.2536 -9.04001,6.0773 -13.33432,2.77385 -2.81728,-2.16721 -4.03524,-6.67806 -1.31303,-9.43593"
- style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.13488021;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
- inkscape:connector-curvature="0" />
+ d="M 172.24629,567.04534 C 170.48282,568.99386 169.19421,571.36310 168.54883,573.91249 C 166.63401,581.47640 170.94179,589.90332 178.78126,591.69620 C 184.93079,593.10259 191.77674,589.51703 193.01227,583.07965 C 193.92037,578.34822 191.04825,573.05820 186.01160,572.40134 C 182.70732,571.97040 178.90962,574.15330 178.88598,577.78612"
+ style="color:#000000;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.12645017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<text
+ sodipodi:linespacing="100%"
id="text2948"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.4000001px;line-height:100%;font-family:'Times New Roman';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-size:6.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Times New Roman;text-anchor:start;writing-mode:lr;"
xml:space="preserve"><textPath
- style="font-family:'Times New Roman';stroke-width:1.06666669pt"
+ style="font-family:Times New Roman;"
id="textPath2965"
xlink:href="#path2951"><tspan
dy="0 0"
- dx="0 0.3071076"
- style="font-family:'Times New Roman';letter-spacing:3.5116384;stroke-width:1.06666669pt"
+ dx="0 0.28791338"
+ style="font-family:Times New Roman;letter-spacing:3.2921610;"
id="tspan2949">inkscape 0.40</tspan></textPath></text>
</g>
<text
id="text5470"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.96000004px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- transform="translate(-62.402106,-138.65523)"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath5473"
- xlink:href="#path1003"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan5471"
- style="stroke-width:1.06666669pt">Text can be attached not only to a path but also to a shape (rectangle, ellipse, star, or spiral) without converting it to path.</tspan></textPath></text>
+ xlink:href="#path1003"><tspan
+ id="tspan5471">Text can be attached not only to a path but also to a shape (rectangle, ellipse, star, or spiral) without converting it to path.</tspan></textPath></text>
<path
sodipodi:nodetypes="csss"
id="path6098"
- d="m 84.563482,390.45492 c -20.324793,44.23442 25.485258,107.11746 75.240168,84.48097 38.0519,-17.3121 84.34316,-1.3383 108.52291,31.81955 22.26908,30.53775 68.56616,48.81122 93.1132,11.27972"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 97.779353,296.04205 C 78.724863,337.51182 121.67179,396.46467 168.31702,375.24296 C 203.99067,359.01287 247.38873,373.98831 270.05724,405.07379 C 290.93451,433.70293 334.33802,450.83431 357.35087,415.64853"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<text
+ transform="translate(3.601625,0.940172)"
id="text2930"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.96000004px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-212.48703"
- x="-58.560371"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath6147"
- xlink:href="#path6098"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan2931"
- style="stroke-width:1.06666669pt" /><tspan
- id="tspan6122"
- style="stroke-width:1.06666669pt">(The path or shape is editable, too.)</tspan></textPath></text>
+ xlink:href="#path6098"><tspan
+ id="tspan2931"> </tspan><tspan
+ id="tspan6122">(The path or shape is editable, too.)</tspan></textPath></text>
<path
sodipodi:nodetypes="cccc"
id="path7440"
- d="m 130.16664,631.55298 c 5.42895,-39.94665 22.25869,-79.91172 31.48789,-79.91172 9.22921,0 8.68632,43.64541 28.23053,44.38517 19.54421,0.73974 19.54422,-18.12395 67.86184,-17.75406"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666656pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 140.53232,522.07148 C 145.62196,484.62150 161.39984,447.15425 170.05222,447.15425 C 178.70460,447.15425 178.19564,488.07182 196.51834,488.76534 C 214.84103,489.45885 214.84104,471.77414 260.13881,472.12091"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999990pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<text
+ transform="translate(-30.55726,92.12600)"
id="text7446"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.96000004px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-115.22215"
- x="-94.996513"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath7447"
- xlink:href="#path7440"
- style="stroke-width:1.06666669pt"><tspan
- style="letter-spacing:1.48762774;stroke-width:1.06666669pt"
+ xlink:href="#path7440"><tspan
+ style="letter-spacing:1.3946511;"
id="tspan7448">With kerning:</tspan></textPath></text>
<text
id="text8182"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.32975292px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-62.402107"
- y="-138.65523"><textPath
+ style="font-size:14.371643;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath8185"
- xlink:href="#path7440"
- style="stroke-width:1.06666669pt"><tspan
- style="letter-spacing:-0.45089895;stroke-width:1.06666669pt"
+ xlink:href="#path7440"><tspan
+ style="letter-spacing:-0.42271775;"
id="tspan8183">mollusca monoplacophora</tspan></textPath></text>
<path
id="path8189"
- d="m 143.07328,525.65641 c 7.30628,14.28546 26.23142,15.5561 34.99076,2.71449"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666651pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 152.63229,422.79345 C 159.48193,436.18607 177.22425,437.37729 185.43613,425.33828"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:0.99999981pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<path
id="path8260"
- d="m 171.62281,618.38611 c 7.30628,-14.28547 26.23143,-15.5561 34.99076,-2.71449"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666651pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 179.39748,509.72754 C 186.24712,496.33492 203.98944,495.14370 212.20132,507.18271"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:0.99999981pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<path
sodipodi:nodetypes="cccc"
id="path9511"
- d="m 130.16664,729.82068 c 5.42895,-39.94665 22.25869,-79.91172 31.48789,-79.91172 9.22921,0 8.68632,43.64541 28.23053,44.38517 19.54421,0.73974 19.54422,-18.12395 67.86184,-17.75406"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.26666656pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 140.53232,614.19745 C 145.62196,576.74747 161.39984,539.28022 170.05222,539.28022 C 178.70460,539.28022 178.19564,580.19779 196.51834,580.89131 C 214.84103,581.58482 214.84104,563.90011 260.13881,564.24688"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.24999990pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<text
+ transform="translate(0.000000,92.12597)"
id="text9512"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.32975292px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-115.22218"
- x="-62.402107"><textPath
+ style="font-size:14.371643;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath9513"
- xlink:href="#path7440"
- style="stroke-width:1.06666669pt"><tspan
- dx="0 -0.45773166 -0.45773166 0 -0.22886583 0 0 0 0 0.68659753 -2.9752557 -4.8122187 -1.6020609 0 0 0 0.45773166 3.8907192 1.6020609 0.45773166"
+ xlink:href="#path7440"><tspan
+ dx="0 -0.42912343 -0.42912343 0 -0.21456172 0 0 0 0 0.64368516 -2.7893023 -4.5114551 -1.5019321 0 0 0 0.42912343 3.6475492 1.5019321 0.42912343"
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
- style="letter-spacing:-0.26364499;stroke-width:1.06666669pt"
+ style="letter-spacing:-0.24716718;"
id="tspan9514">mollusca monoplacophora</tspan></textPath></text>
<text
+ sodipodi:linespacing="100%"
id="text9517"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:17.92000008px;line-height:100%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-62.402107"
- y="-138.65523"><textPath
+ style="font-size:16.799999;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath9530"
- xlink:href="#path9529"
- style="stroke-width:1.06666669pt"><tspan
- dx="0 0 0 -0.92753601 -0.70933247 0 0 0 -1.0639987 -0.88666558 0 0.91546315 -0.26372677 -1.0473268 -2.7463901 -0.91546333 -0.91546333 -1.3731951 0 -1.3731954 -1.3731952 -0.91546339 -0.45773166 -0.45773166 0 0 0 -0.88666558 -1.3731945 0 -2.7463899"
- dy="0 0 -2.7463903 0.51809579 0 0 0 0 0 0 0 -6.8659749 3.6618545 -4.119585 3.6618533 -2.7463901 2.2886584 5.0350485 1.8309264 -4.119585 0.45773166 0 0 0 0 0 0 0 -0.45773172 0 0"
- style="font-family:'Bitstream Vera Sans';letter-spacing:-0.62726194;stroke-width:1.06666669pt"
+ xlink:href="#path9529"><tspan
+ dx="0 0 0 -0.86956501 -0.66499919 0 0 0 -0.99749881 -0.831249 0 0.85824668 -0.24724384 -0.98186892 -2.5747406 -0.85824686 -0.85824686 -1.2873703 0 -1.2873707 -1.2873704 -0.85824692 -0.42912343 -0.42912343 0 0 0 -0.831249 -1.2873698 0 -2.5747404"
+ dy="0 0 -2.5747409 0.48571482 0 0 0 0 0 0 0 -6.4368515 3.4329886 -3.8621111 3.4329875 -2.5747406 2.1456172 4.7203579 1.7164935 -3.8621109 0.42912343 0 0 0 0 0 0 0 -0.42912349 0 0"
+ style="font-family:Bitstream Vera Sans;letter-spacing:-0.58805805;"
id="tspan9518"> Vertical kerning works, too.</tspan></textPath></text>
<path
sodipodi:nodetypes="cs"
id="path9529"
- d="m 326.10863,631.41979 c 96.38522,-90.19907 164.35329,-15.51318 203.57533,22.68619"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:0.866669;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.86666914, 2.60000747;stroke-dashoffset:0;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 324.22793,521.94662 C 414.58908,437.38499 478.30914,507.40301 515.07981,543.21492"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:0.81250221;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:0.81250232 2.4375070 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
sodipodi:nodetypes="csssssssssssss"
id="path10162"
- d="m 204.08933,713.41696 c 14.66085,22.29186 45.49891,32.32549 70.6108,19.37732 32.50463,-16.76001 42.97707,-68.80597 72.15231,-93.57292 26.52397,-22.51628 61.65199,15.94353 79.59032,39.43876 12.45417,16.3122 27.66561,31.5582 48.61055,37.55696 26.75661,7.66328 62.04377,18.27942 83.0065,-4.76642 20.56747,-22.6113 6.63436,-55.65541 11.3935,-83.16655 4.39953,-25.43237 26.8145,-45.74057 53.24819,-46.46239 23.06608,-0.62985 34.15245,-0.93053 58.81557,-6.40692 21.80144,-4.84096 71.82016,-39.88366 70.79275,-66.48643 -2.88174,-74.61639 -86.0942,-70.29852 -125.6874,-32.7462 -24.89458,23.61137 -16.06154,103.68304 66.63474,64.93057 23.62352,-11.07026 40.66472,-40.73038 20.16691,-61.66093 -26.94797,-27.51686 -125.93776,31.17582 -34.89756,47.04701"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="m 209.83484,598.81897 c 13.74455,20.89861 42.65523,30.30514 66.19763,18.16623 30.47309,-15.71251 40.291,-64.50559 67.64279,-87.72461 24.86622,-21.10901 57.79874,14.94706 74.61592,36.97384 11.67579,15.29269 25.93651,29.58581 45.57239,35.20965 25.08432,7.18432 58.16604,17.13695 77.8186,-4.46852 19.282,-21.19809 6.21971,-52.17695 10.6814,-77.96864 4.12456,-23.84285 25.1386,-42.88179 49.92018,-43.55849 21.62445,-0.59049 32.01792,-0.87237 55.1396,-6.00649 20.43885,-4.5384 67.3314,-37.39093 66.3682,-62.33103 -2.70163,-69.95286 -80.71331,-65.90486 -117.83194,-30.69956 -23.33867,22.13566 -15.05769,97.20285 62.47007,60.87241 22.14705,-10.37837 38.12318,-38.18473 18.90648,-57.80712 -25.26372,-25.79706 -118.06665,29.22733 -32.71646,44.10657"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
<text
+ sodipodi:linespacing="100.00000%"
id="text10159"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.20000076px;line-height:100%;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#ff0023;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- transform="translate(-62.402106,-138.65523)"><textPath
- style="font-family:'Bitstream Vera Serif';stroke-width:1.06666669pt"
+ style="font-size:18.000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#ff0023;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif"
+ xml:space="preserve"><textPath
+ style="font-family:Bitstream Vera Serif"
id="textPath10172"
xlink:href="#path10162"><tspan
rotate="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 330.39673 0 38.240627 38.240627 0"
- dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.7209294 0 3.7209294 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
- dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.067183 0 2.067183 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.92753619 1.8550724 0.46376809 1.3913043 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.8550724 0.92753619 0.46376809 0.46376809 0.46376809 0.46376809"
- style="font-family:'Bitstream Vera Serif';stroke-width:1.06666669pt"
+ dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.4883714 0 3.4883714 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
+ dx="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.937984 0 1.937984 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.86956519 1.7391304 0.43478259 1.3043478 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.7391304 0.86956519 0.43478259 0.43478259 0.43478259 0.43478259"
+ style="font-family:Bitstream Vera Serif"
id="tspan10160">Меня так просто не раздавишь, царицу санками не сдвинешь, и в доказательство мы ляжем с царицей прямо под трамвай.</tspan></textPath></text>
<text
+ transform="matrix(1.011635,7.468780e-2,-7.468780e-2,1.011635,-128.7397,-6.707906e-2)"
id="text10797"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.21969414px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.0820142pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-206.34631"
- transform="rotate(4.2224182)"
- x="-194.41902"><textPath
+ style="font-size:8.3999996;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath10971"
- xlink:href="#path10803"
- style="stroke-width:1.0820142pt"><tspan
- id="tspan10798"
- style="stroke-width:1.0820142pt">If your text is attached to an invisible path, select the text and press Shift+D to select the path.</tspan></textPath></text>
+ xlink:href="#path10803"><tspan
+ id="tspan10798">If your text is attached to an invisible path, select the text and press Shift+D to select the path.</tspan></textPath></text>
<path
sodipodi:nodetypes="cc"
id="path10803"
- d="m 328.55386,676.83206 c 39.84729,82.10035 236.07878,16.62677 440.94466,15.71842"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 326.52034,564.52062 C 363.87717,641.48970 547.84419,580.10822 739.90596,579.25664"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;" />
<g
- transform="matrix(1.227326,0,0,1.227326,-174.48746,-62.02471)"
+ transform="matrix(1.227326,0.000000,0.000000,1.227326,-145.0809,-128.1576)"
id="g12854">
<path
- transform="matrix(-1.0666667,0,0,1.0666667,1376.9152,1.582272)"
- d="m 700.59766,552.98828 c -1.65323,-0.156 -3.37531,-0.0879 -5.13672,0.20899 -10.93912,1.84366 -17.84757,10.25462 -20.6543,20.09961 -5.63734,-0.72057 -11.17314,-0.41051 -16.00391,1.49804 -5.89633,2.32954 -10.65214,7.4573 -11.71484,14.625 -1.62693,10.9734 4.23859,20.1415 12.73438,25.85352 -2.42804,5.13945 -3.84398,10.50076 -3.52149,15.68554 0.39356,6.32736 3.80071,12.43462 10.28906,15.66016 9.93377,4.93838 20.46436,2.1923 28.52149,-4.12305 4.13766,3.89773 8.7992,6.90138 13.83008,8.19727 6.13957,1.58147 13.00124,0.22902 18.07421,-4.94531 7.76644,-7.9216 8.40897,-18.78594 4.89258,-28.40039 4.98546,-2.73051 9.28324,-6.23525 12.07032,-10.61914 3.40148,-5.35032 4.23438,-12.29496 0.88086,-18.71875 -5.16231,-9.88858 -15.38014,-13.83989 -25.66797,-13.41602 -0.90242,-4.71771 -2.31604,-9.21367 -4.79297,-12.88867 -3.13359,-4.64928 -7.90729,-8.16069 -13.80078,-8.7168 z m -19.47657,29.60547 c 3.37075,1.07998 6.67646,2.5707 9.66211,4.42773 -1.11721,1.0653 -2.13728,2.224 -3.125,3.41211 -1.97345,0.51425 -3.88369,1.19539 -5.71875,2.07813 -0.70023,-3.29816 -0.97231,-6.6674 -0.81836,-9.91797 z m 31.34766,0.86328 c 0.0151,3.53849 -0.38041,7.14077 -1.22266,10.55274 -1.35942,-0.73363 -2.77684,-1.34566 -4.21289,-1.91797 -1.09825,-1.71624 -2.33481,-3.32159 -3.74023,-4.79297 2.9191,-1.68434 6.03789,-2.98402 9.17578,-3.8418 z m -18.16211,13.73047 c 2.46328,-0.005 4.95647,0.5048 7.44531,1.26953 0.32094,0.68067 0.68683,1.35432 0.91407,2.04883 0.76592,2.34091 1.05207,4.86943 1.09375,7.47266 -0.54805,0.51529 -1.07512,1.07078 -1.66602,1.50195 -1.98953,1.45173 -4.3073,2.50539 -6.76953,3.34961 -0.65983,-0.36197 -1.3518,-0.69315 -1.94336,-1.1211 -1.99562,-1.44364 -3.71375,-3.3199 -5.27734,-5.40039 0.14055,-0.73961 0.24205,-1.49877 0.46679,-2.19531 0.75635,-2.34419 2.00956,-4.55889 3.50586,-6.68945 0.7463,-0.0948 1.49976,-0.23483 2.23047,-0.23633 z m -16.49805,7.13672 c 0.66835,1.39284 1.45568,2.7217 2.28125,4.0293 -0.12036,2.03416 -0.0631,4.05952 0.20899,6.07617 -3.35248,-0.35311 -6.64016,-1.13444 -9.6836,-2.28516 2.06808,-2.8715 4.50558,-5.5549 7.19336,-7.82031 z m 37.03907,1.67187 c 2.50374,2.25615 4.70294,4.82119 6.48828,7.54102 -3.36042,1.10722 -6.90898,1.84272 -10.41406,2.0957 0.27775,-1.51871 0.42276,-3.05549 0.52343,-4.59765 1.29298,-1.57488 2.43713,-3.24764 3.40235,-5.03907 z m -20.05469,15.08594 c 1.89704,0.74294 3.84029,1.31541 5.8418,1.67969 -1.37179,3.07849 -3.12951,5.96541 -5.16407,8.5039 -2.09174,-2.85405 -3.88901,-6.00171 -5.21289,-9.25781 1.53081,-0.20536 3.03702,-0.5448 4.53516,-0.92578 z"
+ transform="matrix(-1.000000,0.000000,0.000000,1.000000,1290.858,1.483380)"
+ d="M 633.40625,507.96875 C 626.96347,508.57674 621.75599,512.41476 618.31250,517.53125 C 615.51095,521.69391 613.76357,526.75577 612.78125,532.15625 C 601.32419,531.61751 589.97543,535.97000 584.25000,546.93750 C 580.56582,553.99484 581.48100,561.54898 585.21875,567.43750 C 588.35081,572.37180 593.24541,576.31568 598.93750,579.37500 C 594.88655,590.09597 595.46615,602.19956 604.12500,611.03125 C 609.69627,616.71373 617.15648,618.16954 623.90625,616.43750 C 629.55885,614.98700 634.83561,611.55623 639.50000,607.09375 C 648.45574,614.26453 660.17210,617.41353 671.25000,611.90625 C 678.37725,608.36299 682.09763,601.73448 682.53125,594.78125 C 682.89434,588.95896 681.24259,582.87619 678.43750,577.06250 C 688.01620,570.76400 694.65760,560.60833 692.84375,548.37500 C 691.67634,540.50145 686.48192,534.93121 680.00000,532.37500 C 674.57203,530.23443 668.30095,529.91081 661.90625,530.78125 C 658.88087,519.70965 651.26947,510.27598 639.06250,508.21875 C 637.11902,507.89122 635.20710,507.79881 633.40625,507.96875 z M 655.59375,540.09375 C 655.83778,544.13336 655.46381,548.33571 654.53125,552.43750 C 652.30303,551.32233 649.97977,550.42869 647.56250,549.81250 C 646.33242,548.32593 645.00659,546.90982 643.59375,545.59375 C 647.26853,543.23739 651.38805,541.38370 655.59375,540.09375 z M 619.68750,541.03125 C 623.60550,542.04997 627.47602,543.71469 631.09375,545.87500 C 629.35839,547.64602 627.82317,549.56972 626.50000,551.65625 C 624.69256,552.36629 622.92696,553.18432 621.21875,554.12500 C 620.11318,549.90013 619.61348,545.42647 619.68750,541.03125 z M 640.43750,556.53125 C 641.33849,556.53310 642.24983,556.69387 643.15625,556.81250 C 644.92146,559.28544 646.39435,561.84494 647.28125,564.59375 C 647.56533,565.47421 647.70490,566.37829 647.87500,567.28125 C 646.06215,569.73287 644.05657,571.93381 641.71875,573.62500 C 641.00839,574.13888 640.16187,574.56632 639.34375,575.00000 C 636.45682,574.03850 633.75084,572.84426 631.43750,571.15625 C 630.71002,570.62542 630.04500,569.95324 629.37500,569.31250 C 629.40136,566.27160 629.72867,563.33317 630.62500,560.59375 C 630.90512,559.73762 631.34550,558.89917 631.75000,558.06250 C 634.65115,557.14714 637.56276,556.52534 640.43750,556.53125 z M 658.65625,564.25000 C 662.04694,567.01982 665.12217,570.33517 667.65625,573.93750 C 663.87587,575.43287 659.76513,576.39354 655.56250,576.78125 C 655.93354,574.30813 656.03528,571.83516 655.87500,569.34375 C 656.91447,567.71004 657.83395,566.00859 658.65625,564.25000 z M 617.59375,566.12500 C 618.73979,568.33930 620.09783,570.42229 621.68750,572.34375 C 621.80690,574.28631 622.03487,576.21066 622.40625,578.12500 C 618.05208,577.87086 613.65308,576.98650 609.50000,575.56250 C 611.67945,572.12289 614.42044,568.91194 617.59375,566.12500 z M 639.87500,583.25000 C 641.74747,583.73581 643.66148,584.12930 645.59375,584.37500 C 644.00608,588.44470 641.76648,592.36039 639.12500,595.87500 C 636.53863,592.74247 634.35169,589.12702 632.68750,585.25000 C 635.15603,584.82721 637.56454,584.17358 639.87500,583.25000 z "
inkscape:href="#path11596"
id="path12219"
- style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.8125, 2.4375;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+ style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.81250000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:0.81250000 2.4375000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
xlink:href="#path11596"
- inkscape:original="M 700.23242 556.84961 C 698.9322 556.72692 697.55615 556.77699 696.10547 557.02148 C 685.60298 558.79156 679.56524 567.37773 677.75 577.66406 C 684.66155 579.10579 691.6161 582.29677 697.08203 586.74219 C 702.72027 582.52726 709.46063 579.66329 716.11523 578.72852 C 714.88266 567.41022 709.49021 557.72318 700.23242 556.84961 z M 716.11523 578.72852 C 716.87947 585.74624 715.99705 593.3448 713.45898 599.91602 C 719.20977 603.97589 724.01569 609.50297 726.96094 615.54297 C 738.80329 610.21743 746.95037 600.39471 741.42188 589.80469 C 736.49258 580.36244 726.45996 577.2754 716.11523 578.72852 z M 726.96094 615.54297 C 720.52267 618.43828 713.02218 619.94598 705.98828 619.5625 C 703.9042 626.28657 700.13322 632.56673 695.29883 637.23438 C 704.02311 646.85066 715.88311 651.56327 724.24609 643.0332 C 731.70282 635.4275 731.53936 624.9322 726.96094 615.54297 z M 695.29883 637.23438 C 690.55568 632.00627 686.80533 625.33918 684.99609 618.53125 C 677.95628 618.62718 670.81838 616.98217 664.88477 613.82617 C 658.43587 625.09468 657.62 637.82899 668.31641 643.14648 C 677.85405 647.88793 687.78397 644.49004 695.29883 637.23438 z M 664.88477 613.82617 C 668.39137 607.69888 673.57394 602.07086 679.49023 598.24609 C 677.2238 591.58066 676.58208 584.28228 677.75 577.66406 C 665.04005 575.01281 652.67572 578.17207 650.92383 589.98828 C 649.36182 600.52378 655.66275 608.92113 664.88477 613.82617 z M 679.49023 598.24609 C 680.58743 601.47289 682.06723 604.53069 683.94727 607.29492 C 684.11868 605.79965 684.42248 604.33648 684.87891 602.92188 C 685.95049 599.60066 687.70081 596.55477 689.85547 593.77539 C 686.27024 594.50158 682.78099 596.11869 679.49023 598.24609 z M 689.85547 593.77539 C 691.32918 593.47689 692.8138 593.3136 694.29883 593.31055 C 697.78832 593.30338 701.22625 594.02666 704.53516 595.2168 C 702.73698 592.0328 700.12088 589.21367 697.08203 586.74219 C 694.35322 588.78214 691.90295 591.13427 689.85547 593.77539 z M 704.53516 595.2168 C 705.27495 596.52674 705.88953 597.88867 706.35156 599.30078 C 707.43677 602.61751 707.81064 606.11002 707.70117 609.625 C 710.17418 606.93046 712.04741 603.57066 713.45898 599.91602 C 710.67515 597.95071 707.68033 596.34804 704.53516 595.2168 z M 707.70117 609.625 C 706.68403 610.73326 705.57902 611.73758 704.37891 612.61328 C 701.56051 614.66983 698.35442 616.1058 694.97852 617.08789 C 698.30474 618.60672 702.07721 619.34927 705.98828 619.5625 C 706.99701 616.30794 707.59714 612.96547 707.70117 609.625 z M 694.97852 617.08789 C 693.60979 616.4629 692.31144 615.72256 691.10742 614.85156 C 688.28067 612.80667 685.92448 610.20202 683.94727 607.29492 C 683.53078 610.92799 683.99 614.74545 684.99609 618.53125 C 688.40362 618.48482 691.76897 618.02159 694.97852 617.08789 z "
+ inkscape:original="M 633.78125 511.84375 C 623.42392 512.82116 617.41636 523.65239 616.03125 536.3125 C 623.47639 537.35976 631.00378 540.59786 637.3125 545.3125 C 643.43381 540.33152 651.22657 536.77062 658.96875 535.15625 C 656.93896 523.63571 650.16763 514.01339 638.40625 512.03125 C 636.7822 511.75755 635.23686 511.70639 633.78125 511.84375 z M 658.96875 535.15625 C 660.27433 542.56639 659.53935 550.72605 657 558.1875 C 663.62356 562.46748 669.44792 568.76632 673.375 575.625 C 683.69464 570.13316 690.74832 560.7289 689 548.9375 C 687.0388 535.71041 673.19621 532.1896 658.96875 535.15625 z M 673.375 575.625 C 666.72991 579.16134 658.72898 581.01415 650.84375 580.90625 C 648.81707 588.52714 644.62259 595.99206 639.3125 601.84375 C 647.72472 609.9625 658.85643 613.74439 669.53125 608.4375 C 681.50874 602.483 680.59932 588.24235 673.375 575.625 z M 639.3125 601.84375 C 633.8992 596.6193 629.67827 589.59029 627.34375 582.0625 C 619.47258 582.4886 611.07851 580.80264 603.875 577.5625 C 598.75377 588.07148 598.56075 599.80042 606.90625 608.3125 C 616.26752 617.86062 629.54601 612.60636 639.3125 601.84375 z M 603.875 577.5625 C 607.17583 570.78905 612.54869 564.57972 619 560.03125 C 616.15917 552.66962 615.17142 544.17147 616.03125 536.3125 C 604.44752 534.68308 593.20701 538.1457 587.6875 548.71875 C 581.49902 560.57328 590.61949 571.60016 603.875 577.5625 z M 619 560.03125 C 620.58142 564.12927 622.66437 567.91726 625.4375 570.9375 C 625.31384 566.99916 625.72159 563.09116 626.9375 559.375 C 627.45404 557.79631 628.14209 556.27713 628.96875 554.8125 C 625.46134 556.07553 622.10606 557.84134 619 560.03125 z M 628.96875 554.8125 C 632.6772 553.47707 636.52624 552.6482 640.4375 552.65625 C 642.08445 552.65964 643.74037 552.82809 645.375 553.15625 C 643.08702 550.21229 640.35716 547.58784 637.3125 545.3125 C 633.91217 548.07939 630.98037 551.24844 628.96875 554.8125 z M 645.375 553.15625 C 647.80057 556.27726 649.76443 559.67363 650.96875 563.40625 C 651.47446 564.97364 651.83822 566.59397 652.03125 568.25 C 654.11829 565.17129 655.77843 561.77688 657 558.1875 C 653.30401 555.79924 649.40192 553.96468 645.375 553.15625 z M 625.4375 570.9375 C 625.5549 574.67637 626.21413 578.41998 627.34375 582.0625 C 631.73573 581.82475 635.95434 580.95819 639.6875 579.25 C 635.90316 578.1506 632.3152 576.5863 629.15625 574.28125 C 627.8143 573.30204 626.5751 572.17647 625.4375 570.9375 z M 639.6875 579.25 C 643.27578 580.29244 647.03466 580.85413 650.84375 580.90625 C 651.9734 576.65846 652.50166 572.35698 652.03125 568.28125 C 649.81437 571.54665 647.17313 574.48579 644 576.78125 C 642.65784 577.75218 641.21258 578.55217 639.6875 579.25 z "
inkscape:radius="3.8779137"
sodipodi:type="inkscape:offset" />
<path
- transform="scale(-1,1)"
- d="m -668.31631,643.14679 c 21.07746,-10.47823 -2.44494,-49.78822 -25.98321,-49.83658 -24.30941,-0.0499 -46.96555,32.36417 -29.94702,49.72271 16.47868,16.80791 46.59588,-17.71068 39.36816,-40.11185 -7.46452,-23.13505 -45.29331,-34.66581 -56.54325,-13.11614 -10.89308,20.86609 31.24277,38.84242 50.31406,25.0461 19.69608,-14.2483 18.97275,-53.78883 -4.99863,-57.82894 -23.21097,-3.91196 -27.28679,41.71661 -8.27235,55.59119 19.63736,14.32912 57.01911,1.42249 53.45392,-22.62411 -3.45209,-23.2838 -48.10694,-13.06013 -55.42666,9.31115 -7.55952,23.10418 16.267,54.66797 38.03498,43.84647 z"
- inkscape:randomized="0"
+ transform="matrix(-0.837424,0.000000,0.000000,0.837424,1187.222,93.41910)"
+ d="m 669.52397,608.45043 c 23.5962,-11.73065 -2.73712,-55.73808 -29.08832,-55.79229 -27.21449,-0.056 -52.57833,36.23202 -33.52582,55.66481 18.44813,18.81636 52.16425,-19.82716 44.07283,-44.9054 -8.3565,-25.89981 -50.7063,-38.80865 -63.30043,-14.68358 -12.19463,23.35979 34.9764,43.48422 56.32683,28.03922 22.04988,-15.95099 21.24012,-60.21708 -5.596,-64.73976 -25.98483,-4.37921 -30.54764,46.70189 -9.26093,62.23459 21.98408,16.04157 63.83341,1.59246 59.84191,-25.32779 -3.86488,-26.06629 -53.85588,-14.62086 -62.0504,10.42388 -8.46298,25.86521 18.2111,61.20127 42.58033,49.08632 z"
+ inkscape:randomized="0.0000000"
inkscape:rounded="0.41880668"
inkscape:flatsided="false"
sodipodi:arg2="-1.4037483"
- sodipodi:arg1="0.9445137"
- sodipodi:r2="11.448337"
- sodipodi:r1="47.57719"
- sodipodi:cy="604.59918"
- sodipodi:cx="-696.20306"
+ sodipodi:arg1="0.94451370"
+ sodipodi:r2="12.816465"
+ sodipodi:r1="53.262882"
+ sodipodi:cy="565.29620"
+ sodipodi:cx="638.30463"
sodipodi:sides="5"
id="path11596"
- style="color:#000000;fill:#d8d8d8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.72576749;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.72576747, 2.1773024;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
+ style="color:#000000;fill:#d8d8d8;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.81250000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:0.81250000 2.4375000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
sodipodi:type="star" />
<text
+ sodipodi:linespacing="100%"
id="text12220"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.4666667px;line-height:100%;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-size:7.0000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
xml:space="preserve"><textPath
- style="font-family:'Bitstream Vera Serif';stroke-width:1.06666669pt"
+ style="font-family:Bitstream Vera Serif;"
id="textPath12229"
xlink:href="#path12219"><tspan
dy="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
- dx="0 0 0 0 0 0 0 0 0 0 1.5189813 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.0379629 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.0379629 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.7721448 0 0 3.1789146e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.5316355 0 0 0.75949073 0.25316355"
- style="font-family:'Bitstream Vera Serif';stroke-width:1.06666669pt"
+ dx="0 0 0 0 0 0 0 0 0 0 1.424045 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.8480902 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.8480902 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.6613858 0 0 2.9802322e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.3734083 0 0 0.71202254 0.23734084"
+ style="font-family:Bitstream Vera Serif;"
id="tspan12221">Text put on an offset linked to a star. Editing the star updates both the offset and the text-on-path.</tspan></textPath></text>
</g>
<text
id="text1252"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:11.62126255px;font-family:'Bitstream Vera Serif';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.06666669pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- x="-62.402107"
- y="-138.65523"><textPath
+ style="font-size:10.894934;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Serif;text-anchor:start;writing-mode:lr;"
+ xml:space="preserve"><textPath
id="textPath1351"
- xlink:href="#path1255"
- style="stroke-width:1.06666669pt"><tspan
- id="tspan1253"
- style="stroke-width:1.06666669pt">If a path has several subpaths, text attached to it flows from one subpath to the next.</tspan></textPath></text>
+ xlink:href="#path1255"><tspan
+ id="tspan1253">If a path has several subpaths, text attached to it flows from one subpath to the next.</tspan></textPath></text>
<path
sodipodi:nodetypes="cccccc"
id="path1255"
- d="m 593.0191,277.19639 c 15.33514,63.07205 94.17841,49.37365 140.28985,37.68115 m -93.33334,61.4493 c 90.70699,37.6598 49.13208,-26.33587 95.65222,-30.72465 m -128.69566,-0.57971 c -1.5083,137.39131 146.90176,70.71661 144.34782,11.5942"
- style="opacity:0.23826719;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:2.26666665;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:6.8, 2.26666667;stroke-dashoffset:0;stroke-opacity:1"
- inkscape:connector-curvature="0" />
+ d="M 574.45650,189.86218 C 588.83319,248.99223 662.74876,236.14998 705.97823,225.18826 M 618.47823,282.79698 C 703.51603,318.10304 664.53955,258.10710 708.15218,253.99262 M 587.50000,253.44914 C 586.08597,382.25349 725.22040,319.74596 722.82608,264.31870"
+ style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.1250000;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;opacity:0.23826715;stroke-miterlimit:4.0000000;stroke-dasharray:6.3750000,2.1250000;stroke-dashoffset:0.0000000;" />
<text
+ transform="matrix(1.129392,-3.954504e-2,3.954504e-2,1.129392,-87.34642,-45.93676)"
+ sodipodi:linespacing="150.00000%"
id="text1366"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.49226236px;line-height:150%;font-family:'Bitstream Vera Sans';writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.20542312px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- y="-303.94156"
- transform="rotate(-2.005361)"
- x="-161.95139"><textPath
+ style="font-size:5.5000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:150.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+ xml:space="preserve"><textPath
id="textPath1372"
- xlink:href="#path10162"
- style="stroke-width:1.20542312px"><tspan
- id="tspan1368"
- style="stroke-width:1.20542312px"> glyph rotation (Alt+[, Alt+]) </tspan><tspan
- id="tspan1370"
- style="stroke-width:1.20542312px">works in text-on-path too</tspan></textPath></text>
+ xlink:href="#path10162"><tspan
+ id="tspan1368"> glyph rotation (Alt+[, Alt+]) </tspan><tspan
+ id="tspan1370">works in text-on-path too</tspan></textPath></text>
</svg>
diff --git a/share/extensions/draw_from_triangle.py b/share/extensions/draw_from_triangle.py
index 3146fe26e..fd966b1d1 100755
--- a/share/extensions/draw_from_triangle.py
+++ b/share/extensions/draw_from_triangle.py
@@ -176,16 +176,17 @@ def cot(x):#cotangent(x)
def report_properties( params ):#report to the Inkscape console using errormsg
# TODO: unit identifier needs solution for arbitrary document scale
unit = Draw_From_Triangle.getDocumentUnit(e)
- inkex.errormsg(_("Side Length 'a' (" + unit + "): " + str( params[0][0] ) ))
- inkex.errormsg(_("Side Length 'b' (" + unit + "): " + str( params[0][1] ) ))
- inkex.errormsg(_("Side Length 'c' (" + unit + "): " + str( params[0][2] ) ))
- inkex.errormsg(_("Angle 'A' (radians): " + str( params[1][0] ) ))
- inkex.errormsg(_("Angle 'B' (radians): " + str( params[1][1] ) ))
- inkex.errormsg(_("Angle 'C' (radians): " + str( params[1][2] ) ))
- inkex.errormsg(_("Semiperimeter (px): " + str( params[4][1] ) ))
- inkex.errormsg(_("Area ("+ unit + "^2): " + str( params[4][0] ) ))
+
+ inkex.errormsg(_("Side Length 'a' ({0}): {1}").format(unit, str(params[0][0])) )
+ inkex.errormsg(_("Side Length 'b' ({0}): {1}").format(unit, str(params[0][1])) )
+ inkex.errormsg(_("Side Length 'c' ({0}): {1}").format(unit, str(params[0][2])) )
+ inkex.errormsg(_("Angle 'A' (radians): {}").format(str(params[1][0])) )
+ inkex.errormsg(_("Angle 'B' (radians): {}").format(str(params[1][1])) )
+ inkex.errormsg(_("Angle 'C' (radians): {}").format(params[1][2]) )
+ inkex.errormsg(_("Semiperimeter (px): {}").format(params[4][1]) )
+ inkex.errormsg(_("Area ({0}^2): {1}").format(unit, str(params[4][0])) )
return
-
+
class Style(object): #container for style information
def __init__(self, options):
diff --git a/share/extensions/interp.py b/share/extensions/interp.py
index a53ab07d9..fd80ab412 100755
--- a/share/extensions/interp.py
+++ b/share/extensions/interp.py
@@ -110,8 +110,8 @@ class Interp(inkex.Effect):
def tweenstyleunit(self, property, start, end, time): # moved here so we can call 'unittouu'
scale = self.unittouu('1px')
- sp = self.unittouu(start[property]) / scale
- ep = self.unittouu(end[property]) / scale
+ sp = self.unittouu(start.get(property, '1px')) / scale
+ ep = self.unittouu(end.get(property, '1px')) / scale
return str(sp + (time * (ep - sp)))
def effect(self):
diff --git a/share/extensions/plotter.py b/share/extensions/plotter.py
index 8a14d55bc..800142bb2 100755
--- a/share/extensions/plotter.py
+++ b/share/extensions/plotter.py
@@ -196,7 +196,7 @@ class Plot(inkex.Effect):
try:
mySerial.open()
except Exception as inst:
- if 'ould not open port' in inst.args[0]:
+ if 'ould not open port' in inst.strerror:
inkex.errormsg(_("Could not open port. Please check that your plotter is running, connected and the settings are correct."))
return
else:
diff --git a/share/tutorials/tutorial-calligraphy.be.svg b/share/tutorials/tutorial-calligraphy.be.svg
index 9eebdb9fd..d56346cd3 100644
--- a/share/tutorials/tutorial-calligraphy.be.svg
+++ b/share/tutorials/tutorial-calligraphy.be.svg
@@ -142,53 +142,45 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Калі маеце пляншэт і хочаце карыстацца магчымасьцямі адчувальнасьці, то мусіце наставіць сваю прыладу. Гэтыя настаўленьні патрэбна зрабіць толькі аднойчы, і яны будуць захаваныя. Каб задзейнічаць падтрымку вы мусіце падлучыць пляншэт да запуску Inkscape, а потым адкрыць дыялёґ <flowSpan font-style="italic">Прылады ўводжаньня…</flowSpan> ў мэню <flowSpan font-style="italic">Файл</flowSpan>. З дапамогай гэтага дыялёґу можна выбраць пажаданую прыладу й настаўленьні пяра вашага пляншэту. Нарэшце, выбраўшы гэтыя настаўленьні, пераключыцеся на інструмэнт каліґрафіі й націсьніце на кіроўнай панэлі ґузікі націску й нахілу. З гэтага моманту Inkscape будзе памятаць гэтыя настаўленьні.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="768.89" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="779.34" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Каліґрафічнае пяро Inkscape можа быць адчувальным да <flowSpan font-style="italic">хуткасьці</flowSpan> штрыхоў (гл. «Патанчэньне» ніжэй), таму, калі карыстаецеся мышай, лепей абнуліце гэты парамэтар.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="820.9607861" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="820.9607861" x="10">Выборы інструмэнту «Каліґрафія»</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="831.4093761" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="831.4093761" x="10">Выборы інструмэнту «Каліґрафія»</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="826.16" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="836.61" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowDiv xml:space="preserve">Пераключыценя на інструмэнт каліґрафіі, націснуўшы <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, клявішу <flowSpan font-weight="bold">C</flowSpan> ці пстрыкнуўшы па ейным ґузіку на панэлі інструмэнтаў. На верхняй панэлі можаце заўважыць 8 выбораў: таўшчыня й патанчэньне, абмежаваньне, шапкі, дрыжэньне, гайданьне й маса. Таксама ёсьць два ґузікі, які ўключаюць ці выключаюць адчувальнасьць да націску й нахілу (пры працы з пляншэтамі).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="920.1447151" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="920.1447151" x="10">Таўшчыня й патанчэньне</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="930.5735951" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="930.5735951" x="10">Таўшчыня й патанчэньне</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="925.34" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="935.77" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Гэтая пара выбораў кіруе <flowSpan font-style="italic">таўшчынёй</flowSpan> пяра. Яна можа зьмяняцца ад 1 да 100 і (прадвызначана) вымяраецца адзінкамі, прапарцыйнымі памеру вакна рысаваньня, але незалежнымі ад маштабу. Гэта мае сэнс, бо натуральная «адзінка вымярэньня» ў каліґрафіі — дыяпазон рухаў вашае рукі, а таму зручна мець таўшчыню пяра нязьменнай часткай памеру вашае «дошкі для рысаваньня», а ня ў нейкіх сапраўдных адзінках, якія зробяць яе залежнай ад маштабу. Аднак такія паводзіны неабавязковыя, і могуць быць зьмененыя тымі, хто аддае перавагу абсалютным адзінкам, не зьвяртаючы ўвагу на маштаб. Каб пераключыцца на такі рэжым, выкарыстоўвайце адпаведную «птушачку» на старонцы настаўленьняў інструмэнта (яе можна адкрыць падвойнай пстрычкай па ґузіку інструмэнту).</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="1071" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="1081.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">Паколькі таўшчыня пяра часта зьмяняецца, яе можна папраўляць не пераходзяцы да кіроўнай панэлі, выкарыстоўваючы клявішы стрэлак <flowSpan font-weight="bold">управа</flowSpan> й <flowSpan font-weight="bold">улева</flowSpan>, ці з дапамогай пляншэта, які падтрымлівае функцыі адчувальнасьці да націску. Найлепшая рэч з гэтым клявішамі, што яны працуюць калі вы рысуеце, таму таўшчыню пяра можна зьмяняць у сярэдзіне штрыха:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-be.svgtext1944" xml:space="preserve" transform="translate(10 1150)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-be.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">таўшчыня=1, расьце… дасягае 47, зьмяншаецца… ізноў да 0</tspan></text>
- <path id="calligraphy-f01-be.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1150)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1238.9" x="10"/>
+ <text id="calligraphy-f01-be.svgtext1944" xml:space="preserve" transform="translate(10 1160.4)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-be.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">таўшчыня=1, расьце… дасягае 47, зьмяншаецца… ізноў да 0</tspan></text>
+ <path id="calligraphy-f01-be.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1160.4)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1249.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
@@ -201,48 +193,48 @@ thinning of fast strokes. Here are a few examples, all drawn with width=20 and
angle=90:
</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-be.svgtext1987" xml:space="preserve" transform="translate(10 1318)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">патанчэньне = 0 (нязьменная шырыня)</tspan></text>
- <text id="calligraphy-f02-be.svgtext1990" xml:space="preserve" transform="translate(10 1318)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">патанчэньне = 10</tspan></text>
- <text id="calligraphy-f02-be.svgtext1993" xml:space="preserve" transform="translate(10 1318)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">патанчэньне = 40</tspan></text>
- <text id="calligraphy-f02-be.svgtext1996" xml:space="preserve" transform="translate(10 1318)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">патанчэньне = -20</tspan></text>
- <text id="calligraphy-f02-be.svgtext1999" xml:space="preserve" transform="translate(10 1318)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">патанчэньне = -60</tspan></text>
- <path id="calligraphy-f02-be.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1318)" display="block"/>
- <path id="calligraphy-f02-be.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1318)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1516.1" x="10"/>
+ <text id="calligraphy-f02-be.svgtext1987" xml:space="preserve" transform="translate(10 1328.4)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">патанчэньне = 0 (нязьменная шырыня)</tspan></text>
+ <text id="calligraphy-f02-be.svgtext1990" xml:space="preserve" transform="translate(10 1328.4)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">патанчэньне = 10</tspan></text>
+ <text id="calligraphy-f02-be.svgtext1993" xml:space="preserve" transform="translate(10 1328.4)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">патанчэньне = 40</tspan></text>
+ <text id="calligraphy-f02-be.svgtext1996" xml:space="preserve" transform="translate(10 1328.4)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">патанчэньне = -20</tspan></text>
+ <text id="calligraphy-f02-be.svgtext1999" xml:space="preserve" transform="translate(10 1328.4)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-be.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">патанчэньне = -60</tspan></text>
+ <path id="calligraphy-f02-be.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1328.4)" display="block"/>
+ <path id="calligraphy-f02-be.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1328.4)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1526.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">Для пацехі задайце таўшчыню й патанчэньне роўнымі 100 (максымум) і рысуйце рэзкімі рыўкамі, каб атрымаць надзіва натуральныя, нэўронападобныя фіґуры:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-be.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1563.2)" display="block"/>
- <path id="calligraphy-f03-be.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1563.2)" display="block"/>
- <path id="calligraphy-f03-be.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1563.2)" display="block"/>
- <path id="calligraphy-f03-be.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1563.2)" display="block"/>
- <path id="calligraphy-f03-be.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1563.2)" display="block"/>
- <path id="calligraphy-f03-be.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1563.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1716.3219331000003" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1716.3219331000003" x="10">Вугал і абмежаваньне</tspan>
+ <path id="calligraphy-f03-be.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1573.6)" display="block"/>
+ <path id="calligraphy-f03-be.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1573.6)" display="block"/>
+ <path id="calligraphy-f03-be.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1573.6)" display="block"/>
+ <path id="calligraphy-f03-be.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1573.6)" display="block"/>
+ <path id="calligraphy-f03-be.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1573.6)" display="block"/>
+ <path id="calligraphy-f03-be.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1573.6)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1726.7311031000002" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1726.7311031000002" x="10">Вугал і абмежаваньне</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1721.5" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1731.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -257,15 +249,15 @@ angle=90:
<path id="calligraphy-f04-be.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-be.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1811.1)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-be.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1811.1)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-be.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1811.1)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-be.svgtext4096" xml:space="preserve" transform="translate(10 1811.1)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">вугал = 90 ґрад</tspan></text>
- <text id="calligraphy-f04-be.svgtext4099" xml:space="preserve" transform="translate(10 1811.1)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">вугал = 30 (прадвызначаны)</tspan></text>
- <text id="calligraphy-f04-be.svgtext4102" xml:space="preserve" transform="translate(10 1811.1)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">вугал = 0</tspan></text>
- <text id="calligraphy-f04-be.svgtext4105" xml:space="preserve" transform="translate(10 1811.1)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">вугал = -90 ґрад</tspan></text>
- <path id="calligraphy-f04-be.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-be.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-be.svgTriangleInS)" transform="translate(10 333.8)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-be.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1811.1) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-be.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1821.5)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-be.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1821.5)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-be.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1821.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-be.svgtext4096" xml:space="preserve" transform="translate(10 1821.5)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">вугал = 90 ґрад</tspan></text>
+ <text id="calligraphy-f04-be.svgtext4099" xml:space="preserve" transform="translate(10 1821.5)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">вугал = 30 (прадвызначаны)</tspan></text>
+ <text id="calligraphy-f04-be.svgtext4102" xml:space="preserve" transform="translate(10 1821.5)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">вугал = 0</tspan></text>
+ <text id="calligraphy-f04-be.svgtext4105" xml:space="preserve" transform="translate(10 1821.5)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-be.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">вугал = -90 ґрад</tspan></text>
+ <path id="calligraphy-f04-be.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-be.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-be.svgTriangleInS)" transform="translate(10 344.2)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-be.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1821.5) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-be.svguse2837" xlink:href="#calligraphy-f04-be.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-be.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-be.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -274,34 +266,34 @@ angle=90:
<path id="calligraphy-f04-be.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-be.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-be.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1811.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1963.5" x="10"/>
+ <path id="calligraphy-f04-be.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1821.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1973.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
</flowRegion>
<flowDiv xml:space="preserve">Кожны традыцыйны стыль каліґрафіі мае свай уласны пераважны вугал пяра. Напрыклад, унцыял выкарыстоўвае вугал 25 ґрадусаў. Больш складаныя шрыфты й больш вопытныя каліґрафы часта зьмяняюць вугал падчас рысаваньня, і Inkscape робіць гэта магчымым, ці праз націсканьне клявіш стрэлак <flowSpan font-weight="bold">уверх</flowSpan> і <flowSpan font-weight="bold">ўніз</flowSpan>, ці з пляншэтам, які патдрымлівае магчымасьць адчувальнасьці да нахілу. Для пачатковых урокаў каліґрафіі, аднак, найлепей трымаць вугал нязьменным. Вось прыклады штрыхоў, нарысаваных з рознымі вугламі (абмежаваньне=100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-be.svgtext4984" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">вугал = 30</tspan></text>
- <text id="calligraphy-f05-be.svgtext4987" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">вугал = 60</tspan></text>
- <text id="calligraphy-f05-be.svgtext4990" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">вугал = 90</tspan></text>
- <text id="calligraphy-f05-be.svgtext4993" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">вугал = 0</tspan></text>
- <text id="calligraphy-f05-be.svgtext4996" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">вугал = 15</tspan></text>
- <text id="calligraphy-f05-be.svgtext4999" xml:space="preserve" transform="translate(10 2074.5)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">вугал = -45</tspan></text>
- <path id="calligraphy-f05-be.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2074.5)" display="block"/>
- <path id="calligraphy-f05-be.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2074.5)" display="block"/>
- <path id="calligraphy-f05-be.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2074.5)" display="block"/>
- <path id="calligraphy-f05-be.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2074.5)" display="block"/>
- <path id="calligraphy-f05-be.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2074.5)" display="block"/>
- <path id="calligraphy-f05-be.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2074.5)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2230.3" x="10"/>
+ <text id="calligraphy-f05-be.svgtext4984" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">вугал = 30</tspan></text>
+ <text id="calligraphy-f05-be.svgtext4987" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">вугал = 60</tspan></text>
+ <text id="calligraphy-f05-be.svgtext4990" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">вугал = 90</tspan></text>
+ <text id="calligraphy-f05-be.svgtext4993" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">вугал = 0</tspan></text>
+ <text id="calligraphy-f05-be.svgtext4996" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">вугал = 15</tspan></text>
+ <text id="calligraphy-f05-be.svgtext4999" xml:space="preserve" transform="translate(10 2084.9)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-be.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">вугал = -45</tspan></text>
+ <path id="calligraphy-f05-be.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2084.9)" display="block"/>
+ <path id="calligraphy-f05-be.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2084.9)" display="block"/>
+ <path id="calligraphy-f05-be.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2084.9)" display="block"/>
+ <path id="calligraphy-f05-be.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2084.9)" display="block"/>
+ <path id="calligraphy-f05-be.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2084.9)" display="block"/>
+ <path id="calligraphy-f05-be.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2084.9)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2240.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Як можаце заўважыць, штрых найтанчэйшы, калі рысуецца паралельна свайму вуглу, і найтаўсьцейшы, калі рысуецца прастастаўна. Дадатныя вуглы найбольш натуральныя й традыцыйныя для праварукай каліґрафіі.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2280" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2290.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -313,19 +305,19 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-be.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2369.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">абмежаваньне = 100</tspan></text>
- <text id="calligraphy-f06-be.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2369.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">абмежаваньне = 80</tspan></text>
- <text id="calligraphy-f06-be.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2369.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">абмежаваньне = 0</tspan></text>
- <path id="calligraphy-f06-be.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2369.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-be.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2369.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-be.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2369.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-be.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-be.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-be.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-be.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-be.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-be.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2369.5) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-be.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-be.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2379.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">абмежаваньне = 100</tspan></text>
+ <text id="calligraphy-f06-be.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2379.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">абмежаваньне = 80</tspan></text>
+ <text id="calligraphy-f06-be.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2379.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-be.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">вугал = 30</tspan><tspan id="calligraphy-f06-be.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">абмежаваньне = 0</tspan></text>
+ <path id="calligraphy-f06-be.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2379.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-be.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2379.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-be.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2379.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-be.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-be.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-be.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-be.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-be.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-be.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-be.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2379.9) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-be.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-be.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -334,7 +326,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-be.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-be.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -343,7 +335,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-be.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-be.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -352,7 +344,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-be.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-be.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -361,7 +353,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-be.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-be.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-be.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -370,7 +362,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-be.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-be.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -379,7 +371,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-be.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-be.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -388,7 +380,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-be.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-be.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -397,7 +389,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-be.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-be.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -406,7 +398,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-be.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-be.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -415,7 +407,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-be.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-be.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -424,7 +416,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-be.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-be.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -433,7 +425,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-be.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-be.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -442,7 +434,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-be.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-be.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -451,7 +443,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-be.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-be.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -460,7 +452,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-be.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-be.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -469,7 +461,7 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-be.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2369.5) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-be.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2379.9) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-be.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-be.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -478,17 +470,17 @@ angle=90:
<path id="calligraphy-f06-be.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-be.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2510.9" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2521.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Кажучы па-друкарску, найбольшае абмежаваньне, а таму й найбольшы кантраст таўшчыні штрыха (уверсе зьлева) уласьцівы антычнай ґарнітуры з засечкамі, такой як Таймз ці Бадоні (бо гэтыя ґарнітуры гістарычна былі ўдаваньнем каліґрафіі з нязьменным пяром). Нулявое абмежаваньне й нулявы кантраст таўшчыні (уверсе справа), зь іншага боку, наводзяць на думку пра сучасныя ґарнітуры без засечак, такія як Гельвэтыка.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2605.566850100001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2605.566850100001" x="10">Дрыжэньне</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2615.9563131000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2615.9563131000004" x="10">Дрыжэньне</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2610.8" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2621.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -499,7 +491,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-be.svgg3123" font-size="6px" transform="translate(10 2709.2)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-be.svgg3123" font-size="6px" transform="translate(10 2719.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-be.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-be.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">паволі</tspan></text>
<text id="calligraphy-f07-be.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-be.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">сярэдне</tspan></text>
<text id="calligraphy-f07-be.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-be.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">хутка</tspan></text>
@@ -513,289 +505,289 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-be.svguse3153" xlink:href="#calligraphy-f07-be.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-be.svguse3151" xlink:href="#calligraphy-f07-be.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-be.svguse3149" xlink:href="#calligraphy-f07-be.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-be.svgtext3177" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">дрыжэньне = 0</tspan></text>
- <text id="calligraphy-f07-be.svgtext3111" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">дрыжэньне = 10</tspan></text>
- <text id="calligraphy-f07-be.svgtext1990" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">дрыжэньне = 30</tspan></text>
- <text id="calligraphy-f07-be.svgtext2991" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">дрыжэньне = 50</tspan></text>
- <text id="calligraphy-f07-be.svgtext2995" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">дрыжэньне = 70</tspan></text>
- <text id="calligraphy-f07-be.svgtext1993" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">дрыжэньне = 90</tspan></text>
- <text id="calligraphy-f07-be.svgtext1996" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">дрыжэньне = 20</tspan></text>
- <text id="calligraphy-f07-be.svgtext2999" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">дрыжэньне = 40</tspan></text>
- <text id="calligraphy-f07-be.svgtext3003" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">дрыжэньне = 60</tspan></text>
- <text id="calligraphy-f07-be.svgtext3007" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">дрыжэньне = 80</tspan></text>
- <text id="calligraphy-f07-be.svgtext1999" xml:space="preserve" transform="translate(10 2679.2)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">дрыжэньне = 100</tspan></text>
- <path id="calligraphy-f07-be.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2679.2)"/>
- <path id="calligraphy-f07-be.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2679.2)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2956.612050100001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2956.612050100001" x="10">Гайданьне й маса</tspan>
+ <text id="calligraphy-f07-be.svgtext3177" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">дрыжэньне = 0</tspan></text>
+ <text id="calligraphy-f07-be.svgtext3111" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">дрыжэньне = 10</tspan></text>
+ <text id="calligraphy-f07-be.svgtext1990" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">дрыжэньне = 30</tspan></text>
+ <text id="calligraphy-f07-be.svgtext2991" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">дрыжэньне = 50</tspan></text>
+ <text id="calligraphy-f07-be.svgtext2995" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">дрыжэньне = 70</tspan></text>
+ <text id="calligraphy-f07-be.svgtext1993" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">дрыжэньне = 90</tspan></text>
+ <text id="calligraphy-f07-be.svgtext1996" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">дрыжэньне = 20</tspan></text>
+ <text id="calligraphy-f07-be.svgtext2999" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">дрыжэньне = 40</tspan></text>
+ <text id="calligraphy-f07-be.svgtext3003" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">дрыжэньне = 60</tspan></text>
+ <text id="calligraphy-f07-be.svgtext3007" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">дрыжэньне = 80</tspan></text>
+ <text id="calligraphy-f07-be.svgtext1999" xml:space="preserve" transform="translate(10 2689.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-be.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">дрыжэньне = 100</tspan></text>
+ <path id="calligraphy-f07-be.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2689.6)"/>
+ <path id="calligraphy-f07-be.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2689.6)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2967.0015131000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2967.0015131000005" x="10">Гайданьне й маса</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2961.8" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2972.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve">У адрозьненьне ад таўшчыні й вугла, апошнія два парамэтры вызначаюць як інструмэнт «адчувае», а не ўплывае на візуальны вынік. Таму ў гэтым разьдзеле ня будзе аніякіх рысункаў, проста паспрабуйце іх уласнаручна, каб лепей зразумець.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="3011.5" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="3021.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Гайданьне</flowSpan> — гэта супраціўленьне паперы руху пяра. Прадвызначана найменшае (0), пры павелічэньні гэтага парамэтру папера робіцца «сьлізкай»: калі маса вялікая, пяро спрабуе ўцячы на рэзкіх паваротах, калі маса нулявая, высокае гайданьне прымушае пяро дзіка гайдацца.</flowDiv>
</flowRoot>
- <rect id="d0e285" display="none" height="1e3px" width="288" y="3071.9" x="10"/>
+ <rect id="d0e285" display="none" height="1e3px" width="288" y="3082.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e285"/>
</flowRegion>
<flowDiv xml:space="preserve">У фізыцы <flowSpan font-style="italic">маса</flowSpan> — гэта тое, што абумоўлівае інэрцыю, чым большую масу мае інструмэнт каліґрафіі Inkscape, тым больш ён адстае ад курсора мышы й больш згладжвае рэзкія павароты й хуткія штуршкі вашых штрыхоў. Прадвызначана гэтае значэньне даволі малое (2), таму інструмэнт хуткі й чуйны, але можна павялічыць масу каб атрымаць больш павольнае й гладкае пяро.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3155.881898100001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3155.881898100001" x="10">Прыклады каліґрафіі</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3166.2713611000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3166.2713611000004" x="10">Прыклады каліґрафіі</tspan>
</text>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="3161.1" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3171.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Цяпер, ведаючы асноўныя магчымасьці інструмэнту, вы можаце паспрабаваць стварыць нейкую сапраўдную каліґрафію. Калі вы навічок у гэтым мастацтве, набыйце сабе добрую кніжку з каліґрафіі й вывучайце яе з дапамогай Inkscape. У гэтым разьдзеле вам будуць паказаныя некалькі простых прыкладаў.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3221.4" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3231.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
</flowRegion>
<flowDiv xml:space="preserve">Найперш, каб рабіць літары, вам патрэбна стварыць пару лінеек, якія будуць накіроўваць вас. Калі вы зьбіраецеся пісаць нахіленым шрыфтам ці курсівам, таксама дадайце некалькі нахіленых накіроўных празь дзьве лінейкі, напрыклад:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-be.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-be.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="3351.9" x="10"/>
+ <path id="calligraphy-f08-be.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-be.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3289.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3362.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">Пасьля наблізьце ці аддальце рысунак гэтак, каб вышыня між лінейкамі адпавядала вашаму самаму натуральнаму дыяпазону руху рукі, адрэґулюйце таўшчыню й вугал, і паехалі!</flowDiv>
</flowRoot>
- <rect id="d0e316" display="none" height="1e3px" width="288" y="3391.2" x="10"/>
+ <rect id="d0e316" display="none" height="1e3px" width="288" y="3401.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e316"/>
</flowRegion>
<flowDiv xml:space="preserve">Напэўна, першыя рэчы, якія вы мусіце зрабіць як пачатковец у каліґрафіі, — папрактыкавацца з асноўнымі элемэнтамі літар: вэртыкальнымі й гарызантальнымі, нахіленымі й скругленымі. Вось некалькі элемэнтаў літар Унцыялу:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-be.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3449.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-be.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3449.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-be.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3449.1)" display="block"/>
- <path id="calligraphy-f09-be.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3449.1)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3492.1" x="10"/>
+ <path id="calligraphy-f09-be.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3459.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-be.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3459.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-be.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3459.5)" display="block"/>
+ <path id="calligraphy-f09-be.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3459.5)" display="block"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3502.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
</flowRegion>
<flowDiv xml:space="preserve">Колькі карысных парад:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3515.6)"/>
- <rect id="d0e335" display="none" height="1e3px" width="258" y="3509.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3526)"/>
+ <rect id="d0e335" display="none" height="1e3px" width="258" y="3520" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e335"/>
</flowRegion>
<flowDiv xml:space="preserve">Калі вашая рука камфортна ляжыць на пляншэце, не перасоўвайце яе. Замест гэтага перасоўвайце палатно (клявішы <flowSpan font-weight="bold">Ctrl+стрэлкі</flowSpan>) левай рукой, скончыўшы кожную літару.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3565.4)"/>
- <rect id="d0e342" display="none" height="1e3px" width="258" y="3559.4" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3575.8)"/>
+ <rect id="d0e342" display="none" height="1e3px" width="258" y="3569.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e342"/>
</flowRegion>
<flowDiv xml:space="preserve">Калі апошні штрых кепскі, то проста адмяніце яго (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Аднак, калі ягоная форма добрая, але становішча ці памер небездакорныя, то лепей часова пераключыцца на «Вылучальнік» (<flowSpan font-weight="bold">Прабел</flowSpan>) і пасунуць/зьмяніць памер/паварот як трэба, пасьля ізноў націсьніце <flowSpan font-weight="bold">Прабел</flowSpan> і вярніцеся да інструмэнту каліґрафіі.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3636.5)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3630.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3646.9)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3640.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Зрабіўшы слова, ізноў пераключыцеся на «Вылучальнік», каб паправіць аднастайнасьць асноўных штрыхоў і міжлітарныя інтэрвалы. Аднак не перастарайцеся, добрая каліґрафія мусіць захоўваць няправільны выгляд, нібы зроблены ўручную. Не паддавайцеся спакусе капіяваць літары ці іхныя элемэнты, кожны штрых мусіць быць арыґінальным.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3712.3" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3722.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">І вось некалькі прыкладаў напісаньня:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-be.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-be.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3738)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Унцыял</tspan></text>
- <text id="calligraphy-f10-be.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3738)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Каралінскі шрыфт</tspan></text>
- <text id="calligraphy-f10-be.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3738)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Ґатычны шрыфт</tspan></text>
- <text id="calligraphy-f10-be.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3738)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Бастарда</tspan></text>
- <path id="calligraphy-f10-be.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-be.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3738)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-be.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3738)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Пышны курсіў</tspan></text>
- <path id="calligraphy-f10-be.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3738)" display="block"/>
- <path id="calligraphy-f10-be.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3738)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4316.195777100002" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4316.195777100002" x="10">Высновы</tspan>
+ <path id="calligraphy-f10-be.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-be.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3748.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Унцыял</tspan></text>
+ <text id="calligraphy-f10-be.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3748.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Каралінскі шрыфт</tspan></text>
+ <text id="calligraphy-f10-be.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3748.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Ґатычны шрыфт</tspan></text>
+ <text id="calligraphy-f10-be.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3748.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Бастарда</tspan></text>
+ <path id="calligraphy-f10-be.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-be.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3748.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-be.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3748.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-be.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Пышны курсіў</tspan></text>
+ <path id="calligraphy-f10-be.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3748.3)" display="block"/>
+ <path id="calligraphy-f10-be.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3748.3)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4326.526102100001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4326.526102100001" x="10">Высновы</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4321.4" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4331.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Каліґрафія — гэта ня толькі забава, гэта глыбока духоўнае мастацтва, якое можа зьмяніць ваш погляд на ўсё, што вы робіце й бачыце. Інструмэнт каліґрафіі Inkscape можа служыць толькі сьціплымі ўводзінамі. Але, усё-ткі ён вельмі добры для забаў і можа прыдасца ў сапраўдным дызайне. Атрымоўвайце асалоду!</flowDiv>
</flowRoot>
- <g transform="translate(0 4381.9)">
+ <g transform="translate(0 4392.3)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter150" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.de.svg b/share/tutorials/tutorial-calligraphy.de.svg
index 4fd6590c3..795867348 100644
--- a/share/tutorials/tutorial-calligraphy.de.svg
+++ b/share/tutorials/tutorial-calligraphy.de.svg
@@ -161,8 +161,8 @@
</flowRegion>
<flowDiv xml:space="preserve">Wechseln Sie durch Drücken von <flowSpan font-weight="bold">Strg+F6</flowSpan>, indem Sie die Taste <flowSpan font-weight="bold">c</flowSpan> drücken oder durch Klicken auf das entsprechende Icon in der Werkzeugleiste zum Kalligrafiewerkzeug. In der Werkzeugeinstellungsleiste sehen Sie jetzt 8 Einstellungsmöglichkeiten: Breite &amp; Ausdünnung; Winkel &amp; Fixierung; Linienenden; Zittern; und Wackeln &amp; Masse. Es gibt auch zwei Knöpfe, die Drucksensitivität und Neigungssensitivität an- und ausschalten (für Grafiktabletts).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="997.5092974" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="997.5092974" x="10">Breite &amp; Ausdünnung</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="997.5093014" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="997.5093014" x="10">Breite &amp; Ausdünnung</tspan>
</text>
<rect id="d0e132" display="none" height="1e3px" width="288" y="1002.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -212,21 +212,21 @@
<path id="calligraphy-f02-de.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1438)" display="block"/>
<path id="calligraphy-f02-de.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1438)" display="block"/>
<path id="calligraphy-f02-de.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1438)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1636.2" x="10"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1636.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">Setzen Sie einmal zum Spaß die Breite und die Ausdünnung auf 1 (Maximum) und malen dann mit ruckartigen Bewegungen solche sonderbar natürlich wirkenden, nervenzellähnlichen Formen:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-de.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1682.7)" display="block"/>
- <path id="calligraphy-f03-de.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1682.7)" display="block"/>
- <path id="calligraphy-f03-de.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1682.7)" display="block"/>
- <path id="calligraphy-f03-de.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1682.7)" display="block"/>
- <path id="calligraphy-f03-de.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1682.7)" display="block"/>
- <path id="calligraphy-f03-de.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1682.7)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1835.8228864000002" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1835.8228864000002" x="10">Winkel &amp; Fixierung</tspan>
+ <path id="calligraphy-f03-de.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1682.6)" display="block"/>
+ <path id="calligraphy-f03-de.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1682.6)" display="block"/>
+ <path id="calligraphy-f03-de.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1682.6)" display="block"/>
+ <path id="calligraphy-f03-de.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1682.6)" display="block"/>
+ <path id="calligraphy-f03-de.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1682.6)" display="block"/>
+ <path id="calligraphy-f03-de.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1682.6)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1835.7834654" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1835.7834654" x="10">Winkel &amp; Fixierung</tspan>
</text>
<rect id="d0e192" display="none" height="1e3px" width="288" y="1841" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -261,33 +261,33 @@
<path id="calligraphy-f04-de.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
<path id="calligraphy-f04-de.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1930.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="2082.1" x="10"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="2082" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
</flowRegion>
<flowDiv xml:space="preserve">Jeder traditionelle Kalligrafiestil hat seinen eigenen vorherrschenden Schriftwinkel. Zum Beispiel verwendet die Unzial-Handschrift einen Winkel von 25 Grad. Bei komplexeren Schriftstilen und bei erfahrenen Kalligrafen ändern sich oftmals der Schriftwinkel während des Schreibens. Bei Inkscape ist dies durch Drücken der Pfeiltasten <flowSpan font-weight="bold">hoch</flowSpan> und <flowSpan font-weight="bold">runter</flowSpan> sowie mit einem Grafiktablett, welches diese Funktionen unterstützt, möglich. Für den Anfang Ihrer kalligrafischen Übungen ist es jedoch sinnvoll, den Winkel zunächst konstant zu halten. Hier sind Beispiele von Strichen, die mit unterschiedlichen Winkeleinstellungen gezeichnet wurden (bei Fixierung = 100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-de.svgtext4984" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">Winkel = 30°</tspan></text>
- <text id="calligraphy-f05-de.svgtext4987" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">Winkel = 60°</tspan></text>
- <text id="calligraphy-f05-de.svgtext4990" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">Winkel = 90°</tspan></text>
- <text id="calligraphy-f05-de.svgtext4993" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">Winkel = 0°</tspan></text>
- <text id="calligraphy-f05-de.svgtext4996" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">Winkel = 15°</tspan></text>
- <text id="calligraphy-f05-de.svgtext4999" xml:space="preserve" transform="translate(10 2203.7)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">Winkel = -45°</tspan></text>
- <path id="calligraphy-f05-de.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2203.7)" display="block"/>
- <path id="calligraphy-f05-de.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2203.7)" display="block"/>
- <path id="calligraphy-f05-de.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2203.7)" display="block"/>
- <path id="calligraphy-f05-de.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2203.7)" display="block"/>
- <path id="calligraphy-f05-de.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2203.7)" display="block"/>
- <path id="calligraphy-f05-de.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2203.7)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2359.6" x="10"/>
+ <text id="calligraphy-f05-de.svgtext4984" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">Winkel = 30°</tspan></text>
+ <text id="calligraphy-f05-de.svgtext4987" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">Winkel = 60°</tspan></text>
+ <text id="calligraphy-f05-de.svgtext4990" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">Winkel = 90°</tspan></text>
+ <text id="calligraphy-f05-de.svgtext4993" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">Winkel = 0°</tspan></text>
+ <text id="calligraphy-f05-de.svgtext4996" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">Winkel = 15°</tspan></text>
+ <text id="calligraphy-f05-de.svgtext4999" xml:space="preserve" transform="translate(10 2203.6)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-de.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">Winkel = -45°</tspan></text>
+ <path id="calligraphy-f05-de.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2203.6)" display="block"/>
+ <path id="calligraphy-f05-de.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2203.6)" display="block"/>
+ <path id="calligraphy-f05-de.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2203.6)" display="block"/>
+ <path id="calligraphy-f05-de.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2203.6)" display="block"/>
+ <path id="calligraphy-f05-de.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2203.6)" display="block"/>
+ <path id="calligraphy-f05-de.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2203.6)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2359.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Wie man sieht, ist der Strich am schmalsten, wenn er parallel zum eingestellten Winkel verläuft und am breitesten, wenn er senkrecht dazu verläuft. Positive Winkel wirken bei der Rechtshänder-Kalligrafie am natürlichsten und sind dabei die am häufigsten verwendeten Winkel.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2418.4" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2418.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-de.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-de.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">Fixierung = 100</tspan></text>
- <text id="calligraphy-f06-de.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">Fixierung = 80</tspan></text>
- <text id="calligraphy-f06-de.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Fixierung = 0</tspan></text>
- <path id="calligraphy-f06-de.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2517.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-de.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2517.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-de.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2517.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-de.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-de.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-de.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-de.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-de.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-de.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517.1) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-de.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-de.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">Fixierung = 100</tspan></text>
+ <text id="calligraphy-f06-de.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">Fixierung = 80</tspan></text>
+ <text id="calligraphy-f06-de.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2517)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-de.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">Winkel = 30°</tspan><tspan id="calligraphy-f06-de.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Fixierung = 0</tspan></text>
+ <path id="calligraphy-f06-de.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2517)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-de.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2517)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-de.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2517)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-de.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-de.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-de.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-de.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-de.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-de.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-de.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2517) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-de.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-de.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-de.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-de.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-de.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-de.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-de.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-de.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-de.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-de.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-de.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-de.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-de.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-de.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-de.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-de.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-de.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-de.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-de.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-de.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-de.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-de.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-de.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-de.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-de.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-de.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-de.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-de.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-de.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-de.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-de.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-de.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-de.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-de.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-de.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-de.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-de.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-de.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-de.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-de.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-de.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-de.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-de.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-de.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-de.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-de.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-de.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-de.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-de.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-de.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517.1) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-de.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2517) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-de.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-de.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,24 +464,24 @@
<path id="calligraphy-f06-de.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-de.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2658.6" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2658.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Typographisch gesprochen ist die maximale Fixierung und daher der maximale Strichbreitenkontrast (oben links) ein Kennzeichen der antiken Serifenschriftarten, so wie bei der Times oder der Bondi (da diese Schriftarten aus einer Imitation der Kalligrafie mit fixiertem Stift hervorgegangen sind). Null Fixierung in Verbindung mit null Breitenkonstrast (oben rechts) repräsentiert auf der anderen Seite moderne serifenlose Schriftarten wie die Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2751.4186504000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2751.4186504000004" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2751.3398094000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2751.3398094000004" x="10">Tremor</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2756.6" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2756.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Tremor</flowSpan> bzw. <flowSpan font-style="italic">Zittern</flowSpan> dient dazu, Ihren Strichen ein natürlicheres Aussehen zu verleihen. Der Tremor kann in der Einstellungsleiste von 0 bis 100 geändert werden. Er kann Ihre Striche ganz leicht uneben machen oder sie in wilde Kleckse verwandeln. Dies erweitert die kreativen Möglichkeiten des Werkzeuges beträchtlich.</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-de.svgg3123" font-size="6px" transform="translate(10 2855.1)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-de.svgg3123" font-size="6px" transform="translate(10 2855)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-de.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-de.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">langsam</tspan></text>
<text id="calligraphy-f07-de.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-de.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">mittel</tspan></text>
<text id="calligraphy-f07-de.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-de.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">schnell</tspan></text>
@@ -495,74 +495,74 @@
<use id="calligraphy-f07-de.svguse3153" xlink:href="#calligraphy-f07-de.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-de.svguse3151" xlink:href="#calligraphy-f07-de.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-de.svguse3149" xlink:href="#calligraphy-f07-de.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-de.svgtext3177" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">Zittern = 0</tspan></text>
- <text id="calligraphy-f07-de.svgtext3111" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">Zittern = 10</tspan></text>
- <text id="calligraphy-f07-de.svgtext1990" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">Zittern = 30</tspan></text>
- <text id="calligraphy-f07-de.svgtext2991" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">Zittern = 50</tspan></text>
- <text id="calligraphy-f07-de.svgtext2995" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">Zittern = 70</tspan></text>
- <text id="calligraphy-f07-de.svgtext1993" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">Zittern = 90</tspan></text>
- <text id="calligraphy-f07-de.svgtext1996" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">Zittern = 20</tspan></text>
- <text id="calligraphy-f07-de.svgtext2999" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">Zittern = 40</tspan></text>
- <text id="calligraphy-f07-de.svgtext3003" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">Zittern = 60</tspan></text>
- <text id="calligraphy-f07-de.svgtext3007" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">Zittern = 80</tspan></text>
- <text id="calligraphy-f07-de.svgtext1999" xml:space="preserve" transform="translate(10 2825.1)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">Zittern = 100</tspan></text>
- <path id="calligraphy-f07-de.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2825.1)"/>
- <path id="calligraphy-f07-de.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2825.1)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3102.6201014000003" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3102.6201014000003" x="10">Wackeln &amp; Masse</tspan>
+ <text id="calligraphy-f07-de.svgtext3177" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">Zittern = 0</tspan></text>
+ <text id="calligraphy-f07-de.svgtext3111" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">Zittern = 10</tspan></text>
+ <text id="calligraphy-f07-de.svgtext1990" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">Zittern = 30</tspan></text>
+ <text id="calligraphy-f07-de.svgtext2991" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">Zittern = 50</tspan></text>
+ <text id="calligraphy-f07-de.svgtext2995" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">Zittern = 70</tspan></text>
+ <text id="calligraphy-f07-de.svgtext1993" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">Zittern = 90</tspan></text>
+ <text id="calligraphy-f07-de.svgtext1996" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">Zittern = 20</tspan></text>
+ <text id="calligraphy-f07-de.svgtext2999" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">Zittern = 40</tspan></text>
+ <text id="calligraphy-f07-de.svgtext3003" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">Zittern = 60</tspan></text>
+ <text id="calligraphy-f07-de.svgtext3007" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">Zittern = 80</tspan></text>
+ <text id="calligraphy-f07-de.svgtext1999" xml:space="preserve" transform="translate(10 2825)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-de.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">Zittern = 100</tspan></text>
+ <path id="calligraphy-f07-de.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2825)"/>
+ <path id="calligraphy-f07-de.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2825)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3102.5412604000003" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3102.5412604000003" x="10">Wackeln &amp; Masse</tspan>
</text>
- <rect id="d0e279" display="none" height="1e3px" width="288" y="3107.8" x="10"/>
+ <rect id="d0e279" display="none" height="1e3px" width="288" y="3107.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e279"/>
</flowRegion>
<flowDiv xml:space="preserve">Anders als bei Breite und Winkel definieren diese Einstellungen eher, wie sich das Werkzeug »anfühlt«, als dass sie einen visuellen Effekt bewirken. Deshalb wird es in diesem Abschnitt keine Illustrationen geben, stattdessen versuchen Sie es am besten einmal selbst, um einen besseren Eindruck zu bekommen.</flowDiv>
</flowRoot>
- <rect id="d0e282" display="none" height="1e3px" width="288" y="3166.6" x="10"/>
+ <rect id="d0e282" display="none" height="1e3px" width="288" y="3166.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e282"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Wackeln</flowSpan> entspricht der Widerstandskraft des Papiers gegen die Bewegung des Stiftes dar. Die Vorgabe ist das Minimum (0) und bei Erhöhung dieses Wertes wird das Papier »rutschiger«: wenn die Masse groß ist, dann neigt der Stift dazu, bei scharfen Kurven auszubrechen; ist die Masse Null, dann bewirkt ein hoher Wert ein starkes Zittern des Stiftes.</flowDiv>
</flowRoot>
- <rect id="d0e287" display="none" height="1e3px" width="288" y="3236" x="10"/>
+ <rect id="d0e287" display="none" height="1e3px" width="288" y="3235.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e287"/>
</flowRegion>
<flowDiv xml:space="preserve">In der Physik verursacht <flowSpan font-style="italic">Masse</flowSpan> Trägheit; je höher die Masse des Kalligrafiewerkzeugs eingestellt wird, desto mehr verzögert sich der Mauszeiger und es glätten sich scharfe Wendungen und schnelle Zerrungen im Strich. Die Vorgabe des Wertes ist relativ klein (2), sodass das Werkzeug schnell anspricht, aber Sie können die Masse erhöhen, um einen langsamer reagierenden und weicheren Stift zu bekommen.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3328.8451044000003" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3328.8451044000003" x="10">Kalligrafiebeispiele</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3328.7662634000003" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3328.7662634000003" x="10">Kalligrafiebeispiele</tspan>
</text>
<rect id="d0e299" display="none" height="1e3px" width="288" y="3334" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -571,213 +571,213 @@
</flowRegion>
<flowDiv xml:space="preserve">Nun da Sie die grundlegenden Fähigkeiten dieses Werkzeugs kennen gelernt haben, können Sie versuchen, richtige Kalligrafie anzuwenden. Wenn Sie ein Neuling der Kalligrafiekunst sind, dann besorgen Sie sich ein gutes Kalligrafiebuch und versuchen Sie Ihre Erkenntnisse mit Inkscape umzusetzen. Dieser Abschnitt wird Ihnen ein paar einfache Beispiele aufzeigen.</flowDiv>
</flowRoot>
- <rect id="d0e302" display="none" height="1e3px" width="288" y="3405.2" x="10"/>
+ <rect id="d0e302" display="none" height="1e3px" width="288" y="3405.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e302"/>
</flowRegion>
<flowDiv xml:space="preserve">Zu allererst, wenn Sie Buchstaben erstellen wollen, brauchen Sie ein Hilfslinien-Paar. Wenn Sie geneigt oder kursiv schreiben wollen, so fügen Sie ein paar geneigte Linien hinzu, die das Hilfslinien-Paar kreuzen, zum Beispiel:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-de.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-de.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e315" display="none" height="1e3px" width="288" y="3535.4" x="10"/>
+ <path id="calligraphy-f08-de.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-de.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3462.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e315" display="none" height="1e3px" width="288" y="3535.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e315"/>
</flowRegion>
<flowDiv xml:space="preserve">Nun zoomen Sie soweit hinein, bis die Höhe zwischen den Hilfslinien den natürlichen Bereich ihrer Handbewegungen erreichen, dann passen Sie Breite und Winkel an und los geht&apos;s!</flowDiv>
</flowRoot>
- <rect id="d0e318" display="none" height="1e3px" width="288" y="3574.6" x="10"/>
+ <rect id="d0e318" display="none" height="1e3px" width="288" y="3574.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e318"/>
</flowRegion>
<flowDiv xml:space="preserve">Als Kalligrafieanfänger möchten Sie möglicherweise als erstes die Basiselemente der Buchstaben üben — vertikale und horizontale Stämme, runde Striche, geneigte Stämme. Hier sind einige Buchstabenelemente der für die Unzialschrift:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-de.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3630.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-de.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3630.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-de.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3630.8)" display="block"/>
- <path id="calligraphy-f09-de.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3630.8)" display="block"/>
- <rect id="d0e331" display="none" height="1e3px" width="288" y="3673.8" x="10"/>
+ <path id="calligraphy-f09-de.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3630.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-de.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3630.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-de.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3630.7)" display="block"/>
+ <path id="calligraphy-f09-de.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3630.7)" display="block"/>
+ <rect id="d0e331" display="none" height="1e3px" width="288" y="3673.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e331"/>
</flowRegion>
<flowDiv xml:space="preserve">Verschiedene hilfreiche Tipps:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3697.5)"/>
- <rect id="d0e337" display="none" height="1e3px" width="258" y="3691.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3697.4)"/>
+ <rect id="d0e337" display="none" height="1e3px" width="258" y="3691.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e337"/>
</flowRegion>
<flowDiv xml:space="preserve">Wenn Ihre Hand komfortabel auf dem Tablet ruht, dann bewegen Sie sie nicht. Scrollen Sie nach dem Erstellen einzelner Buchstaben stattdessen das Dokumentenfenster (<flowSpan font-weight="bold">Strg+Pfeil</flowSpan>-Tasten) mit Ihrer linken Hand.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3747.3)"/>
- <rect id="d0e344" display="none" height="1e3px" width="258" y="3741.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3747.2)"/>
+ <rect id="d0e344" display="none" height="1e3px" width="258" y="3741.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e344"/>
</flowRegion>
<flowDiv xml:space="preserve">Wenn Ihr letzter Strich nicht gelungen ist, machen Sie ihn einfach rückgängig (<flowSpan font-weight="bold">Strg+Z</flowSpan>). Wenn eine Form gelungen, aber die Position oder Größe ein wenig verrutscht ist, dann ist es besser, kurz zum Auswahlwerkzeug zu wechseln (<flowSpan font-weight="bold">Leertaste</flowSpan>) und die Form nachträglich über bewegen/skalieren/rotieren zu korrigieren (mit Maus oder Tastatur). Anschließend wieder die <flowSpan font-weight="bold">Leertaste</flowSpan> drücken, um zum Kalligrafiewerkzeug zurückzukehren.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3838.1)"/>
- <rect id="d0e357" display="none" height="1e3px" width="258" y="3832.1" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3837.9)"/>
+ <rect id="d0e357" display="none" height="1e3px" width="258" y="3831.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e357"/>
</flowRegion>
<flowDiv xml:space="preserve">Wenn Sie ein Wort erstellt haben, wechseln Sie erneut zum Auswahlwerkzeug, um die Hauptlinie gleichmäßiger zu machen und den Abstand anzupassen. Übertreiben Sie es aber nicht, denn gute Kalligrafie sollte immer noch nach Handschrift aussehen. Geraten Sie nicht in Versuchung, einzelne Schriftelemente immer wieder zu kopieren; jeder Strich sollte ein Original sein.</flowDiv>
</flowRoot>
- <rect id="d0e361" display="none" height="1e3px" width="288" y="3913.8" x="10"/>
+ <rect id="d0e361" display="none" height="1e3px" width="288" y="3913.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e361"/>
</flowRegion>
<flowDiv xml:space="preserve">Hier finden Sie einige komplette Schriftzugbeispiele:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-de.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-de.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.6)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unzialen</tspan></text>
- <text id="calligraphy-f10-de.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.6)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolingische Schrift</tspan></text>
- <text id="calligraphy-f10-de.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.6)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotische Schrift</tspan></text>
- <text id="calligraphy-f10-de.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.6)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde</tspan></text>
- <path id="calligraphy-f10-de.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-de.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3939.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-de.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.6)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Kursivschrift mit Verzierungen</tspan></text>
- <path id="calligraphy-f10-de.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3939.6)" display="block"/>
- <path id="calligraphy-f10-de.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3939.6)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4518.0258227" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4518.0258227" x="10">Fazit</tspan>
+ <path id="calligraphy-f10-de.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-de.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.4)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unzialen</tspan></text>
+ <text id="calligraphy-f10-de.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.4)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolingische Schrift</tspan></text>
+ <text id="calligraphy-f10-de.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.4)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotische Schrift</tspan></text>
+ <text id="calligraphy-f10-de.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.4)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde</tspan></text>
+ <path id="calligraphy-f10-de.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-de.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3939.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-de.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3939.4)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-de.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Kursivschrift mit Verzierungen</tspan></text>
+ <path id="calligraphy-f10-de.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3939.4)" display="block"/>
+ <path id="calligraphy-f10-de.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3939.4)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4517.828711700001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4517.828711700001" x="10">Fazit</tspan>
</text>
- <rect id="d0e380" display="none" height="1e3px" width="288" y="4523.2" x="10"/>
+ <rect id="d0e380" display="none" height="1e3px" width="288" y="4523" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e380"/>
</flowRegion>
<flowDiv xml:space="preserve">Kalligrafie macht nicht nur Spaß; es ist eine tiefe, fast spirituelle Kunst, die Ihren Blick für alles, was Sie tun und sehen verändern kann. Inkscapes Kalligrafiewerkzeug kann nur als bescheidene Einleitung dienen. Es macht aber dennoch Spaß, damit herumzuspielen, und es kann sogar nützlich für wirkliches Design sein. Viel Spaß!</flowDiv>
</flowRoot>
- <g transform="translate(0 4594.2)">
+ <g transform="translate(0 4594)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter85" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.el.svg b/share/tutorials/tutorial-calligraphy.el.svg
index 136184be0..35ccf08b9 100644
--- a/share/tutorials/tutorial-calligraphy.el.svg
+++ b/share/tutorials/tutorial-calligraphy.el.svg
@@ -142,7 +142,7 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">Εάν έχετε μια πινακίδα και θα θέλατε να χρησιμοποιήσετε τα χαρακτηριστικά ευαισθησίας, θα χρειασθείτε να διαμορφώσετε την συσκευή σας. Αυτή η διαμόρφωση θα χρειασθεί να εκτελεσθεί μόνο μια φορά και οι ρυθμίσεις θα αποθηκευτούν. Για να ενεργοποιήσετε αυτήν την υποστήριξη, πρέπει η πινακίδα να είναι συνδεμένη πριν την εκκίνηση του inkscape και έπειτα να συνεχίσετε με το άνοιγμα του διαλόγου <flowSpan font-style="italic">Συσκευές εισόδου...</flowSpan> μέσα από το μενού <flowSpan font-style="italic">Επεξεργασία</flowSpan>. Με αυτόν τον διάλογο ανοικτό, μπορείτε να διαλέξετε την προτιμώμενη συσκευή και ρυθμίσεις για τη γραφίδα της πινακίδας σας. Τέλος, μετά την επιλογή αυτών των ρυθμίσεων, μετάβαση στο εργαλείο καλλιγραφίας και εναλλαγή των κουμπιών της εργαλειοθήκης για πίεση και κλίση. Από δω και πέρα, το Inkscape θα θυμάται αυτές τις ρυθμίσεις στην εκκίνηση.</flowDiv>
+ <flowDiv xml:space="preserve">Εάν έχετε μια πινακίδα και θα θέλατε να χρησιμοποιήσετε τα χαρακτηριστικά ευαισθησίας, θα χρειασθείτε να διαμορφώσετε την συσκευή σας. Αυτή η διαμόρφωση θα χρειασθεί να εκτελεσθεί μόνο μια φορά και οι ρυθμίσεις θα αποθηκευτούν. Για να ενεργοποιήσετε αυτήν την υποστήριξη, πρέπει η πινακίδα να είναι συνδεμένη πριν την εκκίνηση του Inkscape και έπειτα να συνεχίσετε με το άνοιγμα του διαλόγου <flowSpan font-style="italic">Συσκευές εισόδου...</flowSpan> μέσα από το μενού <flowSpan font-style="italic">Επεξεργασία</flowSpan>. Με αυτόν τον διάλογο ανοικτό, μπορείτε να διαλέξετε την προτιμώμενη συσκευή και ρυθμίσεις για τη γραφίδα της πινακίδας σας. Τέλος, μετά την επιλογή αυτών των ρυθμίσεων, μετάβαση στο εργαλείο καλλιγραφίας και εναλλαγή των κουμπιών της εργαλειοθήκης για πίεση και κλίση. Από δω και πέρα, το Inkscape θα θυμάται αυτές τις ρυθμίσεις στην εκκίνηση.</flowDiv>
</flowRoot>
<rect id="d0e105" display="none" height="1e3px" width="288" y="814.51" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -161,10 +161,10 @@
</flowRegion>
<flowDiv xml:space="preserve">Μετάβαση στο εργαλείο καλλιγραφίας πιέζοντας <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, ή το πλήκτρο <flowSpan font-weight="bold">C</flowSpan>, ή πατώντας στο κουπί της γραμμής εργαλείων. Στην ανώτερη γραμμή εργαλείων, θα σημειώσετε ότι υπάρχουν 8 επιλογές: πλάτος &amp; λέπτυνση; γωνία &amp; Σταθεροποίηση; κεφαλαία; τρέμουλο, Ανατάραξη &amp; μάζα. Υπάρχουν επίσης δύο κουμπιά για εναλλαγή ευαισθησίας πίεσης και κλίσης πινακίδας ενεργό και ανενεργό (για σχεδιαστικές πινακίδες).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="977.3308754" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="977.3308754" x="10">Πλάτος &amp; λέπτυνση</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="977.3111653999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="977.3111653999999" x="10">Πλάτος &amp; λέπτυνση</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="982.53" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="982.51" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
@@ -187,32 +187,32 @@
</flowRegion>
<flowDiv xml:space="preserve">Το πλάτος της πένας μπορεί επίσης να εξαρτάται από την ταχύτητα, όπως ελέγχεται από την παράμετρο <flowSpan font-style="italic">λέπτυνσης</flowSpan>. Αυτή η παράμετρος μπορεί να πάρει τιμές από -100 έως 100. Μηδέν σημαίνει ότι το πλάτος είναι ανεξάρτητο από την ταχύτητα, θετικές τιμές κάνουν τις πιο γρήγορες πινελιές πιο λεπτές, αρνητικές τιμές κάνουν τις πιο γρήγορες πινελιές πιο πλατιές. Η προεπιλογή 10 σημαίνει μέτρια λέπτυνση των γρήγορων πινελιών. Ιδού μερικά παραδείγματα, όλα σχεδιασμένα με πλάτος=20 και γωνία=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-el.svgtext1987" xml:space="preserve" transform="translate(10 1408.1)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">λέπτυνση = 0 (ομοιόμορφο πλάτος) </tspan></text>
- <text id="calligraphy-f02-el.svgtext1990" xml:space="preserve" transform="translate(10 1408.1)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">λέπτυνση = 10</tspan></text>
- <text id="calligraphy-f02-el.svgtext1993" xml:space="preserve" transform="translate(10 1408.1)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">λέπτυνση = 40</tspan></text>
- <text id="calligraphy-f02-el.svgtext1996" xml:space="preserve" transform="translate(10 1408.1)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">λέπτυνση = -20</tspan></text>
- <text id="calligraphy-f02-el.svgtext1999" xml:space="preserve" transform="translate(10 1408.1)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">λέπτυνση = -60</tspan></text>
- <path id="calligraphy-f02-el.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1408.1)" display="block"/>
- <path id="calligraphy-f02-el.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1408.1)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1606.5" x="10"/>
+ <text id="calligraphy-f02-el.svgtext1987" xml:space="preserve" transform="translate(10 1408)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">λέπτυνση = 0 (ομοιόμορφο πλάτος) </tspan></text>
+ <text id="calligraphy-f02-el.svgtext1990" xml:space="preserve" transform="translate(10 1408)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">λέπτυνση = 10</tspan></text>
+ <text id="calligraphy-f02-el.svgtext1993" xml:space="preserve" transform="translate(10 1408)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">λέπτυνση = 40</tspan></text>
+ <text id="calligraphy-f02-el.svgtext1996" xml:space="preserve" transform="translate(10 1408)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">λέπτυνση = -20</tspan></text>
+ <text id="calligraphy-f02-el.svgtext1999" xml:space="preserve" transform="translate(10 1408)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-el.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">λέπτυνση = -60</tspan></text>
+ <path id="calligraphy-f02-el.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1408)" display="block"/>
+ <path id="calligraphy-f02-el.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1408)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1606.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
@@ -225,10 +225,10 @@
<path id="calligraphy-f03-el.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1653.9)" display="block"/>
<path id="calligraphy-f03-el.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1653.9)" display="block"/>
<path id="calligraphy-f03-el.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1653.9)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1807.0671034" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1807.0671034" x="10">Γωνία &amp; σταθεροποίηση</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1807.0276824" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1807.0276824" x="10">Γωνία &amp; σταθεροποίηση</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1812.3" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1812.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-el.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-el.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">Σταθεροποίηση = 100</tspan></text>
- <text id="calligraphy-f06-el.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">Σταθεροποίηση = 80</tspan></text>
- <text id="calligraphy-f06-el.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Σταθεροποίηση = 0</tspan></text>
- <path id="calligraphy-f06-el.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2451.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-el.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2451.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-el.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2451.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-el.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-el.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-el.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-el.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-el.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-el.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.8) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-el.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-el.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">Σταθεροποίηση = 100</tspan></text>
+ <text id="calligraphy-f06-el.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">Σταθεροποίηση = 80</tspan></text>
+ <text id="calligraphy-f06-el.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2451.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-el.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">γωνία = 30</tspan><tspan id="calligraphy-f06-el.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Σταθεροποίηση = 0</tspan></text>
+ <path id="calligraphy-f06-el.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2451.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-el.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2451.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-el.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2451.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-el.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-el.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-el.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-el.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-el.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-el.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-el.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2451.7) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-el.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-el.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-el.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-el.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-el.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-el.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-el.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-el.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-el.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-el.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-el.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-el.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-el.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-el.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-el.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-el.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-el.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-el.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-el.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-el.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-el.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-el.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-el.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-el.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-el.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-el.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-el.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-el.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-el.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-el.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-el.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-el.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-el.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-el.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-el.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-el.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-el.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-el.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-el.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-el.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-el.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-el.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-el.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-el.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-el.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-el.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-el.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-el.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-el.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-el.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.8) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-el.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2451.7) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-el.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-el.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,17 +464,17 @@
<path id="calligraphy-f06-el.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-el.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2593.5" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2593.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Μιλώντας τυπογραφικά, η μέγιστη σταθεροποίηση και συνεπώς μέγιστη αντίθεση πλάτους πινελιάς (πάνω αριστερά) είναι τα χαρακτηριστικά των παλιών οικογενειών χαρακτήρων με πατούρα, όπως Times ή Bodoni (επειδή αυτές οι οικογένειες χαρακτήρων ήταν ιστορικά μια απομίμηση των καλλιγραφιών σταθερής πένας). Από την άλλη πλευρά, μηδενική σταθεροποίηση και μηδενική αντίθεση πλάτους (πάνω δεξιά), προτείνουν σύγχρονες οικογένειες χαρακτήρων χωρίς πατούρα όπως η Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2698.9513514" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2698.9513514" x="10">Τρέμουλο</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2698.8922234" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2698.8922234" x="10">Τρέμουλο</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2704.2" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2704.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -537,10 +537,10 @@
<path id="calligraphy-f07-el.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2783.4)"/>
<path id="calligraphy-f07-el.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2783.4)"/>
<path id="calligraphy-f07-el.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2783.4)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3061.1974264" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3061.1974264" x="10">Ανατάραξη &amp; μάζα</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3061.1382984" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3061.1382984" x="10">Ανατάραξη &amp; μάζα</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="3066.4" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="3066.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
@@ -561,17 +561,17 @@
</flowRegion>
<flowDiv xml:space="preserve">Στη φυσική, <flowSpan font-style="italic">η μάζα</flowSpan> προκαλεί αδράνεια. Όσο πιο μεγάλη η μάζα του εργαλείου καλλιγραφίας του Inkscape, τόσο περισσότερο καθυστερεί πίσω από το δείκτη του ποντικιού και τόσο περισσότερο εξομαλύνει απότομες στροφές και γρήγορα τραβήγματα στην πινελιά σου. Από προεπιλογή αυτή η τιμή είναι αρκετά μικρή (2), έτσι ώστε το εργαλείο να είναι γρήγορο και με ανταπόκριση, αλλά μπορείτε να αυξήσετε τη μάζα για να πάρετε πιο αργή και πιο μαλακή πένα.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3282.3569794" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3282.3569794" x="10">Παραδείγματα καλλιγραφίας</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3282.2978514" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3282.2978514" x="10">Παραδείγματα καλλιγραφίας</tspan>
</text>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="3287.6" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3287.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Τώρα που ξέρετε τις βασικές δυνατότητες του εργαλείου, μπορείτε να προσπαθήσετε να παράξετε αληθινή καλλιγραφία. Εάν είσθε νέος σε αυτήν την τέχνη, πάρτε ένα καλό βιβλίο καλλιγραφίας και μελετήστε το με το Inkscape. Αυτή η ενότητα θα σας δείξει μόνο μερικά απλά παραδείγματα.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3348.2" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3348.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
@@ -593,7 +593,7 @@
</flowRegion>
<flowDiv xml:space="preserve">Έπειτα εστιάστε έτσι ώστε το ύψος μεταξύ των χαράκων να αντιστοιχεί στην πιο φυσική περιοχή κίνησης του χεριού, ρυθμίστε πλάτος και γωνία, και φύγαμε!</flowDiv>
</flowRoot>
- <rect id="d0e316" display="none" height="1e3px" width="288" y="3528.9" x="10"/>
+ <rect id="d0e316" display="none" height="1e3px" width="288" y="3528.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e316"/>
@@ -617,7 +617,7 @@
<path id="calligraphy-f09-el.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3595.9)" display="block"/>
<path id="calligraphy-f09-el.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3595.9)" display="block"/>
<path id="calligraphy-f09-el.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3595.9)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3639" x="10"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3638.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
@@ -632,152 +632,152 @@
</flowRegion>
<flowDiv xml:space="preserve">Εάν το χέρι σας είναι άνετο στην πινακίδα, μην το μετακινήσετε. Αντίθετα, κυλίστε τον καμβά (πλήκτρα <flowSpan font-weight="bold">Ctrl+βέλος</flowSpan>) με το αριστερό σας χέρι μετά το τέλος κάθε γράμματος.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3713.2)"/>
- <rect id="d0e342" display="none" height="1e3px" width="258" y="3707.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3713.1)"/>
+ <rect id="d0e342" display="none" height="1e3px" width="258" y="3707.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e342"/>
</flowRegion>
<flowDiv xml:space="preserve">Εάν η τελευταία πινελιά ήταν κακή, απλά αναιρέστε την (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Όμως, εάν το σχήμα της είναι καλό, αλλά η θέση ή μέγεθος είναι ελαφρά εκτός, είναι καλύτερο να μεταβείτε στο επιλογέα προσωρινά (<flowSpan font-weight="bold">διάστημα</flowSpan>) και ώθηση/κλιμάκωση/περιστροφή της όσο χρειάζεται (χρησιμοποιώντας ποντίκι ή πλήκτρα), έπειτα πιέστε <flowSpan font-weight="bold">διάστημα</flowSpan> ξανά για να επιστρέψετε στο εργαλείο καλλιτεχνίας.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3795.2)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3789.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3795.1)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3789.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Έχοντας γράψει μια λέξη, μεταβείτε στον επιλογέα πάλι για να ρυθμίσετε την ομοιομορφία του στελέχους και το διάκενο των γραμμάτων. Μην το παρακάνετε αυτό, όμως. Η καλή καλλιγραφία πρέπει να διατηρεί κάποια ακανόνιστη όψη χειρογραφής. Αντισταθείτε στον πειρασμό να αντιγράψετε ακριβώς γράμματα και στοιχεία γραμμάτων. Κάθε πινελιά πρέπει να είναι αυθεντική.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3871.2" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3871" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Και να μερικά πλήρη παραδείγματα σχεδίασης γραμμάτων:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-el.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-el.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial γραφή</tspan></text>
- <text id="calligraphy-f10-el.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Γραφή Καρολιδών (Carolingian)</tspan></text>
- <text id="calligraphy-f10-el.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Γοτθική γραφή</tspan></text>
- <text id="calligraphy-f10-el.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Ενδιάμεση (Bâtarde) γραφή</tspan></text>
- <path id="calligraphy-f10-el.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-el.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3897.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-el.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Διακοσμητική ιταλική γραφή</tspan></text>
- <path id="calligraphy-f10-el.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3897.3)" display="block"/>
- <path id="calligraphy-f10-el.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3897.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4475.9506128" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4475.9506128" x="10">Συμπέρασμα</tspan>
+ <path id="calligraphy-f10-el.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-el.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.2)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial γραφή</tspan></text>
+ <text id="calligraphy-f10-el.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.2)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Γραφή Καρολιδών (Carolingian)</tspan></text>
+ <text id="calligraphy-f10-el.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.2)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Γοτθική γραφή</tspan></text>
+ <text id="calligraphy-f10-el.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.2)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Ενδιάμεση (Bâtarde) γραφή</tspan></text>
+ <path id="calligraphy-f10-el.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-el.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3897.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-el.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3897.2)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-el.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Διακοσμητική ιταλική γραφή</tspan></text>
+ <path id="calligraphy-f10-el.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3897.2)" display="block"/>
+ <path id="calligraphy-f10-el.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3897.2)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4475.792926800001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4475.792926800001" x="10">Συμπέρασμα</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4481.2" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4481" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Η καλλιγραφία δεν είναι μόνο διασκέδαση. Είναι βαθιά πνευματική τέχνη που μπορεί να μετασχηματίσει την στάση σας σε κάθε τι που κάνετε και βλέπετε. Το εργαλείο καλλιγραφίας του Inkscape μπορεί να χρησιμεύσει ως απλή εισαγωγή. Παρόλα αυτά είναι πολύ όμορφο να παίξετε με αυτό και ίσως χρήσιμο στην αληθινή σχεδίαση. Απολαύστε το!</flowDiv>
</flowRoot>
- <g transform="translate(0 4550.9)">
+ <g transform="translate(0 4550.7)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.es.svg b/share/tutorials/tutorial-calligraphy.es.svg
index 109b91584..6ac09752f 100644
--- a/share/tutorials/tutorial-calligraphy.es.svg
+++ b/share/tutorials/tutorial-calligraphy.es.svg
@@ -145,7 +145,7 @@
<flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
to configure your device. This configuration will only need to be performed once and
the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
+prior to starting Inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
@@ -206,7 +206,7 @@ by double-clicking the tool button).
</flowRoot>
<text id="calligraphy-f01-es.svgtext1944" xml:space="preserve" transform="translate(10 1061.7)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-es.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
<path id="calligraphy-f01-es.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1061.7)" display="block"/>
- <rect id="d0e145" display="none" height="1e3px" width="288" y="1150.7" x="10"/>
+ <rect id="d0e145" display="none" height="1e3px" width="288" y="1150.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e145"/>
@@ -253,10 +253,10 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f03-es.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1496.5)" display="block"/>
<path id="calligraphy-f03-es.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1496.5)" display="block"/>
<path id="calligraphy-f03-es.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1496.5)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1649.6512183999998" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1649.6512183999998" x="10">ángulo &amp; Fijación</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1649.6315073999997" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1649.6315073999997" x="10">ángulo &amp; Fijación</tspan>
</text>
- <rect id="d0e180" display="none" height="1e3px" width="288" y="1654.9" x="10"/>
+ <rect id="d0e180" display="none" height="1e3px" width="288" y="1654.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e180"/>
@@ -303,26 +303,26 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-es.svgtext4984" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">angle = 30</tspan></text>
- <text id="calligraphy-f05-es.svgtext4987" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">angle = 60</tspan></text>
- <text id="calligraphy-f05-es.svgtext4990" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">angle = 90</tspan></text>
- <text id="calligraphy-f05-es.svgtext4993" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">angle = 0</tspan></text>
- <text id="calligraphy-f05-es.svgtext4996" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">angle = 15</tspan></text>
- <text id="calligraphy-f05-es.svgtext4999" xml:space="preserve" transform="translate(10 1965.3)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">angle = -45</tspan></text>
- <path id="calligraphy-f05-es.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1965.3)" display="block"/>
- <path id="calligraphy-f05-es.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1965.3)" display="block"/>
- <path id="calligraphy-f05-es.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1965.3)" display="block"/>
- <path id="calligraphy-f05-es.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1965.3)" display="block"/>
- <path id="calligraphy-f05-es.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1965.3)" display="block"/>
- <path id="calligraphy-f05-es.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1965.3)" display="block"/>
- <rect id="d0e215" display="none" height="1e3px" width="288" y="2121.2" x="10"/>
+ <text id="calligraphy-f05-es.svgtext4984" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">angle = 30</tspan></text>
+ <text id="calligraphy-f05-es.svgtext4987" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">angle = 60</tspan></text>
+ <text id="calligraphy-f05-es.svgtext4990" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">angle = 90</tspan></text>
+ <text id="calligraphy-f05-es.svgtext4993" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">angle = 0</tspan></text>
+ <text id="calligraphy-f05-es.svgtext4996" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">angle = 15</tspan></text>
+ <text id="calligraphy-f05-es.svgtext4999" xml:space="preserve" transform="translate(10 1965.2)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-es.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">angle = -45</tspan></text>
+ <path id="calligraphy-f05-es.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1965.2)" display="block"/>
+ <path id="calligraphy-f05-es.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1965.2)" display="block"/>
+ <path id="calligraphy-f05-es.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1965.2)" display="block"/>
+ <path id="calligraphy-f05-es.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1965.2)" display="block"/>
+ <path id="calligraphy-f05-es.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1965.2)" display="block"/>
+ <path id="calligraphy-f05-es.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1965.2)" display="block"/>
+ <rect id="d0e215" display="none" height="1e3px" width="288" y="2121.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e215"/>
</flowRegion>
<flowDiv xml:space="preserve">Como podemos observar, el trazo es más delgado cuando es dibujado paralelo a su ángulo y es más amplio cuando se dibuja perpendicular a este. ángulos posítivos son más naturales y tradicionales para caligrafía con dibujo hecho con mano derecha .</flowDiv>
</flowRoot>
- <rect id="d0e218" display="none" height="1e3px" width="288" y="2171.3" x="10"/>
+ <rect id="d0e218" display="none" height="1e3px" width="288" y="2171.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e218"/>
@@ -511,10 +511,10 @@ perpendicular to the stroke, and Angle has no effect anymore:
</flowRegion>
<flowDiv xml:space="preserve">Hablando tipográficamente, la fijación máxima y por consiguiente el contraste del ancho máximo del trazo son las características (más adelante) de las fuentes antique serif, como las Times o Bodoni (por que estas fuentes son históricamente una imitación de la caligrafí de la pluma-arreglada). La fijación Cero y el ancho de contraste Cero (Arriba a la derecha), sobre la otra mano, sugiere la fuente actual Sans Serif, así como la Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2485.9736684000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2485.9736684000004" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2485.9145364" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2485.9145364" x="10">Tremor</tspan>
</text>
- <rect id="d0e243" display="none" height="1e3px" width="288" y="2491.2" x="10"/>
+ <rect id="d0e243" display="none" height="1e3px" width="288" y="2491.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e243"/>
@@ -525,7 +525,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-es.svgg3123" font-size="6px" transform="translate(10 2589.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-es.svgg3123" font-size="6px" transform="translate(10 2589.5)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-es.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-es.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">slow</tspan></text>
<text id="calligraphy-f07-es.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-es.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">medium</tspan></text>
<text id="calligraphy-f07-es.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-es.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">fast</tspan></text>
@@ -539,50 +539,50 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-es.svguse3153" xlink:href="#calligraphy-f07-es.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-es.svguse3151" xlink:href="#calligraphy-f07-es.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-es.svguse3149" xlink:href="#calligraphy-f07-es.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-es.svgtext3177" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
- <text id="calligraphy-f07-es.svgtext3111" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
- <text id="calligraphy-f07-es.svgtext1990" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
- <text id="calligraphy-f07-es.svgtext2991" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
- <text id="calligraphy-f07-es.svgtext2995" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
- <text id="calligraphy-f07-es.svgtext1993" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
- <text id="calligraphy-f07-es.svgtext1996" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
- <text id="calligraphy-f07-es.svgtext2999" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
- <text id="calligraphy-f07-es.svgtext3003" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
- <text id="calligraphy-f07-es.svgtext3007" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
- <text id="calligraphy-f07-es.svgtext1999" xml:space="preserve" transform="translate(10 2559.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
- <path id="calligraphy-f07-es.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2559.6)"/>
- <path id="calligraphy-f07-es.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2559.6)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2837.0188684000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2837.0188684000004" x="10">Wiggle &amp; Mass</tspan>
+ <text id="calligraphy-f07-es.svgtext3177" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
+ <text id="calligraphy-f07-es.svgtext3111" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
+ <text id="calligraphy-f07-es.svgtext1990" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
+ <text id="calligraphy-f07-es.svgtext2991" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
+ <text id="calligraphy-f07-es.svgtext2995" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
+ <text id="calligraphy-f07-es.svgtext1993" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
+ <text id="calligraphy-f07-es.svgtext1996" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
+ <text id="calligraphy-f07-es.svgtext2999" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
+ <text id="calligraphy-f07-es.svgtext3003" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
+ <text id="calligraphy-f07-es.svgtext3007" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
+ <text id="calligraphy-f07-es.svgtext1999" xml:space="preserve" transform="translate(10 2559.5)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-es.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
+ <path id="calligraphy-f07-es.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2559.5)"/>
+ <path id="calligraphy-f07-es.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2559.5)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2836.9597364" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2836.9597364" x="10">Wiggle &amp; Mass</tspan>
</text>
<rect id="d0e265" display="none" height="1e3px" width="288" y="2842.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -614,17 +614,17 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3036.3590284" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3036.3590284" x="10">Ejemplos de caligrafía</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3036.2998964" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3036.2998964" x="10">Ejemplos de caligrafía</tspan>
</text>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="3041.6" x="10"/>
+ <rect id="d0e286" display="none" height="1e3px" width="288" y="3041.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e286"/>
</flowRegion>
<flowDiv xml:space="preserve">Ahora que ya posee las capacidades básicas de la herramienta, puede intentar producir algunas caligrafís reales. Si es usted nuevo en este arte, adquiera un buen libro de caligrafía y estudielo junto con el Inkscape. Esta sección le mostrará unos pocos ejemplos.</flowDiv>
</flowRoot>
- <rect id="d0e289" display="none" height="1e3px" width="288" y="3091.7" x="10"/>
+ <rect id="d0e289" display="none" height="1e3px" width="288" y="3091.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e289"/>
@@ -646,7 +646,7 @@ get slower and smoother pen.
</flowRegion>
<flowDiv xml:space="preserve">Entonces haga zoom de tal manera que la longitud entre las reglas corresponda al rango natural de su escritura, ajuste el ancho y el ángulo, y ¡aquí vamos!</flowDiv>
</flowRoot>
- <rect id="d0e305" display="none" height="1e3px" width="288" y="3261.2" x="10"/>
+ <rect id="d0e305" display="none" height="1e3px" width="288" y="3261.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e305"/>
@@ -656,184 +656,184 @@ elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-es.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3317.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-es.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3317.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-es.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3317.3)" display="block"/>
- <path id="calligraphy-f09-es.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3317.3)" display="block"/>
- <rect id="d0e318" display="none" height="1e3px" width="288" y="3360.3" x="10"/>
+ <path id="calligraphy-f09-es.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3317.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-es.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3317.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-es.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3317.2)" display="block"/>
+ <path id="calligraphy-f09-es.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3317.2)" display="block"/>
+ <rect id="d0e318" display="none" height="1e3px" width="288" y="3360.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e318"/>
</flowRegion>
<flowDiv xml:space="preserve">Algunos trucos interesantes:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3384.2)"/>
- <rect id="d0e324" display="none" height="1e3px" width="258" y="3378.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3384.1)"/>
+ <rect id="d0e324" display="none" height="1e3px" width="258" y="3378.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e324"/>
</flowRegion>
<flowDiv xml:space="preserve">Si siente comodidad sobre la tabla, no la mueva. En vez de eso, acomode la pizarra (<flowSpan font-weight="bold">Ctrl+tecla de flecha</flowSpan>) con su mano izquierda después de finalizar cada letra.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3423.2)"/>
- <rect id="d0e331" display="none" height="1e3px" width="258" y="3417.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3423.1)"/>
+ <rect id="d0e331" display="none" height="1e3px" width="258" y="3417.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e331"/>
</flowRegion>
<flowDiv xml:space="preserve">Si su último contorno no está bien, tan sólo deshágalo (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Sin embargo, si una forma es buena pero la posición o el tamaóo no son correctos, es mejor utilizar temporalmente el Selector (<flowSpan font-weight="bold">Barra Espaceadora</flowSpan>) y perfile/escale/rote de ser necesario (usando el ratón o las teclas), luego presione <flowSpan font-weight="bold">Barra Espaceadora</flowSpan> de nuevo para retornar a la herramienta Caligrafía.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3505.3)"/>
- <rect id="d0e344" display="none" height="1e3px" width="258" y="3499.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3505.1)"/>
+ <rect id="d0e344" display="none" height="1e3px" width="258" y="3499.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e344"/>
</flowRegion>
<flowDiv xml:space="preserve">Habiendo realizado una palabra, cambie al selector de nuevo para ajustar las barras y espaceado entre letras uniformemente. No exagere con esto, sin embargo; la buena caligrafía debe conservar un éstilo similar. Resista la tentación de copiar letras y sus elementos; cada contorno debe ser original.</flowDiv>
</flowRoot>
- <rect id="d0e348" display="none" height="1e3px" width="288" y="3570.3" x="10"/>
+ <rect id="d0e348" display="none" height="1e3px" width="288" y="3570.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e348"/>
</flowRegion>
<flowDiv xml:space="preserve">Y aquí podemos observar alguno ejemplos completos:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-es.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-es.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.5)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial hand</tspan></text>
- <text id="calligraphy-f10-es.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.5)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
- <text id="calligraphy-f10-es.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.5)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
- <text id="calligraphy-f10-es.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.5)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
- <path id="calligraphy-f10-es.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-es.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3596.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-es.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.5)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
- <path id="calligraphy-f10-es.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3596.5)" display="block"/>
- <path id="calligraphy-f10-es.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3596.5)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4174.9059734" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4174.9059734" x="10">Conclusión</tspan>
+ <path id="calligraphy-f10-es.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-es.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.4)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial hand</tspan></text>
+ <text id="calligraphy-f10-es.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.4)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
+ <text id="calligraphy-f10-es.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.4)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
+ <text id="calligraphy-f10-es.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.4)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
+ <path id="calligraphy-f10-es.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-es.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3596.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-es.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3596.4)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-es.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
+ <path id="calligraphy-f10-es.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3596.4)" display="block"/>
+ <path id="calligraphy-f10-es.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3596.4)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4174.748278399999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4174.748278399999" x="10">Conclusión</tspan>
</text>
- <rect id="d0e367" display="none" height="1e3px" width="288" y="4180.1" x="10"/>
+ <rect id="d0e367" display="none" height="1e3px" width="288" y="4179.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e367"/>
</flowRegion>
<flowDiv xml:space="preserve">La caligrafía no es sólo divertida; es además un arte espiritual que puede transformar su visión sobre todo lo que hace y puede ver. La herramienta de caligrafía de Inkscape puede servirle como una modesta introducción para este arte. Y aún es muy divertido jugar jugar con ella y puede ser muy útil en el diseño real. ¡Disfrutela!</flowDiv>
</flowRoot>
- <g transform="translate(0 4240.8)">
+ <g transform="translate(0 4240.7)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.eu.svg b/share/tutorials/tutorial-calligraphy.eu.svg
index ceefe54c2..a90c61745 100644
--- a/share/tutorials/tutorial-calligraphy.eu.svg
+++ b/share/tutorials/tutorial-calligraphy.eu.svg
@@ -142,15 +142,7 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e95"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Tablet bat izanik sentikortasun gaitasunak erabili nahi izanez gero, dispositiboa konfiguratu beharko duzu. Konfigurazio hau behin bakarrik burutu behar da, eta ezarpenak gordetzen dira. Tableta konektatuta izan behar duzu Inkscape abiatu baino lehen, ondoren <flowSpan font-style="italic">Fitxategia</flowSpan> menuan dagoen <flowSpan font-style="italic">Sarrerako gailuak...</flowSpan> dialogoa irekiz. Dialogo honen bidez zure tablet-lumaren gustuko dispositiboa eta ezarpenak zehaz ditzakezu. Azkenik, ezarpen hauek zehaztu ondoren, ireki Kaligrafia tresna eta tresna barran presio eta okerdurarentzako botoiak gaitu. Hemendik aurrera Inkscape-k hobespen hauek gogoratuko ditu abiaraztean.</flowDiv>
</flowRoot>
<rect id="d0e104" display="none" height="1e3px" width="288" y="703.55" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -191,8 +183,8 @@ drawing tablets).
</flowRegion>
<flowDiv xml:space="preserve">Lumaren zabalera askotan aldatzen denez, balioa aldatzeko tresna-barrara joan ordez <flowSpan font-weight="bold">ezker</flowSpan> eta <flowSpan font-weight="bold">eskubi</flowSpan> geziak erabil ditzakezu edo presio sentikortasuna duen tablet batekin. Tekla hauen gauzarik hoberena marrazten zauden bitartean erabil daitezkeela da, trazu baten erdian lumaren zabalera gradualki alda dezakezularik:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-eu.svgtext1944" xml:space="preserve" transform="translate(10 1031.2)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-eu.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
- <path id="calligraphy-f01-eu.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1031.2)" display="block"/>
+ <text id="calligraphy-f01-eu.svgtext1944" xml:space="preserve" transform="translate(10 1031.1)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-eu.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
+ <path id="calligraphy-f01-eu.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1031.1)" display="block"/>
<rect id="d0e156" display="none" height="1e3px" width="288" y="1120.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -225,7 +217,7 @@ drawing tablets).
<path id="calligraphy-f02-eu.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1209.8)" display="block"/>
<path id="calligraphy-f02-eu.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1209.8)" display="block"/>
<path id="calligraphy-f02-eu.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1209.8)" display="block"/>
- <rect id="d0e172" display="none" height="1e3px" width="288" y="1408" x="10"/>
+ <rect id="d0e172" display="none" height="1e3px" width="288" y="1407.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e172"/>
@@ -240,8 +232,8 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f03-eu.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1455)" display="block"/>
<path id="calligraphy-f03-eu.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1455)" display="block"/>
<path id="calligraphy-f03-eu.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1455)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1608.1369164" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1608.1369164" x="10">Angelua eta Orientazioa</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1608.1172054" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1608.1172054" x="10">Angelua eta Orientazioa</tspan>
</text>
<rect id="d0e191" display="none" height="1e3px" width="288" y="1613.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -302,7 +294,7 @@ different angles (fixation = 100):
<path id="calligraphy-f05-eu.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1955.9)" display="block"/>
<path id="calligraphy-f05-eu.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1955.9)" display="block"/>
<path id="calligraphy-f05-eu.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1955.9)" display="block"/>
- <rect id="d0e226" display="none" height="1e3px" width="288" y="2111.8" x="10"/>
+ <rect id="d0e226" display="none" height="1e3px" width="288" y="2111.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e226"/>
@@ -326,19 +318,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-eu.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2230)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
- <text id="calligraphy-f06-eu.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2230)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
- <text id="calligraphy-f06-eu.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2230)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">orientazioa = 0</tspan></text>
- <path id="calligraphy-f06-eu.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2230)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-eu.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2230)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-eu.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2230)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-eu.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-eu.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-eu.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-eu.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-eu.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-eu.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2230) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-eu.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-eu.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2229.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
+ <text id="calligraphy-f06-eu.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2229.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
+ <text id="calligraphy-f06-eu.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2229.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-eu.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">angelua = 30</tspan><tspan id="calligraphy-f06-eu.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">orientazioa = 0</tspan></text>
+ <path id="calligraphy-f06-eu.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2229.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-eu.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2229.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-eu.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2229.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-eu.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-eu.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-eu.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-eu.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-eu.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-eu.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-eu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2229.9) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-eu.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-eu.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +339,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-eu.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-eu.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +348,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-eu.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-eu.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +357,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-eu.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-eu.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +366,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-eu.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-eu.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-eu.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +375,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-eu.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-eu.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +384,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-eu.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-eu.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +393,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-eu.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-eu.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +402,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-eu.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-eu.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +411,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-eu.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-eu.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +420,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-eu.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-eu.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +429,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-eu.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-eu.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +438,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-eu.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-eu.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +447,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-eu.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-eu.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,7 +456,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-eu.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-eu.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -473,7 +465,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-eu.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-eu.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -482,7 +474,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-eu.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2230) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-eu.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2229.9) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-eu.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-eu.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -491,17 +483,17 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-eu.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-eu.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e245" display="none" height="1e3px" width="288" y="2371.5" x="10"/>
+ <rect id="d0e245" display="none" height="1e3px" width="288" y="2371.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e245"/>
</flowRegion>
<flowDiv xml:space="preserve">Tipografiaren ikuspegitik, orientazio maximoa eta beraz trazuaren zabalera kontrasterik handiena (goian ezkerrean) aintzinako serif letra-moldeen ezaugarria da, Times edo Bodoni adibidez (letra-molde hauek historikoki luma finkoko kaligrafiaren kopia bat zirelako). Zero orientazioa eta zabalera kontrasterik gabe (goian eskuinean), bestalde, Helvetica bezalako san serif letra-molde modernoak gogorarazten ditu.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2465.9971764" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2465.9971764" x="10">Dardara</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2465.9380444" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2465.9380444" x="10">Dardara</tspan>
</text>
- <rect id="d0e254" display="none" height="1e3px" width="288" y="2471.2" x="10"/>
+ <rect id="d0e254" display="none" height="1e3px" width="288" y="2471.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e254"/>
@@ -568,8 +560,8 @@ splotches. This significantly expands the creative range of the tool.
<path id="calligraphy-f07-eu.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2539.6)"/>
<path id="calligraphy-f07-eu.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2539.6)"/>
<path id="calligraphy-f07-eu.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2539.6)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2817.1478464" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2817.1478464" x="10">Wiggle &amp; Mass</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2817.0887144" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2817.0887144" x="10">Wiggle &amp; Mass</tspan>
</text>
<rect id="d0e276" display="none" height="1e3px" width="288" y="2822.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -589,7 +581,7 @@ if the mass is big, the pen tends to run away on sharp turns; if the mass is zer
wiggle makes the pen to wiggle wildly.
</flowDiv>
</flowRoot>
- <rect id="d0e285" display="none" height="1e3px" width="288" y="2921.9" x="10"/>
+ <rect id="d0e285" display="none" height="1e3px" width="288" y="2921.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e285"/>
@@ -601,8 +593,8 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3005.6409764" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3005.6409764" x="10">Kaligrafia adibideak</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3005.5818443999997" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3005.5818443999997" x="10">Kaligrafia adibideak</tspan>
</text>
<rect id="d0e297" display="none" height="1e3px" width="288" y="3010.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -611,22 +603,22 @@ get slower and smoother pen.
</flowRegion>
<flowDiv xml:space="preserve">Jadanik tresnaren oinarrizko ezaugarriak ezagutzen dituzunez, benetako kaligrafia sortzeko momentua heldu da. Arte honetan berria bazara, kaligrafiari buruzko liburu on bat bilatu eta ikasi Inkscape-rekin. Atal honek adibide xume batzuk bakarrik erakusten ditu.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3059" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3058.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
</flowRegion>
<flowDiv xml:space="preserve">Lehengo eta behin, hizkiak egiteko, gida pare bat sortu beharko dituzu. Estilo oker edo etzanean idaztera bazoaz, okertutako gida batzuk gehitu aurreko bi gidei, adibidez:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-eu.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-eu.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3106.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="3178.7" x="10"/>
+ <path id="calligraphy-f08-eu.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-eu.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3106)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3178.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
@@ -660,7 +652,7 @@ stems. Here are some letter elements for the Uncial hand:
<path id="calligraphy-f09-eu.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3273.9)" display="block"/>
<path id="calligraphy-f09-eu.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3273.9)" display="block"/>
<path id="calligraphy-f09-eu.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3273.9)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3317" x="10"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3316.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
@@ -683,144 +675,144 @@ stems. Here are some letter elements for the Uncial hand:
</flowRegion>
<flowDiv xml:space="preserve">Zure azken trazua txarra baldin bada, desegin ezazu (<flowSpan font-weight="bold">Ktrl+Z</flowSpan>). Hala ere, forma egokia bada baina posizioa edo tamaina apur bat tokiz kanpo badaude, hobe da momentu batean Hautatzaile tresna erabiltzea (<flowSpan font-weight="bold">Zuriunea</flowSpan>) eta behar beste mugitze/eskalatzea/biratzea (sagua edo teklatua erabiliz). Bukatzean <flowSpan font-weight="bold">Zuriunea</flowSpan> sakatu berriro Kaligrafia tresnara itzultzeko.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3450.6)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3444.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3450.4)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3444.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Hitz bat bukatzean, Hautatzaile tresnara joan berriro eta enborren berdintasuna eta hizkien arteko tartea findu. Ez gehiegi landu, hala ere; kaligrafia onek eskuzko idazkeraren irregulartasun apur bat mantentzen dute. Sahiestu hizkiak eta hizkien elementuak kopiatzeko tentazioa; trazu bakoitza originala izan behar du.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3515.6" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3515.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Eta hemen dituzu hizki oso batzuen adibideak:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-eu.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-eu.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.8)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial estiloa</tspan></text>
- <text id="calligraphy-f10-eu.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.8)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Estilo Karolingioa</tspan></text>
- <text id="calligraphy-f10-eu.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.8)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Estilo gotikoa</tspan></text>
- <text id="calligraphy-f10-eu.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.8)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde estiloa</tspan></text>
- <path id="calligraphy-f10-eu.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-eu.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3539.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-eu.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.8)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Italiar estilo loratua</tspan></text>
- <path id="calligraphy-f10-eu.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3539.8)" display="block"/>
- <path id="calligraphy-f10-eu.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3539.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4118.1811784" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4118.1811784" x="10">Ondorioak</tspan>
+ <path id="calligraphy-f10-eu.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-eu.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.7)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial estiloa</tspan></text>
+ <text id="calligraphy-f10-eu.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.7)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Estilo Karolingioa</tspan></text>
+ <text id="calligraphy-f10-eu.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.7)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Estilo gotikoa</tspan></text>
+ <text id="calligraphy-f10-eu.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.7)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde estiloa</tspan></text>
+ <path id="calligraphy-f10-eu.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-eu.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3539.7)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-eu.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3539.7)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-eu.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Italiar estilo loratua</tspan></text>
+ <path id="calligraphy-f10-eu.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3539.7)" display="block"/>
+ <path id="calligraphy-f10-eu.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3539.7)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4118.043194399999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4118.043194399999" x="10">Ondorioak</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4123.4" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4123.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafia ez da jostagarria bakarrik, espiritualtasun handiko arte bat da, ikusi eta egiten duzun guztiaren ikuspegia alda dezake. Inkscape-ren kaligrafia tresna sarrera xume bat baino ez da. Hala ere jolasteko aproposa da eta benetako diseinuetan erabilgarria izan daiteke. Gozatu!</flowDiv>
</flowRoot>
- <g transform="translate(0 4182.1)">
+ <g transform="translate(0 4182)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.fa.svg b/share/tutorials/tutorial-calligraphy.fa.svg
index a3f9a4acd..1a3f47c59 100644
--- a/share/tutorials/tutorial-calligraphy.fa.svg
+++ b/share/tutorials/tutorial-calligraphy.fa.svg
@@ -181,7 +181,7 @@ quill or pen with nib are also not very sensitive to pressure, unlike a brush.
<flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
to configure your device. This configuration will only need to be performed once and
the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
+prior to starting Inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
@@ -294,14 +294,14 @@ angle=90:
jerky movements to get strangely naturalistic, neuron-like shapes:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-fa.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-fa.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-fa.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-fa.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-fa.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-fa.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1439)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1592.1238716999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1592.1238716999999" x="10">Angle &amp; Fixation</tspan>
+ <path id="calligraphy-f03-fa.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-fa.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-fa.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-fa.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-fa.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-fa.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1438.9)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1592.1041607" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1592.1041607" x="10">Angle &amp; Fixation</tspan>
</text>
<rect id="d0e192" display="none" height="1e3px" width="288" y="1597.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -341,7 +341,7 @@ the angle is determined by the tilt of the pen.
<path id="calligraphy-f04-fa.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
<path id="calligraphy-f04-fa.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1665.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1818.3" x="10"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1818.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
@@ -377,7 +377,7 @@ and at its broadest when drawn perpendicular. Positive angles are the most
natural and traditional for right-handed calligraphy.
</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2124.3" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2124.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -571,10 +571,10 @@ fixation and zero width contrast (above right), on the other hand, suggest moder
serif typefaces such as Helvetica.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2428.7041357" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2428.7041357" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2428.6450037" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2428.6450037" x="10">Tremor</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2433.9" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2433.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -641,8 +641,8 @@ splotches. This significantly expands the creative range of the tool.
<path id="calligraphy-f07-fa.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2502.3)"/>
<path id="calligraphy-f07-fa.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2502.3)"/>
<path id="calligraphy-f07-fa.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2502.3)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2779.7493357" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2779.7493357" x="10">Wiggle &amp; Mass</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2779.6902037" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2779.6902037" x="10">Wiggle &amp; Mass</tspan>
</text>
<rect id="d0e277" display="none" height="1e3px" width="288" y="2784.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -654,7 +654,7 @@ than affect its visual output. So there won&apos;t be any illustrations in this
instead just try them yourself to get a better idea.
</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2833.1" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2833" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
@@ -677,10 +677,10 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2966.5784027" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2966.5784027" x="10">Calligraphy examples</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2966.5192707" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2966.5192707" x="10">Calligraphy examples</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="2971.8" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="2971.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
@@ -690,7 +690,7 @@ calligraphy. If you are new to this art, get yourself a good calligraphy book an
it with Inkscape. This section will show you just a few simple examples.
</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3021.6" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="3021.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
@@ -700,15 +700,15 @@ going to write in a slanted or cursive hand, add some slanted guides across the
rulers as well, for example:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-fa.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fa.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3141.3" x="10"/>
+ <path id="calligraphy-f08-fa.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fa.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="3141.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
@@ -744,7 +744,7 @@ stems. Here are some letter elements for the Uncial hand:
<path id="calligraphy-f09-fa.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3236.5)" display="block"/>
<path id="calligraphy-f09-fa.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3236.5)" display="block"/>
<path id="calligraphy-f09-fa.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3236.5)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3279.6" x="10"/>
+ <rect id="d0e330" display="none" height="1e3px" width="288" y="3279.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e330"/>
@@ -752,8 +752,8 @@ stems. Here are some letter elements for the Uncial hand:
<flowDiv xml:space="preserve">Several useful tips:
</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3303.3)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3297.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3303.2)"/>
+ <rect id="d0e336" display="none" height="1e3px" width="258" y="3297.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e336"/>
@@ -762,8 +762,8 @@ stems. Here are some letter elements for the Uncial hand:
scroll the canvas (<flowSpan font-weight="bold">Ctrl+arrow</flowSpan> keys) with your left hand after finishing
each letter. </flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3342.5)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3336.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3342.4)"/>
+ <rect id="d0e343" display="none" height="1e3px" width="258" y="3336.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e343"/>
@@ -775,8 +775,8 @@ nudge/scale/rotate it as needed (using mouse or keys), then press <flowSpan font
again to return to Calligraphy tool.
</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3402.9)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3396.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3402.8)"/>
+ <rect id="d0e356" display="none" height="1e3px" width="258" y="3396.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
@@ -787,7 +787,7 @@ irregular handwritten look. Resist the temptation to copy over letters and lett
elements; each stroke must be original.
</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3457.3" x="10"/>
+ <rect id="d0e360" display="none" height="1e3px" width="288" y="3457.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e360"/>
@@ -795,122 +795,122 @@ elements; each stroke must be original.
<flowDiv xml:space="preserve">And here are some complete lettering examples:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-fa.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-fa.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial hand</tspan></text>
- <text id="calligraphy-f10-fa.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
- <text id="calligraphy-f10-fa.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
- <text id="calligraphy-f10-fa.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
- <path id="calligraphy-f10-fa.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fa.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-fa.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
- <path id="calligraphy-f10-fa.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-fa.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3483.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4061.5649849999995" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4061.5649849999995" x="10">Conclusion</tspan>
+ <path id="calligraphy-f10-fa.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-fa.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial hand</tspan></text>
+ <text id="calligraphy-f10-fa.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
+ <text id="calligraphy-f10-fa.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
+ <text id="calligraphy-f10-fa.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
+ <path id="calligraphy-f10-fa.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fa.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-fa.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fa.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
+ <path id="calligraphy-f10-fa.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-fa.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3483.1)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4061.4467149999996" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4061.4467149999996" x="10">Conclusion</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4066.8" x="10"/>
+ <rect id="d0e379" display="none" height="1e3px" width="288" y="4066.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e379"/>
@@ -921,7 +921,7 @@ calligraphy tool can only serve as a modest introduction. And yet
it is very nice to play with and may be useful in real design. Enjoy!
</flowDiv>
</flowRoot>
- <g transform="translate(0 4116.5)">
+ <g transform="translate(0 4116.4)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter55" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.fr.svg b/share/tutorials/tutorial-calligraphy.fr.svg
index 645ab175c..ff8da63c9 100644
--- a/share/tutorials/tutorial-calligraphy.fr.svg
+++ b/share/tutorials/tutorial-calligraphy.fr.svg
@@ -161,8 +161,8 @@
</flowRegion>
<flowDiv xml:space="preserve">Passez à l&apos;outil Calligraphie en appuyant sur <flowSpan font-weight="bold">Ctrl+F6</flowSpan> ou sur <flowSpan font-weight="bold">C</flowSpan>, ou encore en cliquant sur son bouton dans la barre d&apos;outils. Vous remarquerez alors, dans la barre d&apos;outils du haut, huit options : largeur &amp; amincissement ; angle &amp; fixité ; terminaisons ; tremblement, agitation &amp; inertie. Il y a également deux autres boutons pour activer ou désactiver la pression de la tablette et la sensibilité à l&apos;inclinaison (pour les tablettes graphiques).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="934.4696124" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="934.4696124" x="10">Largeur et amincissement</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="934.4696134" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="934.4696134" x="10">Largeur et amincissement</tspan>
</text>
<rect id="d0e132" display="none" height="1e3px" width="288" y="939.67" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -178,9 +178,9 @@
</flowRegion>
<flowDiv xml:space="preserve">Comme la largeur de plume varie souvent, vous pouvez l&apos;ajuster sans avoir à retourner à la barre d&apos;outils, en utilisant les touches fléchées <flowSpan font-weight="bold">gauche</flowSpan> et <flowSpan font-weight="bold">droite</flowSpan> ou avec une tablette qui supporte la sensibilité à la pression. L&apos;avantage de ces raccourcis est qu&apos;ils fonctionnent même pendant que vous dessinez, de sorte que vous pouvez faire varier la largeur de votre plume progressivement pendant un tracé :</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-fr.svgtext1944" xml:space="preserve" transform="translate(10 1153.9)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-fr.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">largeur=1, augmentant… atteignant 47, diminuant… de nouveau à 0</tspan></text>
- <path id="calligraphy-f01-fr.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1153.9)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1243.1" x="10"/>
+ <text id="calligraphy-f01-fr.svgtext1944" xml:space="preserve" transform="translate(10 1153.8)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-fr.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">largeur=1, augmentant… atteignant 47, diminuant… de nouveau à 0</tspan></text>
+ <path id="calligraphy-f01-fr.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1153.8)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1243" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
@@ -212,7 +212,7 @@
<path id="calligraphy-f02-fr.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1343.7)" display="block"/>
<path id="calligraphy-f02-fr.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1343.7)" display="block"/>
<path id="calligraphy-f02-fr.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1343.7)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1541.9" x="10"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1541.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
@@ -225,10 +225,10 @@
<path id="calligraphy-f03-fr.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1598.3)" display="block"/>
<path id="calligraphy-f03-fr.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1598.3)" display="block"/>
<path id="calligraphy-f03-fr.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1598.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1751.4543624" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1751.4543624" x="10">Angle et fixité</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1751.4149394" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1751.4149394" x="10">Angle et fixité</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1756.7" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1756.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-fr.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-fr.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixité = 100</tspan></text>
- <text id="calligraphy-f06-fr.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixité = 80</tspan></text>
- <text id="calligraphy-f06-fr.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixité = 0</tspan></text>
- <path id="calligraphy-f06-fr.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2372.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-fr.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2372.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-fr.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2372.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-fr.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-fr.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-fr.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-fr.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-fr.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-fr.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.3) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-fr.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-fr.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixité = 100</tspan></text>
+ <text id="calligraphy-f06-fr.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixité = 80</tspan></text>
+ <text id="calligraphy-f06-fr.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2372.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-fr.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">angle = 30°</tspan><tspan id="calligraphy-f06-fr.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixité = 0</tspan></text>
+ <path id="calligraphy-f06-fr.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2372.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-fr.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2372.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-fr.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2372.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-fr.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-fr.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-fr.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-fr.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-fr.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-fr.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-fr.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2372.2) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-fr.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-fr.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-fr.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-fr.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-fr.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-fr.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-fr.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-fr.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-fr.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-fr.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-fr.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-fr.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-fr.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-fr.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-fr.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-fr.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-fr.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-fr.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-fr.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-fr.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-fr.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-fr.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-fr.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-fr.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-fr.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-fr.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-fr.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-fr.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-fr.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-fr.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-fr.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-fr.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-fr.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-fr.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-fr.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-fr.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-fr.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-fr.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-fr.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-fr.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-fr.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-fr.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-fr.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-fr.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-fr.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-fr.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-fr.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-fr.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-fr.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-fr.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.3) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-fr.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2372.2) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-fr.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-fr.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,15 +464,15 @@
<path id="calligraphy-f06-fr.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-fr.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2513.8" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2513.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Typographiquement parlant, une fixité maximale et donc un contraste maximal de largeur de tracé (ci-dessus à gauche) sont les caractéristiques des antiques fontes serif, comme Times ou Bodoni (parce que ces fontes étaient historiquement une imitation d&apos;une calligraphie effectuée avec une plume orientée de façon fixe). D&apos;un autre côté, une fixité nulle et donc un contraste de largeur nulle (ci-dessus à droite) font plutôt penser à une fonte sans serif moderne, comme Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2617.5481944000007" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2617.5481944000007" x="10">Tremblement</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2617.4890644000006" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2617.4890644000006" x="10">Tremblement</tspan>
</text>
<rect id="d0e255" display="none" height="1e3px" width="288" y="2622.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -481,7 +481,7 @@
</flowRegion>
<flowDiv xml:space="preserve">Le <flowSpan font-style="italic">tremblement</flowSpan> est conçu pour donner une apparence plus naturelle aux tracés calligraphiques. Le tremblement est ajustable dans la barre de contrôle, avec des valeurs comprises entre 0 et 100. Ceci influencera vos tracés, produisant différents effets pouvant aller des légères inégalités aux bavures et tâches. Cela augmente significativement les possibilités de l&apos;outil.</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-fr.svgg3123" font-size="6px" transform="translate(10 2731.8)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-fr.svgg3123" font-size="6px" transform="translate(10 2731.7)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-fr.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-fr.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">lent</tspan></text>
<text id="calligraphy-f07-fr.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-fr.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">moyen</tspan></text>
<text id="calligraphy-f07-fr.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-fr.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">rapide</tspan></text>
@@ -495,50 +495,50 @@
<use id="calligraphy-f07-fr.svguse3153" xlink:href="#calligraphy-f07-fr.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-fr.svguse3151" xlink:href="#calligraphy-f07-fr.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-fr.svguse3149" xlink:href="#calligraphy-f07-fr.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-fr.svgtext3177" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremblement = 0</tspan></text>
- <text id="calligraphy-f07-fr.svgtext3111" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremblement = 10</tspan></text>
- <text id="calligraphy-f07-fr.svgtext1990" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremblement = 30</tspan></text>
- <text id="calligraphy-f07-fr.svgtext2991" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremblement = 50</tspan></text>
- <text id="calligraphy-f07-fr.svgtext2995" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremblement = 70</tspan></text>
- <text id="calligraphy-f07-fr.svgtext1993" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremblement = 90</tspan></text>
- <text id="calligraphy-f07-fr.svgtext1996" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremblement = 20</tspan></text>
- <text id="calligraphy-f07-fr.svgtext2999" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremblement = 40</tspan></text>
- <text id="calligraphy-f07-fr.svgtext3003" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremblement = 60</tspan></text>
- <text id="calligraphy-f07-fr.svgtext3007" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremblement = 80</tspan></text>
- <text id="calligraphy-f07-fr.svgtext1999" xml:space="preserve" transform="translate(10 2701.8)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremblement = 100</tspan></text>
- <path id="calligraphy-f07-fr.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2701.8)"/>
- <path id="calligraphy-f07-fr.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2701.8)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2979.3388644000006" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2979.3388644000006" x="10">Agitation et inertie</tspan>
+ <text id="calligraphy-f07-fr.svgtext3177" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremblement = 0</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext3111" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremblement = 10</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext1990" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremblement = 30</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext2991" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremblement = 50</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext2995" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremblement = 70</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext1993" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremblement = 90</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext1996" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremblement = 20</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext2999" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremblement = 40</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext3003" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremblement = 60</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext3007" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremblement = 80</tspan></text>
+ <text id="calligraphy-f07-fr.svgtext1999" xml:space="preserve" transform="translate(10 2701.7)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-fr.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremblement = 100</tspan></text>
+ <path id="calligraphy-f07-fr.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2701.7)"/>
+ <path id="calligraphy-f07-fr.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2701.7)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2979.2797344000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2979.2797344000005" x="10">Agitation et inertie</tspan>
</text>
<rect id="d0e277" display="none" height="1e3px" width="288" y="2984.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -547,46 +547,46 @@
</flowRegion>
<flowDiv xml:space="preserve">Contrairement à la largeur et à l&apos;angle, ces deux derniers paramètres définissent la « sensation » laissée par l&apos;outil plutôt qu&apos;affecter son rendu visuel. Il n&apos;y aura donc pas d&apos;illustration dans cette section ; à la place, effectuez simplement des tests par vous-même pour vous faire une idée du fonctionnement.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="3043.6" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="3043.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve">L&apos;<flowSpan font-style="italic">agitation</flowSpan> est la résistance du papier au mouvement de la plume. La valeur par défaut est au minimum (0), et augmenter ce paramètre rend le papier glissant : si la masse est forte, la plume a tendance à partir dans des changements de directions brusques ; si la masse est nulle, une agitation forte provoquera des tortillements incontrôlables de la plume.</flowDiv>
</flowRoot>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="3114.9" x="10"/>
+ <rect id="d0e286" display="none" height="1e3px" width="288" y="3114.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e286"/>
</flowRegion>
<flowDiv xml:space="preserve">En physique, la <flowSpan font-style="italic">masse</flowSpan> est ce qui génère l&apos;inertie ; plus la masse de l&apos;outil Calligraphie d&apos;Inkscape est importante, et plus celui-ci traîne derrière votre stylet (ou pointeur de souris) et lisse les changements de direction et mouvements brusques de votre tracé. Par défaut cette valeur est assez faible (2) de façon à ce que l&apos;outil soit rapide et réactif, mais vous pouvez augmenter la masse pour obtenir une plume plus lente et douce.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3209.567773400001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3209.567773400001" x="10">Exemples de calligraphies</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3209.508643400001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3209.508643400001" x="10">Exemples de calligraphies</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="3214.8" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="3214.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
</flowRegion>
<flowDiv xml:space="preserve">Maintenant que vous connaissez les possibilités de base de l&apos;outil, vous pouvez essayer de produire de vraies calligraphies. Si vous êtes débutant dans cette discipline, procurez-vous un bon livre sur la calligraphie et étudiez-le avec Inkscape. Cette section vous montrera juste quelques exemples simples.</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3275.5" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="3275.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
</flowRegion>
<flowDiv xml:space="preserve">Tout d&apos;abord pour tracer des lettres, vous avez besoin d&apos;une paire de règles pour vous guider. Si vous devez avoir une écriture inclinée ou cursive, ajoutez aussi des guides inclinés en travers des deux règles horizontales. Par exemple :</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-fr.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-fr.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3405.8" x="10"/>
+ <path id="calligraphy-f08-fr.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-fr.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3333.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="3405.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
@@ -600,184 +600,184 @@
</flowRegion>
<flowDiv xml:space="preserve">La première chose que vous devriez faire en tant que calligraphe débutant est probablement de vous entraîner à dessiner les éléments de base des lettres — des traits horizontaux et verticaux, des tracés ronds et des traits inclinés. Voici quelques éléments de lettres pour l&apos;écriture onciale :</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-fr.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3512.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-fr.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3512.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-fr.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3512.3)" display="block"/>
- <path id="calligraphy-f09-fr.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3512.3)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3555.3" x="10"/>
+ <path id="calligraphy-f09-fr.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3512.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-fr.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3512.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-fr.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3512.2)" display="block"/>
+ <path id="calligraphy-f09-fr.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3512.2)" display="block"/>
+ <rect id="d0e330" display="none" height="1e3px" width="288" y="3555.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e330"/>
</flowRegion>
<flowDiv xml:space="preserve">Plusieurs astuces utiles :</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3577.5)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3571.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3577.4)"/>
+ <rect id="d0e336" display="none" height="1e3px" width="258" y="3571.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e336"/>
</flowRegion>
<flowDiv xml:space="preserve">Si votre main est confortablement installée sur la tablette, ne la déplacez pas. Faites plutôt défiler le canevas (touches <flowSpan font-weight="bold">Ctrl+flèche</flowSpan>) avec votre main gauche après avoir fini chaque lettre.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3626)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3620" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3625.9)"/>
+ <rect id="d0e343" display="none" height="1e3px" width="258" y="3619.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e343"/>
</flowRegion>
<flowDiv xml:space="preserve">Si votre dernier coup de plume est mauvais, annulez-le (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Cependant, si sa forme est bonne, mais que la position et la taille doivent être légèrement rectifiées, il vaut mieux utiliser le Sélecteur temporairement (<flowSpan font-weight="bold">espace</flowSpan>) et opérer les déplacement/redimensionnement/rotation nécessaires (en utilisant la souris ou le clavier), puis appuyer sur <flowSpan font-weight="bold">espace</flowSpan> de nouveau pour reprendre l&apos;outil Calligraphie.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3707.7)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3701.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3707.6)"/>
+ <rect id="d0e356" display="none" height="1e3px" width="258" y="3701.6" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
</flowRegion>
<flowDiv xml:space="preserve">Quand vous avez fini un mot, passez de nouveau au Sélecteur pour ajuster l&apos;uniformité des traits et l&apos;inter-lettrage. N&apos;en faites pas trop cependant ; une belle calligraphie doit garder le côté légèrement irrégulier d&apos;une écriture manuscrite. Résistez à la tentation de dupliquer des lettres et des morceaux de lettres ; chaque coup de plume doit être original.</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3773.1" x="10"/>
+ <rect id="d0e360" display="none" height="1e3px" width="288" y="3772.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e360"/>
</flowRegion>
<flowDiv xml:space="preserve">Et voici quelques exemples de lettrages complets :</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-fr.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-fr.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3799)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Écriture onciale</tspan></text>
- <text id="calligraphy-f10-fr.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3799)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Écriture carolingienne (minuscule Caroline)</tspan></text>
- <text id="calligraphy-f10-fr.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3799)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Écriture gothique</tspan></text>
- <text id="calligraphy-f10-fr.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3799)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Écriture bâtarde</tspan></text>
- <path id="calligraphy-f10-fr.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-fr.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3799)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-fr.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3799)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Écriture italique florissante</tspan></text>
- <path id="calligraphy-f10-fr.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3799)" display="block"/>
- <path id="calligraphy-f10-fr.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3799)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4378.344282400002" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4378.344282400002" x="10">Conclusion</tspan>
+ <path id="calligraphy-f10-fr.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-fr.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3798.8)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Écriture onciale</tspan></text>
+ <text id="calligraphy-f10-fr.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3798.8)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Écriture carolingienne (minuscule Caroline)</tspan></text>
+ <text id="calligraphy-f10-fr.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3798.8)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Écriture gothique</tspan></text>
+ <text id="calligraphy-f10-fr.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3798.8)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Écriture bâtarde</tspan></text>
+ <path id="calligraphy-f10-fr.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-fr.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3798.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-fr.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3798.8)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-fr.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Écriture italique florissante</tspan></text>
+ <path id="calligraphy-f10-fr.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3798.8)" display="block"/>
+ <path id="calligraphy-f10-fr.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3798.8)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4378.186594400001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4378.186594400001" x="10">Conclusion</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4383.5" x="10"/>
+ <rect id="d0e379" display="none" height="1e3px" width="288" y="4383.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e379"/>
</flowRegion>
<flowDiv xml:space="preserve">La calligraphie n&apos;est pas seulement amusante ; c&apos;est un art profondément spirituel qui peut transformer votre regard sur tout ce que vous faites et voyez. L&apos;outil Calligraphie d&apos;Inkscape ne peut servir que d&apos;introduction modeste. Et pourtant, il est très amusant de jouer avec et il peut servir à des travaux concrets. Faites-vous plaisir !</flowDiv>
</flowRoot>
- <g transform="translate(0 4443.8)">
+ <g transform="translate(0 4443.7)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter57" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.hu.svg b/share/tutorials/tutorial-calligraphy.hu.svg
index 469fe8b86..4470d331c 100644
--- a/share/tutorials/tutorial-calligraphy.hu.svg
+++ b/share/tutorials/tutorial-calligraphy.hu.svg
@@ -142,101 +142,93 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Ha van digitális táblája, és ki szeretné használni ezeket az érzékenységi információk adta lehetőségeket, akkor tehát megfelelően be kell állítania az eszközét. Ezt a beállítást csak egyszer kell elvégezni, a program elmenti a beállításokat. Először, még az Inkscape indítása előtt csatlakoztassa a digitális táblát, majd nyissa meg a <flowSpan font-style="italic">Fájl</flowSpan> menüből a <flowSpan font-style="italic">Beviteli eszközök…</flowSpan> párbeszédablakot. Itt ki tudja választani, és be is állíthatja az eszközét. Végül, miután mindent beállított, váltson a Művészi toll eszközre, és az Eszközvezérlősávon a megfelelő gombokkal kapcsolja be a nyomás- és dőlésérzékelést. Az Inkscape ezután már emlékezni fog a beállításokra.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="724.84" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="725.16" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">A Művészi toll a rajzolás <flowSpan font-style="italic">sebesség</flowSpan>ét is érzékelni tudja (további információ a „Keskenyítés”-nél később), ezért ha egeret használ, akkor ez a paraméter valószínűleg nullára állítva felel majd meg Önnek.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="786.0733688" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="786.0733688" x="10">A Művészi toll beállításai</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="786.3936788000001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="786.3936788000001" x="10">A Művészi toll beállításai</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="791.27" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="791.59" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowDiv xml:space="preserve">Váltson a Művészi toll eszközre a <flowSpan font-weight="bold">Ctrl+F6</flowSpan> vagy a <flowSpan font-weight="bold">C</flowSpan> megnyomásával, esetleg az ikonjára kattintva az Eszköztáron. Az Eszközvezérlősávon 8 beállítást láthat: Szélesség és Keskenyítés; Szög és Rögzítettség; Vonalvég; Remegés; Tekeredés és Tömeg. Szintén itt található az a két gomb, melyekkel a nyomás- és dőlésérzékelés be- és kikapcsolható (digitális táblákhoz).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="875.4491508" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="875.4491508" x="10">Szélesség és Keskenyítés</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="875.7694608" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="875.7694608" x="10">Szélesség és Keskenyítés</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="880.65" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="880.97" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Ez a két beállítás vezérli a tollhegy <flowSpan font-style="italic">szélesség</flowSpan>ét. A szélesség értéke 1 és 100 között lehet, a mértékegysége pedig (alapértelmezetten) a rajzablak méretétől függően változik, de a nagyítástól független. Ez azért van, mert a természetes „mértékegység” a kalligráfiában a kézmozgáshoz igazodik. Ez a módszer biztosítja, hogy a tollhegy szélessége állandó arányban maradjon a „rajztáblával”, szemben egy tényleges mértékegységgel, amely a tollhegyszélességet a nagyítástól tenné függővé. Mindazonáltal ez a viselkedés nem kötelező, így meg is változtatható. Ha valaki a nagyítástól eltekintve abszolút mértékegységet szeretne, ezt az Inkscape-beállítások ablakban (megnyitható dupla kattintással az eszköz gombján) tudathatja a programmal.</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="1015.9" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="1016.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">Mivel a tollhegy szélességét gyakran szokás változtatni, erre az Eszközvezérlősávon kívül más mód is van. Használhatja a <flowSpan font-weight="bold">bal</flowSpan> vagy a <flowSpan font-weight="bold">jobb</flowSpan> kurzormozgató billentyűt, megfelelő digitális táblával pedig a nyomásérzékenységet. Az a legjobb ezekben a billentyűkben, hogy rajzolás közben is működnek, így fokozatosan változtathatja a tollhegy szélességét egy tollvonás közbenső részén is:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-hu.svgtext1944" xml:space="preserve" transform="translate(10 1095.3)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-hu.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">szélesség=1, növelés… 47-ig, csökkentés… egészen 0-ig</tspan></text>
- <path id="calligraphy-f01-hu.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1095.3)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1184.5" x="10"/>
+ <text id="calligraphy-f01-hu.svgtext1944" xml:space="preserve" transform="translate(10 1095.6)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-hu.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">szélesség=1, növelés… 47-ig, csökkentés… egészen 0-ig</tspan></text>
+ <path id="calligraphy-f01-hu.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1095.6)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1184.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
</flowRegion>
<flowDiv xml:space="preserve">A tollhegy szélessége a <flowSpan font-style="italic">keskenyítés</flowSpan> által a tollvonás sebességétől is függ. Ennek a paraméternek −100 és 100 között lehet az értéke; nulla esetén a szélesség független a sebességtől, pozitív érték esetén a gyorsulás vékonyít, negatív értéknél vastagít. Az alapértelmezett 10 gyors tollvonásoknál mérsékelt vékonyítást okoz. Bemutatunk néhány példát, mindegyiknél 20 volt a Szélesség értéke, a Szögé pedig 90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-hu.svgtext1987" xml:space="preserve" transform="translate(10 1263.9)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">keskenyítés = 0 (állandó szélesség)</tspan></text>
- <text id="calligraphy-f02-hu.svgtext1990" xml:space="preserve" transform="translate(10 1263.9)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">keskenyítés = 10</tspan></text>
- <text id="calligraphy-f02-hu.svgtext1993" xml:space="preserve" transform="translate(10 1263.9)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">keskenyítés = 40</tspan></text>
- <text id="calligraphy-f02-hu.svgtext1996" xml:space="preserve" transform="translate(10 1263.9)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">keskenyítés = −20</tspan></text>
- <text id="calligraphy-f02-hu.svgtext1999" xml:space="preserve" transform="translate(10 1263.9)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">keskenyítés = −60</tspan></text>
- <path id="calligraphy-f02-hu.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1263.9)" display="block"/>
- <path id="calligraphy-f02-hu.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1263.9)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1462.2" x="10"/>
+ <text id="calligraphy-f02-hu.svgtext1987" xml:space="preserve" transform="translate(10 1264.1)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">keskenyítés = 0 (állandó szélesség)</tspan></text>
+ <text id="calligraphy-f02-hu.svgtext1990" xml:space="preserve" transform="translate(10 1264.1)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">keskenyítés = 10</tspan></text>
+ <text id="calligraphy-f02-hu.svgtext1993" xml:space="preserve" transform="translate(10 1264.1)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">keskenyítés = 40</tspan></text>
+ <text id="calligraphy-f02-hu.svgtext1996" xml:space="preserve" transform="translate(10 1264.1)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">keskenyítés = −20</tspan></text>
+ <text id="calligraphy-f02-hu.svgtext1999" xml:space="preserve" transform="translate(10 1264.1)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-hu.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">keskenyítés = −60</tspan></text>
+ <path id="calligraphy-f02-hu.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1264.1)" display="block"/>
+ <path id="calligraphy-f02-hu.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1264.1)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1462.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">Szórakozásképpen beállíthatja a Szélességet és a Keskenyítést is 100-ra (a maximumra), és hirtelen mozdulatokkal rajzolva ilyen különösképpen természetesnek tűnő, neuronszerű formákhoz juthat:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-hu.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1509.7)" display="block"/>
- <path id="calligraphy-f03-hu.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1509.7)" display="block"/>
- <path id="calligraphy-f03-hu.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1509.7)" display="block"/>
- <path id="calligraphy-f03-hu.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1509.7)" display="block"/>
- <path id="calligraphy-f03-hu.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1509.7)" display="block"/>
- <path id="calligraphy-f03-hu.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1509.7)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1662.8595948" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1662.8595948" x="10">Szög és Rögzítettség</tspan>
+ <path id="calligraphy-f03-hu.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1510)" display="block"/>
+ <path id="calligraphy-f03-hu.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1510)" display="block"/>
+ <path id="calligraphy-f03-hu.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1510)" display="block"/>
+ <path id="calligraphy-f03-hu.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1510)" display="block"/>
+ <path id="calligraphy-f03-hu.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1510)" display="block"/>
+ <path id="calligraphy-f03-hu.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1510)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1663.1404798" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1663.1404798" x="10">Szög és Rögzítettség</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1668.1" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1668.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-hu.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-hu.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1758.1)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-hu.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1758.1)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-hu.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1758.1)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-hu.svgtext4096" xml:space="preserve" transform="translate(10 1758.1)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">szög = 90°</tspan></text>
- <text id="calligraphy-f04-hu.svgtext4099" xml:space="preserve" transform="translate(10 1758.1)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">szög = 30 (alapértelmezett)</tspan></text>
- <text id="calligraphy-f04-hu.svgtext4102" xml:space="preserve" transform="translate(10 1758.1)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">szög = 0</tspan></text>
- <text id="calligraphy-f04-hu.svgtext4105" xml:space="preserve" transform="translate(10 1758.1)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">szög = −90°</tspan></text>
- <path id="calligraphy-f04-hu.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-hu.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-hu.svgTriangleInS)" transform="translate(10 280.8)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-hu.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1758.1) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-hu.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1758.4)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-hu.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1758.4)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-hu.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1758.4)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-hu.svgtext4096" xml:space="preserve" transform="translate(10 1758.4)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">szög = 90°</tspan></text>
+ <text id="calligraphy-f04-hu.svgtext4099" xml:space="preserve" transform="translate(10 1758.4)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">szög = 30 (alapértelmezett)</tspan></text>
+ <text id="calligraphy-f04-hu.svgtext4102" xml:space="preserve" transform="translate(10 1758.4)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">szög = 0</tspan></text>
+ <text id="calligraphy-f04-hu.svgtext4105" xml:space="preserve" transform="translate(10 1758.4)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-hu.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">szög = −90°</tspan></text>
+ <path id="calligraphy-f04-hu.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-hu.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-hu.svgTriangleInS)" transform="translate(10 281.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-hu.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1758.4) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-hu.svguse2837" xlink:href="#calligraphy-f04-hu.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-hu.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-hu.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,8 +260,8 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-hu.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-hu.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-hu.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1758.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1910.6" x="10"/>
+ <path id="calligraphy-f04-hu.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1758.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1910.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
@@ -283,26 +275,26 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-hu.svgtext4984" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">szög = 30</tspan></text>
- <text id="calligraphy-f05-hu.svgtext4987" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">szög = 60</tspan></text>
- <text id="calligraphy-f05-hu.svgtext4990" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">szög = 90</tspan></text>
- <text id="calligraphy-f05-hu.svgtext4993" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">szög = 0</tspan></text>
- <text id="calligraphy-f05-hu.svgtext4996" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">szög = 15</tspan></text>
- <text id="calligraphy-f05-hu.svgtext4999" xml:space="preserve" transform="translate(10 2011)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">szög = −45</tspan></text>
- <path id="calligraphy-f05-hu.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2011)" display="block"/>
- <path id="calligraphy-f05-hu.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2011)" display="block"/>
- <path id="calligraphy-f05-hu.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2011)" display="block"/>
- <path id="calligraphy-f05-hu.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2011)" display="block"/>
- <path id="calligraphy-f05-hu.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2011)" display="block"/>
- <path id="calligraphy-f05-hu.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2011)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2166.8" x="10"/>
+ <text id="calligraphy-f05-hu.svgtext4984" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">szög = 30</tspan></text>
+ <text id="calligraphy-f05-hu.svgtext4987" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">szög = 60</tspan></text>
+ <text id="calligraphy-f05-hu.svgtext4990" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">szög = 90</tspan></text>
+ <text id="calligraphy-f05-hu.svgtext4993" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">szög = 0</tspan></text>
+ <text id="calligraphy-f05-hu.svgtext4996" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">szög = 15</tspan></text>
+ <text id="calligraphy-f05-hu.svgtext4999" xml:space="preserve" transform="translate(10 2011.2)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-hu.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">szög = −45</tspan></text>
+ <path id="calligraphy-f05-hu.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2011.2)" display="block"/>
+ <path id="calligraphy-f05-hu.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2011.2)" display="block"/>
+ <path id="calligraphy-f05-hu.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2011.2)" display="block"/>
+ <path id="calligraphy-f05-hu.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2011.2)" display="block"/>
+ <path id="calligraphy-f05-hu.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2011.2)" display="block"/>
+ <path id="calligraphy-f05-hu.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2011.2)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2167.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Amint láthatja, a vonal ott a legvékonyabb, ahol a toll szögével párhuzamosan fut, és ott a legvastagabb, ahol a toll szögére merőlegesen. A pozitív szögek természetesebb hatást keltenek, és a jobbkezes kalligráfiában hagyományosan ezek fordulnak elő.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2216.9" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2217.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -319,19 +311,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-hu.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">rögzítettség = 100</tspan></text>
- <text id="calligraphy-f06-hu.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">rögzítettség = 80</tspan></text>
- <text id="calligraphy-f06-hu.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">rögzítettség = 0</tspan></text>
- <path id="calligraphy-f06-hu.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2296)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-hu.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2296)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-hu.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2296)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-hu.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-hu.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-hu.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-hu.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-hu.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-hu.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-hu.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-hu.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">rögzítettség = 100</tspan></text>
+ <text id="calligraphy-f06-hu.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">rögzítettség = 80</tspan></text>
+ <text id="calligraphy-f06-hu.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2296.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-hu.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">szög = 30</tspan><tspan id="calligraphy-f06-hu.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">rögzítettség = 0</tspan></text>
+ <path id="calligraphy-f06-hu.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2296.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-hu.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2296.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-hu.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2296.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-hu.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-hu.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-hu.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-hu.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-hu.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-hu.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-hu.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2296.2) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-hu.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-hu.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -340,7 +332,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-hu.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-hu.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -349,7 +341,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-hu.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-hu.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -358,7 +350,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-hu.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-hu.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -367,7 +359,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-hu.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-hu.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-hu.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -376,7 +368,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-hu.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-hu.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -385,7 +377,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-hu.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-hu.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -394,7 +386,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-hu.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-hu.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -403,7 +395,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-hu.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-hu.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -412,7 +404,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-hu.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-hu.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -421,7 +413,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-hu.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-hu.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -430,7 +422,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-hu.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-hu.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -439,7 +431,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-hu.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-hu.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -448,7 +440,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-hu.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-hu.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -457,7 +449,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-hu.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-hu.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -466,7 +458,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-hu.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-hu.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -475,7 +467,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-hu.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-hu.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2296.2) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-hu.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-hu.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -484,17 +476,17 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-hu.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-hu.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2437.5" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2437.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Tipográfiai szempontból a legnagyobb rögzítettségből adódó legnagyobb szélességeltérés (fent balra) az antik, talpas betűképekre jellemző, mint például a Times vagy a Bodoni (mivel ezek történetileg a rögzített tollszögű kalligráfia utánzásából jöttek létre). A nulla rögzítettség és nulla eltérés (jobbra fent) pedig a modern, groteszk betűképekkel azonosítható, mint például a Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2521.532352800001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2521.532352800001" x="10">Remegés</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2521.7738168000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2521.7738168000005" x="10">Remegés</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2526.7" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2527" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -505,7 +497,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-hu.svgg3123" font-size="6px" transform="translate(10 2625.1)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-hu.svgg3123" font-size="6px" transform="translate(10 2625.4)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-hu.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-hu.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">lassú</tspan></text>
<text id="calligraphy-f07-hu.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-hu.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">közepes</tspan></text>
<text id="calligraphy-f07-hu.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-hu.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">gyors</tspan></text>
@@ -519,105 +511,105 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-hu.svguse3153" xlink:href="#calligraphy-f07-hu.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-hu.svguse3151" xlink:href="#calligraphy-f07-hu.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-hu.svguse3149" xlink:href="#calligraphy-f07-hu.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-hu.svgtext3177" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">remegés = 0</tspan></text>
- <text id="calligraphy-f07-hu.svgtext3111" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">remegés = 10</tspan></text>
- <text id="calligraphy-f07-hu.svgtext1990" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">remegés = 30</tspan></text>
- <text id="calligraphy-f07-hu.svgtext2991" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">remegés = 50</tspan></text>
- <text id="calligraphy-f07-hu.svgtext2995" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">remegés = 70</tspan></text>
- <text id="calligraphy-f07-hu.svgtext1993" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">remegés = 90</tspan></text>
- <text id="calligraphy-f07-hu.svgtext1996" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">remegés = 20</tspan></text>
- <text id="calligraphy-f07-hu.svgtext2999" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">remegés = 40</tspan></text>
- <text id="calligraphy-f07-hu.svgtext3003" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">remegés = 60</tspan></text>
- <text id="calligraphy-f07-hu.svgtext3007" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">remegés = 80</tspan></text>
- <text id="calligraphy-f07-hu.svgtext1999" xml:space="preserve" transform="translate(10 2595.1)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">remegés = 100</tspan></text>
- <path id="calligraphy-f07-hu.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2595.1)"/>
- <path id="calligraphy-f07-hu.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2595.1)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2872.9232528000007" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2872.9232528000007" x="10">Tekeredés és Tömeg</tspan>
+ <text id="calligraphy-f07-hu.svgtext3177" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">remegés = 0</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext3111" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">remegés = 10</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext1990" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">remegés = 30</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext2991" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">remegés = 50</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext2995" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">remegés = 70</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext1993" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">remegés = 90</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext1996" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">remegés = 20</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext2999" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">remegés = 40</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext3003" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">remegés = 60</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext3007" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">remegés = 80</tspan></text>
+ <text id="calligraphy-f07-hu.svgtext1999" xml:space="preserve" transform="translate(10 2595.4)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-hu.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">remegés = 100</tspan></text>
+ <path id="calligraphy-f07-hu.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2595.4)"/>
+ <path id="calligraphy-f07-hu.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2595.4)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2873.1647168000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2873.1647168000004" x="10">Tekeredés és Tömeg</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2878.1" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2878.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve">A szélességgel és a szöggel szemben ez a két paraméter a látható hatás helyett az eszköz „érzetkeltését” alakítja. Ezért nem is talál illusztrációt ebben a részben; inkább próbálja ki, hogy jobban megértse.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2928.2" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2928.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve">A <flowSpan font-style="italic">Tekeredés</flowSpan> a papír tollra gyakorolt ellenállását szabályozza. Alapértelmezett értéke egyben a lehető legkisebb (0), növelve a papír „csúszósabb” lesz: nagy tömegnél a toll hajlamos lesz éles fordulóknál túlcsúszni; magas tekeredés mellett nulla tömeg a toll tekergőzését vadabbá teszi.</flowDiv>
</flowRoot>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="2987.3" x="10"/>
+ <rect id="d0e286" display="none" height="1e3px" width="288" y="2987.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e286"/>
</flowRegion>
<flowDiv xml:space="preserve">A fizikában a <flowSpan font-style="italic">tömeg</flowSpan> a tehetetlenség oka; az Inkscape Művészi tolla esetében a tömeget növelve a toll egyre inkább lemarad az egérmutató mozgásáról, illetve egyre simábbak lesznek a tollvonások éles fordulói és hirtelen megugrásai. Alapesetben a Tömeg nagyon kicsi (2), így az eszköz gyors és érzékeny, de növelheti az értéket, ha lassabb és egyenletesebb működést szeretne.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3071.466537800001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3071.466537800001" x="10">Kalligráfia a gyakorlatban</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3071.7080018000006" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3071.7080018000006" x="10">Kalligráfia a gyakorlatban</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="3076.7" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="3076.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
</flowRegion>
<flowDiv xml:space="preserve">Most, hogy megismerte az eszköz alapvető képességeit, megpróbálhat elkészíteni néhány valódi kalligráfiát. Ha még csak most kezdett ezzel a művészettel foglalkozni, szerezzen egy jó könyvet a témáról, és tanuljon az Inkscape segítségével. Ez a rész csak néhány egyszerű példát fog bemutatni:</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3137.4" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="3137.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
</flowRegion>
<flowDiv xml:space="preserve">Mindenekelőtt készítenie kell egy vezetővonalpárt, ami segít a betűk elkészítésében. Ha döntött vagy dőlt betűs írásra gondol, akkor néhány ferde vezetővonalra is szüksége lesz, keresztben a két vízszintessel, valahogy így:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-hu.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-hu.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3268.1" x="10"/>
+ <path id="calligraphy-f08-hu.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-hu.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3195.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="3268.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
</flowRegion>
<flowDiv xml:space="preserve">Ezután a nagyítást állítsa olyanra, hogy a vezetők közötti magasság megfeleljen a természetes kézmozgásának. Adja meg a Szélességet és a Szöget, és már neki is foghat a rajzolásnak.</flowDiv>
</flowRoot>
- <rect id="d0e317" display="none" height="1e3px" width="288" y="3307.5" x="10"/>
+ <rect id="d0e317" display="none" height="1e3px" width="288" y="3307.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e317"/>
@@ -627,184 +619,184 @@ elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-hu.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3363.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-hu.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3363.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-hu.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3363.7)" display="block"/>
- <path id="calligraphy-f09-hu.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3363.7)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3406.7" x="10"/>
+ <path id="calligraphy-f09-hu.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3363.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-hu.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3363.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-hu.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3363.9)" display="block"/>
+ <path id="calligraphy-f09-hu.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3363.9)" display="block"/>
+ <rect id="d0e330" display="none" height="1e3px" width="288" y="3406.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e330"/>
</flowRegion>
<flowDiv xml:space="preserve">Hasznos tanácsok:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3429.2)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3423.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3429.4)"/>
+ <rect id="d0e336" display="none" height="1e3px" width="258" y="3423.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e336"/>
</flowRegion>
<flowDiv xml:space="preserve">Ha a digitális táblával megtalálta a kényelmes kézpozíciót, akkor egy-egy betű elkészültekor ne ezt a kezét mozgassa, inkább a vásznat görgesse (a <flowSpan font-weight="bold">Ctrl+nyíl</flowSpan> billentyűkkel).</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3468.7)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3462.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3468.9)"/>
+ <rect id="d0e343" display="none" height="1e3px" width="258" y="3462.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e343"/>
</flowRegion>
<flowDiv xml:space="preserve">Ha a legutóbbi tollvonása nem sikerült, akkor egyszerűen vonja vissza (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Viszont ha a vonás alakja jó, csak a pozíciója vagy a mérete lett kissé elhibázott, akkor célszerűbb ideiglenesen a Kijelölő eszközre váltva (<flowSpan font-weight="bold">Szóköz</flowSpan>) a szükséges mértékben mozgatni, átméretezni vagy forgatni. Ezután a <flowSpan font-weight="bold">Szóköz</flowSpan> ismételt megnyomásával újra a Művészi tollat használhatja.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3550.8)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3544.8" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3550.9)"/>
+ <rect id="d0e356" display="none" height="1e3px" width="258" y="3544.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
</flowRegion>
<flowDiv xml:space="preserve">Ha elkészült egy szó, váltson ismét a Kijelölő eszközre, és igazítsa egyenletesre a betűszárakat és a betűközöket. De ne essen túlzásokba; a jó kalligráfiának meg kell őriznie valamit az eredeti kézírások szabálytalanságaiból. Álljon ellen a kísértésnek, hogy másolással jusson újabb betűkhöz vagy betűrészekhez; az a jó, ha minden tollvonás egyedi.</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3616.1" x="10"/>
+ <rect id="d0e360" display="none" height="1e3px" width="288" y="3616.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e360"/>
</flowRegion>
<flowDiv xml:space="preserve">És végül álljon itt néhány példa kész betűkre:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-hu.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-hu.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unciális írás</tspan></text>
- <text id="calligraphy-f10-hu.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karoling írás</tspan></text>
- <text id="calligraphy-f10-hu.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gótikus írás</tspan></text>
- <text id="calligraphy-f10-hu.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Basztard írás</tspan></text>
- <path id="calligraphy-f10-hu.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-hu.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3643.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-hu.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Cifrázott, dőlt betűs írás</tspan></text>
- <path id="calligraphy-f10-hu.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3643.3)" display="block"/>
- <path id="calligraphy-f10-hu.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3643.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4221.964027100002" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4221.964027100002" x="10">Zárszó</tspan>
+ <path id="calligraphy-f10-hu.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-hu.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.5)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unciális írás</tspan></text>
+ <text id="calligraphy-f10-hu.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.5)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karoling írás</tspan></text>
+ <text id="calligraphy-f10-hu.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.5)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gótikus írás</tspan></text>
+ <text id="calligraphy-f10-hu.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.5)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Basztard írás</tspan></text>
+ <path id="calligraphy-f10-hu.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-hu.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3643.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-hu.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3643.5)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-hu.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Cifrázott, dőlt betűs írás</tspan></text>
+ <path id="calligraphy-f10-hu.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3643.5)" display="block"/>
+ <path id="calligraphy-f10-hu.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3643.5)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4222.106926100001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4222.106926100001" x="10">Zárszó</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4227.2" x="10"/>
+ <rect id="d0e379" display="none" height="1e3px" width="288" y="4227.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e379"/>
</flowRegion>
<flowDiv xml:space="preserve">A kalligráfia nem csupán szórakoztató; mélyen spirituális művészet, mely formálhatja a szemléletmódját bármivel kapcsolatban, amit tesz vagy lát. Az Inkscape Művészi tolla csak szerény bevezetést adhat ebbe a művészetbe. De mégis nagyon jó vele eljátszani, és hasznára lehet a munkában is. Kellemes időtöltést!</flowDiv>
</flowRoot>
- <g transform="translate(0 4286.2)">
+ <g transform="translate(0 4286.4)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter57" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.id.svg b/share/tutorials/tutorial-calligraphy.id.svg
index 80c344719..2165048b4 100644
--- a/share/tutorials/tutorial-calligraphy.id.svg
+++ b/share/tutorials/tutorial-calligraphy.id.svg
@@ -142,101 +142,93 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Jika anda memiliki tablet dan ingin menggunakan fitur tersebut, anda perlu mengkonfigurasi alat anda. Konfigurasi ini hanya dilakukan sekali dan penataannya disimpan. Untuk mengaktifkannya, anda harus memasang tablet tersebut sebelum menjalankan Inkscape kemudian membuka dialog <flowSpan font-style="italic">Input Devices...</flowSpan> lewat menu <flowSpan font-style="italic">File</flowSpan>. Setelah dialog ini dibuka, anda bisa memilih alat dan tata untuk pen tablet anda. Terakhir, setelah memilih penataannya, berpindahlah ke Calligraphy tool dan nyalakan tombol pressure and tilt. Seterusnya, Inkscape akan selalu mengingat penataan tersebut setiap memulai.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="710.76" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="700.12" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Pena kaligrafi inkscape bisa diatur untuk sensitif terhadap <flowSpan font-style="italic">velocity</flowSpan> dari sapuan (lihat “thinning-perampingan” dibawah), jadi, jika anda menggunakan tetikus, kemungkinan anda ingin menggunakan nol untuk parameter ini.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="773.2238329999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="773.2238329999999" x="10">Opsi Calligraphy Tool</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="762.5838339999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="762.5838339999999" x="10">Opsi Calligraphy Tool</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="778.42" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="767.78" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowDiv xml:space="preserve">Berpindahlah ke Calligraphy Tool dengan menekan <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, tombol <flowSpan font-weight="bold">C</flowSpan>, atau dengan klik pada tombol toolbarnya. Pada toolbar atas, anda bisa melihat bahwa terdapat 8 opsi/pilihan: Width &amp; Thinning; Angle &amp; Fixation; Caps; Tremor, Wiggle &amp; Mass. Terdapat juga dua tombol untuk menyalakan sensitivitas Pressure dan Tilt pada tablet (untuk tablet gambar).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="862.299013" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="862.299013" x="10">Width &amp; Thinning</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="851.6393039999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="851.6393039999999" x="10">Width &amp; Thinning</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="867.5" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="856.84" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Sepasang pilihan ini mengatur <flowSpan font-style="italic">width</flowSpan> (lebar) dari pena anda. Lebar ini bisa bervariasi dari 1 hingga 100 (standar) dan ukurannya dalam satuan relatif terhadap besar dari jendela editan anda, tetapi independen terhadap zum. Ini dikarenakan “satuan dari pengukuran“ dalam kaligrafi adalah daerah pergerakan tangan anda, dengan demikian, akan lebih baik jika lebar ujung pena anda rasionya konstan terhadap ukuran dari “papan gambar“ dan bukannya ukuran nyata yang berpatokan pada zum. Meskipun begitu, perlakuan ini adalah opsional, jadi bisa saja dirubah untuk mereka yang lebih memilih berpatokan pada zum. Untuk berpindah ke mode ini, gunakan kotak centang pada halaman Preferences tool yang bersangkutan (buka dengan klik ganda pada tombol tool).</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="1002.4" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="991.73" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">Dikarenakan lebar pena sering berubah, anda bisa mengaturnya tanpa harus lewat toolbar, dengan tombol panah <flowSpan font-weight="bold">kiri</flowSpan> dan panah <flowSpan font-weight="bold">kanan</flowSpan> atau lewat tablet yang mendukung fungsi pressure sensitivity. Hal paling bagus dari tombol ini adalah mereka bisa digunakan saat bekerja, jadi anda bisa merubah lebar pena anda saat anda membuat sapuan:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-id.svgtext1944" xml:space="preserve" transform="translate(10 1081.4)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-id.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">lebar=1, membesar.... menuju 47, mengecil... kembali ke 0</tspan></text>
- <path id="calligraphy-f01-id.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1081.4)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1170.3" x="10"/>
+ <text id="calligraphy-f01-id.svgtext1944" xml:space="preserve" transform="translate(10 1070.7)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-id.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">lebar=1, membesar.... menuju 47, mengecil... kembali ke 0</tspan></text>
+ <path id="calligraphy-f01-id.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1070.7)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1159.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
</flowRegion>
<flowDiv xml:space="preserve">Lebar pena juga bisa bergantung pada velositas, yang dikontrol oleh parameter <flowSpan font-style="italic">thinning</flowSpan> (perampingan). Parameter ini bisa bernilai -100 sampai dengan 100; nol berarti lebarnya akan tetap pada velositas, positif membuat semakin cepat sapuan dilakukan hasilnya semakin ramping, negatif akan membuatnya lebih lebar. Nilai bawaannya yaitu 10 berarti sedikit perampingan pada sapuan cepat. Berikut adalah beberapa contoh, semua digambar dengan lebar=20 dan sudut=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-id.svgtext1987" xml:space="preserve" transform="translate(10 1260)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">perampingan = 0 (lebar seragam)</tspan></text>
- <text id="calligraphy-f02-id.svgtext1990" xml:space="preserve" transform="translate(10 1260)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">perampingan = 10</tspan></text>
- <text id="calligraphy-f02-id.svgtext1993" xml:space="preserve" transform="translate(10 1260)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">perampingan = 40</tspan></text>
- <text id="calligraphy-f02-id.svgtext1996" xml:space="preserve" transform="translate(10 1260)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">perampingan = -20</tspan></text>
- <text id="calligraphy-f02-id.svgtext1999" xml:space="preserve" transform="translate(10 1260)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">perampingan = -60</tspan></text>
- <path id="calligraphy-f02-id.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1260)" display="block"/>
- <path id="calligraphy-f02-id.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1260)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1458.2" x="10"/>
+ <text id="calligraphy-f02-id.svgtext1987" xml:space="preserve" transform="translate(10 1249.3)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">perampingan = 0 (lebar seragam)</tspan></text>
+ <text id="calligraphy-f02-id.svgtext1990" xml:space="preserve" transform="translate(10 1249.3)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">perampingan = 10</tspan></text>
+ <text id="calligraphy-f02-id.svgtext1993" xml:space="preserve" transform="translate(10 1249.3)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">perampingan = 40</tspan></text>
+ <text id="calligraphy-f02-id.svgtext1996" xml:space="preserve" transform="translate(10 1249.3)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">perampingan = -20</tspan></text>
+ <text id="calligraphy-f02-id.svgtext1999" xml:space="preserve" transform="translate(10 1249.3)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-id.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">perampingan = -60</tspan></text>
+ <path id="calligraphy-f02-id.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1249.3)" display="block"/>
+ <path id="calligraphy-f02-id.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1249.3)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1447.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">Untuk bersenang-senang, aturlah Width (lebar) dan Thinning (perampingan) masing masing 100 (maksimum) dan cobalah menggambar dengan gerakan mengocok untuk mendapatkan bentuk serupa neuron yang tampak aneh tapi terlihat natural:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-id.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1516)" display="block"/>
- <path id="calligraphy-f03-id.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1516)" display="block"/>
- <path id="calligraphy-f03-id.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1516)" display="block"/>
- <path id="calligraphy-f03-id.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1516)" display="block"/>
- <path id="calligraphy-f03-id.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1516)" display="block"/>
- <path id="calligraphy-f03-id.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1516)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1669.1144649999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1669.1144649999999" x="10">Sudut &amp; Fixation</tspan>
+ <path id="calligraphy-f03-id.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1505.3)" display="block"/>
+ <path id="calligraphy-f03-id.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1505.3)" display="block"/>
+ <path id="calligraphy-f03-id.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1505.3)" display="block"/>
+ <path id="calligraphy-f03-id.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1505.3)" display="block"/>
+ <path id="calligraphy-f03-id.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1505.3)" display="block"/>
+ <path id="calligraphy-f03-id.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1505.3)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1658.415331" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1658.415331" x="10">Sudut &amp; Fixation</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1674.3" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1663.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-id.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-id.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1753.4)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-id.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1753.4)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-id.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1753.4)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-id.svgtext4096" xml:space="preserve" transform="translate(10 1753.4)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">sudut = 90 derajat</tspan></text>
- <text id="calligraphy-f04-id.svgtext4099" xml:space="preserve" transform="translate(10 1753.4)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">sudut = 30 (bawaan)</tspan></text>
- <text id="calligraphy-f04-id.svgtext4102" xml:space="preserve" transform="translate(10 1753.4)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">sudut = 0</tspan></text>
- <text id="calligraphy-f04-id.svgtext4105" xml:space="preserve" transform="translate(10 1753.4)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">sudut = -90 derajat</tspan></text>
- <path id="calligraphy-f04-id.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-id.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-id.svgTriangleInS)" transform="translate(10 276.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-id.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1753.4) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-id.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1742.7)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-id.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1742.7)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-id.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1742.7)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-id.svgtext4096" xml:space="preserve" transform="translate(10 1742.7)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">sudut = 90 derajat</tspan></text>
+ <text id="calligraphy-f04-id.svgtext4099" xml:space="preserve" transform="translate(10 1742.7)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">sudut = 30 (bawaan)</tspan></text>
+ <text id="calligraphy-f04-id.svgtext4102" xml:space="preserve" transform="translate(10 1742.7)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">sudut = 0</tspan></text>
+ <text id="calligraphy-f04-id.svgtext4105" xml:space="preserve" transform="translate(10 1742.7)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-id.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">sudut = -90 derajat</tspan></text>
+ <path id="calligraphy-f04-id.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-id.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-id.svgTriangleInS)" transform="translate(10 265.4)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-id.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1742.7) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-id.svguse2837" xlink:href="#calligraphy-f04-id.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-id.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-id.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,8 +260,8 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-id.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-id.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-id.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1753.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1905.9" x="10"/>
+ <path id="calligraphy-f04-id.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1742.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1895.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
@@ -283,26 +275,26 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-id.svgtext4984" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">sudut = 30</tspan></text>
- <text id="calligraphy-f05-id.svgtext4987" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">sudut = 60</tspan></text>
- <text id="calligraphy-f05-id.svgtext4990" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">sudut = 90</tspan></text>
- <text id="calligraphy-f05-id.svgtext4993" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">sudut = 0</tspan></text>
- <text id="calligraphy-f05-id.svgtext4996" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">sudut = 15</tspan></text>
- <text id="calligraphy-f05-id.svgtext4999" xml:space="preserve" transform="translate(10 2006.3)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">sudut = -45</tspan></text>
- <path id="calligraphy-f05-id.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2006.3)" display="block"/>
- <path id="calligraphy-f05-id.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2006.3)" display="block"/>
- <path id="calligraphy-f05-id.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2006.3)" display="block"/>
- <path id="calligraphy-f05-id.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2006.3)" display="block"/>
- <path id="calligraphy-f05-id.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2006.3)" display="block"/>
- <path id="calligraphy-f05-id.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2006.3)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2162.1" x="10"/>
+ <text id="calligraphy-f05-id.svgtext4984" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">sudut = 30</tspan></text>
+ <text id="calligraphy-f05-id.svgtext4987" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">sudut = 60</tspan></text>
+ <text id="calligraphy-f05-id.svgtext4990" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">sudut = 90</tspan></text>
+ <text id="calligraphy-f05-id.svgtext4993" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">sudut = 0</tspan></text>
+ <text id="calligraphy-f05-id.svgtext4996" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">sudut = 15</tspan></text>
+ <text id="calligraphy-f05-id.svgtext4999" xml:space="preserve" transform="translate(10 1995.5)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-id.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">sudut = -45</tspan></text>
+ <path id="calligraphy-f05-id.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1995.5)" display="block"/>
+ <path id="calligraphy-f05-id.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1995.5)" display="block"/>
+ <path id="calligraphy-f05-id.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1995.5)" display="block"/>
+ <path id="calligraphy-f05-id.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1995.5)" display="block"/>
+ <path id="calligraphy-f05-id.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1995.5)" display="block"/>
+ <path id="calligraphy-f05-id.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1995.5)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2151.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Seperti yang bisa anda lihat, sapuan paling ramping adalah jika digambar paralel terhadap sudutnya, dan lebar jika sebaliknya. Sudut positif adalah yang paling natural dan tradisional untuk kaligrafi tangan kanan.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2211.9" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2201.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -319,19 +311,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-id.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2291)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
- <text id="calligraphy-f06-id.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2291)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
- <text id="calligraphy-f06-id.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2291)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixation = 0</tspan></text>
- <path id="calligraphy-f06-id.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2291)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-id.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2291)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-id.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2291)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-id.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-id.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-id.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-id.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-id.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-id.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2291) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-id.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-id.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2280.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
+ <text id="calligraphy-f06-id.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2280.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
+ <text id="calligraphy-f06-id.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2280.2)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-id.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">sudut = 30</tspan><tspan id="calligraphy-f06-id.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixation = 0</tspan></text>
+ <path id="calligraphy-f06-id.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2280.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-id.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2280.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-id.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2280.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-id.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-id.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-id.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-id.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-id.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-id.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-id.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2280.2) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-id.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-id.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -340,7 +332,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-id.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-id.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -349,7 +341,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-id.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-id.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -358,7 +350,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-id.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-id.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -367,7 +359,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-id.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-id.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-id.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -376,7 +368,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-id.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-id.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -385,7 +377,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-id.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-id.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -394,7 +386,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-id.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-id.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -403,7 +395,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-id.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-id.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -412,7 +404,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-id.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-id.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -421,7 +413,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-id.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-id.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -430,7 +422,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-id.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-id.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -439,7 +431,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-id.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-id.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -448,7 +440,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-id.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-id.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -457,7 +449,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-id.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-id.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -466,7 +458,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-id.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-id.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -475,7 +467,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-id.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2291) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-id.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2280.2) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-id.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-id.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -484,17 +476,17 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-id.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-id.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2432.5" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2421.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Mudahnya, fixation maksimum dan stroke width (lebar) maksimum (kiri atas) adalah fitur dari typefaces antique serif, seperti Times atau Bodoni (dikarenakan sejarahnya mereka adalah imitasi dari kaligrafi pena tetap). Fixation nol dan kontras lebar nol (kanan atas), sebaliknya, lebih berupa sans serif moderen seperti Helvatica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2505.694729" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2505.694729" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2494.956174" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2494.956174" x="10">Tremor</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2510.9" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2500.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -505,7 +497,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-id.svgg3123" font-size="6px" transform="translate(10 2609.3)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-id.svgg3123" font-size="6px" transform="translate(10 2598.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-id.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-id.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">pelan</tspan></text>
<text id="calligraphy-f07-id.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-id.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">sedang</tspan></text>
<text id="calligraphy-f07-id.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-id.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">cepat</tspan></text>
@@ -519,105 +511,105 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-id.svguse3153" xlink:href="#calligraphy-f07-id.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-id.svguse3151" xlink:href="#calligraphy-f07-id.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-id.svguse3149" xlink:href="#calligraphy-f07-id.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-id.svgtext3177" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
- <text id="calligraphy-f07-id.svgtext3111" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
- <text id="calligraphy-f07-id.svgtext1990" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
- <text id="calligraphy-f07-id.svgtext2991" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
- <text id="calligraphy-f07-id.svgtext2995" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
- <text id="calligraphy-f07-id.svgtext1993" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
- <text id="calligraphy-f07-id.svgtext1996" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
- <text id="calligraphy-f07-id.svgtext2999" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
- <text id="calligraphy-f07-id.svgtext3003" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
- <text id="calligraphy-f07-id.svgtext3007" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
- <text id="calligraphy-f07-id.svgtext1999" xml:space="preserve" transform="translate(10 2579.3)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
- <path id="calligraphy-f07-id.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2579.3)"/>
- <path id="calligraphy-f07-id.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2579.3)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2856.739929" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2856.739929" x="10">Wiggle &amp; Mass</tspan>
+ <text id="calligraphy-f07-id.svgtext3177" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
+ <text id="calligraphy-f07-id.svgtext3111" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
+ <text id="calligraphy-f07-id.svgtext1990" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
+ <text id="calligraphy-f07-id.svgtext2991" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
+ <text id="calligraphy-f07-id.svgtext2995" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
+ <text id="calligraphy-f07-id.svgtext1993" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
+ <text id="calligraphy-f07-id.svgtext1996" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
+ <text id="calligraphy-f07-id.svgtext2999" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
+ <text id="calligraphy-f07-id.svgtext3003" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
+ <text id="calligraphy-f07-id.svgtext3007" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
+ <text id="calligraphy-f07-id.svgtext1999" xml:space="preserve" transform="translate(10 2568.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-id.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
+ <path id="calligraphy-f07-id.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2568.6)"/>
+ <path id="calligraphy-f07-id.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2568.6)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2846.001374" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2846.001374" x="10">Wiggle &amp; Mass</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2861.9" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2851.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve">Tidak seperti lebar dan sudut, dua parameter terakhir ini mendefinisikan bagaimana tool tersebut “lebih berasa“. Dengan demikian, tidak akan ada ilustrasi pada bagian ini; cobalah sendiri untuk memahami.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2910.1" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2899.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Wiggle</flowSpan> adalah resistan kertas terhadap pergerakan pena. Bawaannya adalah minimum (0), dan menaikkan parameter ini membuat kertas semakin “licin“: jika massnya besar, pena akan lebih sering selip pada tikungan tajam; jika mass nol, wiggle yang tinggi akan membuat pena bergerak lebih liar.</flowDiv>
</flowRoot>
- <rect id="d0e285" display="none" height="1e3px" width="288" y="2970.5" x="10"/>
+ <rect id="d0e285" display="none" height="1e3px" width="288" y="2959.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e285"/>
</flowRegion>
<flowDiv xml:space="preserve">Dalam fisika, <flowSpan font-style="italic">mass</flowSpan> adalah penyebab inertia; semakin besar mass dari tool tersebut, semakin lambar responnya terhadap tetikus dan semakin halus tikungan dan sapuan kasar yang anda buat. Nilai bawaanya cukup kecil (2) sehingga tool lebih cepat dan responsif, tapi tentu anda bisa menaikkannya untuk mendapatkan pen yang lebih halus dan lambat.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3052.658214" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3052.658214" x="10">Contoh kaligrafi</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3041.919659" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3041.919659" x="10">Contoh kaligrafi</tspan>
</text>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="3057.9" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3047.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Kini anda telah mengetahui kemampuan dasar dari tool tersebut, anda bisa mencoba membuat kaligrafi. Jika anda baru terhadap seni ini, carilah buku kaligrafi yang bagus dan pelajarilah dengan Inkscape. Bagian ini akan menampilkan beberapa contoh sederhana.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3107.6" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3096.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
</flowRegion>
<flowDiv xml:space="preserve">Pertama, anda perlu membuat sepasang penggaris sebagai penunjuk. Jika anda akan menulis dengan gaya tulisan indah misalnya, tambahkan beberapa guide slanted diantara dua penggaris itu, contohnya:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-id.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-id.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3165.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="3238" x="10"/>
+ <path id="calligraphy-f08-id.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-id.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3154.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3227.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">Kemudian zum sehingga tinggi diantara penggaris tersebut sesuai dengan daerah pergerakan tangan natural, atur lebar dan sudutnya, dan silahkan!</flowDiv>
</flowRoot>
- <rect id="d0e316" display="none" height="1e3px" width="288" y="3275.5" x="10"/>
+ <rect id="d0e316" display="none" height="1e3px" width="288" y="3264.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e316"/>
@@ -627,184 +619,184 @@ elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-id.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3331.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-id.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3331.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-id.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3331.6)" display="block"/>
- <path id="calligraphy-f09-id.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3331.6)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3374.6" x="10"/>
+ <path id="calligraphy-f09-id.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3320.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-id.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3320.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-id.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3320.8)" display="block"/>
+ <path id="calligraphy-f09-id.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3320.8)" display="block"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3363.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
</flowRegion>
<flowDiv xml:space="preserve">Beberapa tips berguna:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3398.5)"/>
- <rect id="d0e335" display="none" height="1e3px" width="258" y="3392.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3387.7)"/>
+ <rect id="d0e335" display="none" height="1e3px" width="258" y="3381.7" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e335"/>
</flowRegion>
<flowDiv xml:space="preserve">Jika tangan anda sudah nyaman pada tablet, jangan gerakkan lagi. Gulung saja kanvasnya (<flowSpan font-weight="bold">Ctrl+panah</flowSpan>) dengan tangan kiri anda setiap menyelesaikan tiap huruf.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3437.6)"/>
- <rect id="d0e342" display="none" height="1e3px" width="258" y="3431.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3426.9)"/>
+ <rect id="d0e342" display="none" height="1e3px" width="258" y="3420.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e342"/>
</flowRegion>
<flowDiv xml:space="preserve">Jika sapuan terakhir anda jelek, undo saja (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Meskipun demikian, jika bentuknya bagus tetapi posisi atau ukurannya salah, akan lebih baik untuk pindah ke Selector (<flowSpan font-weight="bold">Spasi</flowSpan>) dan atur ulang dengan menggunakan tetikus atau tombol, kemudian tekan lagi <flowSpan font-weight="bold">Spasi</flowSpan> untuk kembali ke tool Calligraphy.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3498.1)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3492.1" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3487.3)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3481.3" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Setelah menyelesaikan sehuruf, berpindahlah ke Selector lagi dan atur keseragaman batangnya dan jarak perhurufnya. Jangan berlebihan; kaligrafi yang baik harus memiliki tampilan yang menyerupai tulisan tangan. Kalau bisa jangan menggandakan kemudian menempel huruf atau elemen huruf; setiap sapuan haruslah asli.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3563" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3552.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Dan berikut adalah beberapa contoh:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-id.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-id.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3588.8)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial hand</tspan></text>
- <text id="calligraphy-f10-id.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3588.8)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
- <text id="calligraphy-f10-id.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3588.8)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
- <text id="calligraphy-f10-id.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3588.8)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
- <path id="calligraphy-f10-id.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-id.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3588.8)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-id.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3588.8)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
- <path id="calligraphy-f10-id.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3588.8)" display="block"/>
- <path id="calligraphy-f10-id.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3588.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4167.1474542999995" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4167.1474542999995" x="10">Akhir</tspan>
+ <path id="calligraphy-f10-id.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-id.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3578)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial hand</tspan></text>
+ <text id="calligraphy-f10-id.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3578)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
+ <text id="calligraphy-f10-id.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3578)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
+ <text id="calligraphy-f10-id.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3578)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
+ <path id="calligraphy-f10-id.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-id.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3578)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-id.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3578)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-id.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
+ <path id="calligraphy-f10-id.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3578)" display="block"/>
+ <path id="calligraphy-f10-id.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3578)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4156.3497613" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4156.3497613" x="10">Akhir</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4172.3" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4161.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafi bukan hanya untuk bersenang-senang; Ia adalah seni spiritual yang dalam dan bisa merubah cara pandang anda. Tool kaligrafi inkscape hanyalah perkenalan awal. Meskipun begitu, ia sangat bagus untuk bermain dan tetap berguna pada desain nyata. Selamat menikmati!</flowDiv>
</flowRoot>
- <g transform="translate(0 4231.1)">
+ <g transform="translate(0 4220.3)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter57" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.ja.svg b/share/tutorials/tutorial-calligraphy.ja.svg
index 28cc6c098..16247abf1 100644
--- a/share/tutorials/tutorial-calligraphy.ja.svg
+++ b/share/tutorials/tutorial-calligraphy.ja.svg
@@ -51,192 +51,184 @@
</flowRegion>
<flowDiv xml:space="preserve">Inkscape で使えるもっとも素晴らしいツールの一つがカリグラフィです。このチュートリアルではカリグラフィがどのように動くかについて説明し、カリグラフィアートの基本的なテクニックを紹介します。</flowDiv>
</flowRoot>
- <rect id="d0e18" display="none" height="1e3px" width="264" y="82.284" x="35"/>
+ <rect id="d0e18" display="none" height="1e3px" width="264" y="81.075" x="35"/>
<flowRoot font-family="sans-serif" font-size="7.2" font-style="italic" line-height="150%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e18"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-weight="bold">Ctrl+矢印</flowSpan>、<flowSpan font-weight="bold">マウスホイール</flowSpan>、または <flowSpan font-weight="bold">中央ボタンを押しながらドラッグ</flowSpan> を使ってページをスクロールすることができます。基本的なオブジェクトの作成、選択、変形については、 <flowSpan font-family="sans-serif">ヘルプ &gt; チュートリアル</flowSpan> から基本チュートリアルをご覧ください。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="137.455953" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="137.455953" x="10">歴史と様式</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="135.03753500000002" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="135.03753500000002" x="10">歴史と様式</tspan>
</text>
- <rect id="d0e38" display="none" height="1e3px" width="288" y="142.66" x="10"/>
+ <rect id="d0e38" display="none" height="1e3px" width="288" y="140.24" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e38"/>
</flowRegion>
<flowDiv xml:space="preserve">辞書によると、<flowSpan font-style="italic">カリグラフィ</flowSpan> とは「美しい文字」あるいは「美しく気品ある書法」を意味します。本来カリグラフィとは、美しい、あるいは気品ある手書き筆跡を作成する芸術のことです。それは少々堅苦しそうな響きに聞こえるかもしれませんが、少しの練習で誰でもこの芸術の基本を習得することができます。</flowDiv>
</flowRoot>
- <rect id="d0e44" display="none" height="1e3px" width="288" y="198" x="10"/>
+ <rect id="d0e44" display="none" height="1e3px" width="288" y="192.19" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e44"/>
</flowRegion>
<flowDiv xml:space="preserve">最古のカリグラフィといえば洞窟画にまで遡ります。印刷機が登場する以前、おおよそ紀元 1440 年頃まで、カリグラフィは書籍やその他の出版物を作成する手段でした。写字生はすべての書籍あるいは出版物の、すべての複製をそれぞれ手書きで作成しなければなりませんでした。手書きは羊皮紙やベラムの上に羽ペンとインクを使用して行われました。時代を経て使用されている書体には、ラスティック体、カロリング体、ブラックレター体などがあります。おそらく、こんにち一般の人々がカリグラフィを目にする最も一般的なものと言えば結婚式の招待状でしょうか。</flowDiv>
</flowRoot>
- <rect id="d0e47" display="none" height="1e3px" width="288" y="290.56" x="10"/>
+ <rect id="d0e47" display="none" height="1e3px" width="288" y="278.29" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e47"/>
</flowRegion>
<flowDiv xml:space="preserve">カリグラフィには、主に 3 つのスタイルがあります:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 314.12)"/>
- <rect id="d0e53" display="none" height="1e3px" width="258" y="308.12" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 301.85)"/>
+ <rect id="d0e53" display="none" height="1e3px" width="258" y="295.85" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e53"/>
</flowRegion>
<flowDiv xml:space="preserve">西洋またはローマ風</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 331.55)"/>
- <rect id="d0e57" display="none" height="1e3px" width="258" y="325.55" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 319.28)"/>
+ <rect id="d0e57" display="none" height="1e3px" width="258" y="313.28" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e57"/>
</flowRegion>
<flowDiv xml:space="preserve">アラビア風</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 349.19)"/>
- <rect id="d0e61" display="none" height="1e3px" width="258" y="343.19" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 336.92)"/>
+ <rect id="d0e61" display="none" height="1e3px" width="258" y="330.92" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e61"/>
</flowRegion>
<flowDiv xml:space="preserve">中国または東洋風</flowDiv>
</flowRoot>
- <rect id="d0e65" display="none" height="1e3px" width="288" y="360.73" x="10"/>
+ <rect id="d0e65" display="none" height="1e3px" width="288" y="348.46" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e65"/>
</flowRegion>
<flowDiv xml:space="preserve">このチュートリアルでは主に西洋風カリグラフィに焦点を当てています。他の 2 つについては、現在のカリグラフィツールの機能よりも、どちらかといえば (ペンではなく) ブラシを使うべきでしょう。</flowDiv>
</flowRoot>
- <rect id="d0e68" display="none" height="1e3px" width="288" y="403.63" x="10"/>
+ <rect id="d0e68" display="none" height="1e3px" width="288" y="389.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e68"/>
</flowRegion>
<flowDiv xml:space="preserve">過去の写字生たちに対し私たちがもつ圧倒的なアドバンテージが <flowSpan font-family="sans-serif">元に戻す</flowSpan> コマンドの存在です。もし書き損じたとしてもそのページが台無しになったりしません。Inkscape のカリグラフィツールはまた、古典的なペンとインクでは不可能なテクニックも使えます。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="459.42069640000005" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="459.42069640000005" x="10">ハードウェア</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="442.95125240000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="442.95125240000004" x="10">ハードウェア</tspan>
</text>
- <rect id="d0e80" display="none" height="1e3px" width="288" y="464.62" x="10"/>
+ <rect id="d0e80" display="none" height="1e3px" width="288" y="448.15" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e80"/>
</flowRegion>
<flowDiv xml:space="preserve">たとえば Wacom などの <flowSpan font-style="italic">ペンタブレット</flowSpan> を使えば最もよい結果が得られるでしょう。このツールには柔軟性があるので、マウスだけでも、素早く曲線を引くことには若干の困難がありますが、かなり複雑なカリグラフィを書くことができます。</flowDiv>
</flowRoot>
- <rect id="d0e86" display="none" height="1e3px" width="288" y="507.47" x="10"/>
+ <rect id="d0e86" display="none" height="1e3px" width="288" y="489.06" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e86"/>
</flowRegion>
<flowDiv xml:space="preserve">Inkscape はタブレットペンがサポートする <flowSpan font-style="italic">筆圧検知</flowSpan> や <flowSpan font-style="italic">傾き検知</flowSpan> 機能に対応しています。設定が必要であるため、検知機能はデフォルトでは無効になっています。また、ペンでのカリグラフィは、ブラシとは異なり筆圧検知に敏感ではないことも覚えておいてください。</flowDiv>
</flowRoot>
- <rect id="d0e95" display="none" height="1e3px" width="288" y="562.29" x="10"/>
+ <rect id="d0e95" display="none" height="1e3px" width="288" y="540.81" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e95"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">タブレットで検知機能を使いたい場合はデバイスの設定が必要になります。設定は一度行えばそれが保存されます。この機能を有効にするには、まず Inkscape を起動する前にタブレットを接続しておいてください。起動後、<flowSpan font-style="italic">ファイル</flowSpan> メニューの <flowSpan font-style="italic">入力デバイス...</flowSpan> コマンドを選択してください。ダイアログが表示され、既定のデバイスおよびタブレットペンの設定が行えます。設定を保存したら、カリグラフィツールに切り替え、ツールバー上の筆圧および傾き検知ボタンを押してください。以降、Inkscape は起動時にそれら設定を復元します。</flowDiv>
</flowRoot>
- <rect id="d0e104" display="none" height="1e3px" width="288" y="675.91" x="10"/>
+ <rect id="d0e104" display="none" height="1e3px" width="288" y="627.19" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e104"/>
</flowRegion>
<flowDiv xml:space="preserve">Inkscape カリグラフィペンは、ペンの動く <flowSpan font-style="italic">速度</flowSpan> を検知できます (後述の「幅変化」を参照してください)。マウスを使用している場合はこのパラメーターをゼロにした方がいいかもしれません。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="731.0715893999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="731.0715893999999" x="10">カリグラフィツールオプション</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="680.4157904" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="680.4157904" x="10">カリグラフィツールオプション</tspan>
</text>
- <rect id="d0e116" display="none" height="1e3px" width="288" y="736.27" x="10"/>
+ <rect id="d0e116" display="none" height="1e3px" width="288" y="685.62" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e116"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-weight="bold">Ctrl+F6</flowSpan> キーを押す、<flowSpan font-weight="bold">C</flowSpan> キーを押す、もしくはツールバーボタンを押してカリグラフィツールに切り替えてください。上のツールコントロールバーには 7 つのオプション (幅と幅変化、角度と固定度、震え、およびうねりと質量) があります。またタブレットでの描画用に、タブレットの筆圧および傾き検知をオン/オフする 2 つのボタンがあります。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="804.4640033999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="804.4640033999999" x="10">幅と幅変化</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="750.7381364" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="750.7381364" x="10">幅と幅変化</tspan>
</text>
- <rect id="d0e130" display="none" height="1e3px" width="288" y="809.66" x="10"/>
+ <rect id="d0e130" display="none" height="1e3px" width="288" y="755.94" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e130"/>
</flowRegion>
<flowDiv xml:space="preserve">このオプションのペアは、ペンの <flowSpan font-style="italic">幅</flowSpan> を制御します。幅の値は 1 から 100 が指定できます。単位はデフォルトでは編集ウインドウサイズとの相対値となりますが、ズームレベルには影響されません。これには理由があり、カリグラフィにおける自然な「測定単位」は書き手の手の動きの範囲であり、ペン先の幅は書き手の「画板」に対する一定比である方が、ズームレベルに依存した現実の単位よりも便利だからです。</flowDiv>
</flowRoot>
- <rect id="d0e136" display="none" height="1e3px" width="288" y="877.41" x="10"/>
+ <rect id="d0e136" display="none" height="1e3px" width="288" y="819.49" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e136"/>
</flowRegion>
<flowDiv xml:space="preserve">ペン幅はちょくちょく変更されるものなので、ツールバーを使わずに調整することができます。<flowSpan font-weight="bold">左</flowSpan> および <flowSpan font-weight="bold">右</flowSpan> 矢印キーか、タブレットの筆圧検知機能を使います。これらキーのもっとも優れている点は描画中にも動作するということです。つまり、書いている最中に徐々にペンの幅を変更することができます。</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-ja.svgtext1944" xml:space="preserve" transform="translate(10 940.67)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-ja.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">幅=1, 増加.... 幅=47, 減少... 幅=0 に戻る</tspan></text>
- <path id="calligraphy-f01-ja.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 940.67)" display="block"/>
- <rect id="d0e155" display="none" height="1e3px" width="288" y="1030.1" x="10"/>
+ <text id="calligraphy-f01-ja.svgtext1944" xml:space="preserve" transform="translate(10 879.67)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-ja.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">幅=1, 増加.... 幅=47, 減少... 幅=0 に戻る</tspan></text>
+ <path id="calligraphy-f01-ja.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 879.67)" display="block"/>
+ <rect id="d0e155" display="none" height="1e3px" width="288" y="969.11" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e155"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">幅変化</flowSpan> パラメーターによって、ペンの幅は速度にも依存します。このパラメーターは -100 から 100 までの値をとり、ゼロにすると幅は速度の影響を受けずに一定になり、正数なら速度に比例して細くなり、負数なら速度に比例して太くなります。デフォルトの 10 は速い筆の動きで穏やかに細くなります。以下にいくつかの例をあげます。すべて幅=20、角度=90で描画されています:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-ja.svgtext1987" xml:space="preserve" transform="translate(10 1105.6)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">幅変化 = 0 (一定幅) </tspan></text>
- <text id="calligraphy-f02-ja.svgtext1990" xml:space="preserve" transform="translate(10 1105.6)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">幅変化 = 10</tspan></text>
- <text id="calligraphy-f02-ja.svgtext1993" xml:space="preserve" transform="translate(10 1105.6)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">幅変化 = 40</tspan></text>
- <text id="calligraphy-f02-ja.svgtext1996" xml:space="preserve" transform="translate(10 1105.6)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">幅変化 = -20</tspan></text>
- <text id="calligraphy-f02-ja.svgtext1999" xml:space="preserve" transform="translate(10 1105.6)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">幅変化 = -60</tspan></text>
- <path id="calligraphy-f02-ja.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1105.6)" display="block"/>
- <path id="calligraphy-f02-ja.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1105.6)" display="block"/>
- <rect id="d0e170" display="none" height="1e3px" width="288" y="1304.3" x="10"/>
+ <text id="calligraphy-f02-ja.svgtext1987" xml:space="preserve" transform="translate(10 1040.5)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">幅変化 = 0 (一定幅) </tspan></text>
+ <text id="calligraphy-f02-ja.svgtext1990" xml:space="preserve" transform="translate(10 1040.5)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">幅変化 = 10</tspan></text>
+ <text id="calligraphy-f02-ja.svgtext1993" xml:space="preserve" transform="translate(10 1040.5)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">幅変化 = 40</tspan></text>
+ <text id="calligraphy-f02-ja.svgtext1996" xml:space="preserve" transform="translate(10 1040.5)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">幅変化 = -20</tspan></text>
+ <text id="calligraphy-f02-ja.svgtext1999" xml:space="preserve" transform="translate(10 1040.5)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ja.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">幅変化 = -60</tspan></text>
+ <path id="calligraphy-f02-ja.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1040.5)" display="block"/>
+ <path id="calligraphy-f02-ja.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1040.5)" display="block"/>
+ <rect id="d0e170" display="none" height="1e3px" width="288" y="1239.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e170"/>
</flowRegion>
<flowDiv xml:space="preserve">面白半分に、幅と幅変化の両方を 100 (最大) に設定し、きまぐれにペンを動かし描いてみると、妙に自然な、神経細胞のようなシェイプができあがりました:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-ja.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1342.8)" display="block"/>
- <path id="calligraphy-f03-ja.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1342.8)" display="block"/>
- <path id="calligraphy-f03-ja.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1342.8)" display="block"/>
- <path id="calligraphy-f03-ja.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1342.8)" display="block"/>
- <path id="calligraphy-f03-ja.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1342.8)" display="block"/>
- <path id="calligraphy-f03-ja.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1342.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1495.9480654000001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1495.9480654000001" x="10">角度と固定度</tspan>
+ <path id="calligraphy-f03-ja.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1276.5)" display="block"/>
+ <path id="calligraphy-f03-ja.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1276.5)" display="block"/>
+ <path id="calligraphy-f03-ja.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1276.5)" display="block"/>
+ <path id="calligraphy-f03-ja.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1276.5)" display="block"/>
+ <path id="calligraphy-f03-ja.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1276.5)" display="block"/>
+ <path id="calligraphy-f03-ja.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1276.5)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1429.6216124000002" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1429.6216124000002" x="10">角度と固定度</tspan>
</text>
- <rect id="d0e189" display="none" height="1e3px" width="288" y="1501.1" x="10"/>
+ <rect id="d0e189" display="none" height="1e3px" width="288" y="1434.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e189"/>
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-ja.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-ja.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1564.4)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-ja.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1564.4)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-ja.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1564.4)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-ja.svgtext4096" xml:space="preserve" transform="translate(10 1564.4)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">角度 = 90°</tspan></text>
- <text id="calligraphy-f04-ja.svgtext4099" xml:space="preserve" transform="translate(10 1564.4)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">角度 = 30 (デフォルト)</tspan></text>
- <text id="calligraphy-f04-ja.svgtext4102" xml:space="preserve" transform="translate(10 1564.4)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">角度 = 0</tspan></text>
- <text id="calligraphy-f04-ja.svgtext4105" xml:space="preserve" transform="translate(10 1564.4)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">角度 = -90°</tspan></text>
- <path id="calligraphy-f04-ja.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-ja.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-ja.svgTriangleInS)" transform="translate(10 87.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-ja.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1564.4) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-ja.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1495)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-ja.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1495)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-ja.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1495)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-ja.svgtext4096" xml:space="preserve" transform="translate(10 1495)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">角度 = 90°</tspan></text>
+ <text id="calligraphy-f04-ja.svgtext4099" xml:space="preserve" transform="translate(10 1495)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">角度 = 30 (デフォルト)</tspan></text>
+ <text id="calligraphy-f04-ja.svgtext4102" xml:space="preserve" transform="translate(10 1495)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">角度 = 0</tspan></text>
+ <text id="calligraphy-f04-ja.svgtext4105" xml:space="preserve" transform="translate(10 1495)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ja.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">角度 = -90°</tspan></text>
+ <path id="calligraphy-f04-ja.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-ja.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-ja.svgTriangleInS)" transform="translate(10 17.7)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-ja.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1495) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-ja.svguse2837" xlink:href="#calligraphy-f04-ja.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-ja.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-ja.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,34 +260,34 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-ja.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-ja.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-ja.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1564.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e205" display="none" height="1e3px" width="288" y="1716.6" x="10"/>
+ <path id="calligraphy-f04-ja.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1495)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e205" display="none" height="1e3px" width="288" y="1647.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e205"/>
</flowRegion>
<flowDiv xml:space="preserve">古典的なカリグラフィ書体はそれぞれ自身のペン角度を持っていました。例えば、アンシャル体では角度 25°を採用しています。より複雑な書体やより熟練した書家はしばしば描画中に角度を変えますが、Inkscape はこれを <flowSpan font-weight="bold">上</flowSpan> および <flowSpan font-weight="bold">下</flowSpan> 矢印キーまたはタブレットの傾き検知機能で実現しています。ただし、カリグラフィの練習を始めたばかりのころは角度を一定に保つ方がよいでしょう。以下に様々な角度で描かれた例を示します (固定度 = 100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-ja.svgtext4984" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">角度 = 30</tspan></text>
- <text id="calligraphy-f05-ja.svgtext4987" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">角度 = 60</tspan></text>
- <text id="calligraphy-f05-ja.svgtext4990" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">角度 = 90</tspan></text>
- <text id="calligraphy-f05-ja.svgtext4993" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">角度 = 0</tspan></text>
- <text id="calligraphy-f05-ja.svgtext4996" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">角度 = 15</tspan></text>
- <text id="calligraphy-f05-ja.svgtext4999" xml:space="preserve" transform="translate(10 1805.4)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">角度 = -45</tspan></text>
- <path id="calligraphy-f05-ja.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1805.4)" display="block"/>
- <path id="calligraphy-f05-ja.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1805.4)" display="block"/>
- <path id="calligraphy-f05-ja.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1805.4)" display="block"/>
- <path id="calligraphy-f05-ja.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1805.4)" display="block"/>
- <path id="calligraphy-f05-ja.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1805.4)" display="block"/>
- <path id="calligraphy-f05-ja.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1805.4)" display="block"/>
- <rect id="d0e224" display="none" height="1e3px" width="288" y="1961.7" x="10"/>
+ <text id="calligraphy-f05-ja.svgtext4984" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">角度 = 30</tspan></text>
+ <text id="calligraphy-f05-ja.svgtext4987" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">角度 = 60</tspan></text>
+ <text id="calligraphy-f05-ja.svgtext4990" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">角度 = 90</tspan></text>
+ <text id="calligraphy-f05-ja.svgtext4993" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">角度 = 0</tspan></text>
+ <text id="calligraphy-f05-ja.svgtext4996" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">角度 = 15</tspan></text>
+ <text id="calligraphy-f05-ja.svgtext4999" xml:space="preserve" transform="translate(10 1731)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ja.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">角度 = -45</tspan></text>
+ <path id="calligraphy-f05-ja.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1731)" display="block"/>
+ <path id="calligraphy-f05-ja.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1731)" display="block"/>
+ <path id="calligraphy-f05-ja.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1731)" display="block"/>
+ <path id="calligraphy-f05-ja.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1731)" display="block"/>
+ <path id="calligraphy-f05-ja.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1731)" display="block"/>
+ <path id="calligraphy-f05-ja.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1731)" display="block"/>
+ <rect id="d0e224" display="none" height="1e3px" width="288" y="1887.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e224"/>
</flowRegion>
<flowDiv xml:space="preserve">ご覧のように、ストロークはその角度に平行に描くと細くなり、垂直に描くと太くなります。右手書きのカリグラフィでは、正の角度がもっとも自然で一般的です。</flowDiv>
</flowRoot>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="1992.3" x="10"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="1916.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
@@ -307,19 +299,19 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-ja.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2067.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">固定度 = 100</tspan></text>
- <text id="calligraphy-f06-ja.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2067.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">固定度 = 80</tspan></text>
- <text id="calligraphy-f06-ja.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2067.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">固定度 = 0</tspan></text>
- <path id="calligraphy-f06-ja.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2067.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ja.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2067.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ja.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2067.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ja.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ja.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ja.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ja.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ja.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ja.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2067.7) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-ja.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-ja.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1988.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">固定度 = 100</tspan></text>
+ <text id="calligraphy-f06-ja.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1988.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">固定度 = 80</tspan></text>
+ <text id="calligraphy-f06-ja.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1988.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ja.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-ja.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">固定度 = 0</tspan></text>
+ <path id="calligraphy-f06-ja.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 1988.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ja.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 1988.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ja.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 1988.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ja.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ja.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ja.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ja.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ja.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ja.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ja.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1988.3) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-ja.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-ja.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -328,7 +320,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-ja.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-ja.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -337,7 +329,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-ja.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-ja.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -346,7 +338,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-ja.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-ja.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -355,7 +347,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-ja.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-ja.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-ja.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -364,7 +356,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-ja.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-ja.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -373,7 +365,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-ja.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-ja.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -382,7 +374,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-ja.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-ja.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -391,7 +383,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-ja.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-ja.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -400,7 +392,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-ja.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-ja.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -409,7 +401,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-ja.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-ja.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -418,7 +410,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-ja.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-ja.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -427,7 +419,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-ja.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-ja.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -436,7 +428,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-ja.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-ja.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -445,7 +437,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-ja.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-ja.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -454,7 +446,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-ja.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-ja.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -463,7 +455,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ja.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2067.7) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-ja.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1988.3) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-ja.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ja.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -472,17 +464,17 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ja.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ja.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e243" display="none" height="1e3px" width="288" y="2209.7" x="10"/>
+ <rect id="d0e243" display="none" height="1e3px" width="288" y="2130.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e243"/>
</flowRegion>
<flowDiv xml:space="preserve">タイポグラフィ上の話では、最大固定度すなわち幅の対比が最大のストローク (上図左) が Times や Bodoni のようなアンティークなセリフ書体の特徴になっています (なぜならこれら書体は歴史的に固定ペンカリグラフィを模倣しているからです)。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2265.9855934" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2265.9855934" x="10">震え</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2184.6291114" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2184.6291114" x="10">震え</tspan>
</text>
- <rect id="d0e252" display="none" height="1e3px" width="288" y="2271.2" x="10"/>
+ <rect id="d0e252" display="none" height="1e3px" width="288" y="2189.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e252"/>
@@ -493,7 +485,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-ja.svgg3123" font-size="6px" transform="translate(10 2369.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-ja.svgg3123" font-size="6px" transform="translate(10 2288.2)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-ja.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-ja.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">ゆっくり</tspan></text>
<text id="calligraphy-f07-ja.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-ja.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">普通</tspan></text>
<text id="calligraphy-f07-ja.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-ja.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">速く</tspan></text>
@@ -507,289 +499,289 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-ja.svguse3153" xlink:href="#calligraphy-f07-ja.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-ja.svguse3151" xlink:href="#calligraphy-f07-ja.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-ja.svguse3149" xlink:href="#calligraphy-f07-ja.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-ja.svgtext3177" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">震え = 0</tspan></text>
- <text id="calligraphy-f07-ja.svgtext3111" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">震え = 10</tspan></text>
- <text id="calligraphy-f07-ja.svgtext1990" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">震え = 30</tspan></text>
- <text id="calligraphy-f07-ja.svgtext2991" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">震え = 50</tspan></text>
- <text id="calligraphy-f07-ja.svgtext2995" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">震え = 70</tspan></text>
- <text id="calligraphy-f07-ja.svgtext1993" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">震え = 90</tspan></text>
- <text id="calligraphy-f07-ja.svgtext1996" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">震え = 20</tspan></text>
- <text id="calligraphy-f07-ja.svgtext2999" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">震え = 40</tspan></text>
- <text id="calligraphy-f07-ja.svgtext3003" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">震え = 60</tspan></text>
- <text id="calligraphy-f07-ja.svgtext3007" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">震え = 80</tspan></text>
- <text id="calligraphy-f07-ja.svgtext1999" xml:space="preserve" transform="translate(10 2339.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">震え = 100</tspan></text>
- <path id="calligraphy-f07-ja.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2339.6)"/>
- <path id="calligraphy-f07-ja.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2339.6)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2617.3647734" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2617.3647734" x="10">うねりと質量</tspan>
+ <text id="calligraphy-f07-ja.svgtext3177" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">震え = 0</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext3111" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">震え = 10</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext1990" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">震え = 30</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext2991" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">震え = 50</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext2995" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">震え = 70</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext1993" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">震え = 90</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext1996" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">震え = 20</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext2999" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">震え = 40</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext3003" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">震え = 60</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext3007" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">震え = 80</tspan></text>
+ <text id="calligraphy-f07-ja.svgtext1999" xml:space="preserve" transform="translate(10 2258.2)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ja.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">震え = 100</tspan></text>
+ <path id="calligraphy-f07-ja.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2258.2)"/>
+ <path id="calligraphy-f07-ja.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2258.2)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2536.0082914" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2536.0082914" x="10">うねりと質量</tspan>
</text>
- <rect id="d0e274" display="none" height="1e3px" width="288" y="2622.6" x="10"/>
+ <rect id="d0e274" display="none" height="1e3px" width="288" y="2541.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e274"/>
</flowRegion>
<flowDiv xml:space="preserve">幅や角度と違い、この 2 つのパラメーターは視覚効果に作用すると言うより、ツールの「感触」を定義します。そのため、この節ではイラストは一切ありません。あなた自ら試してみてください。</flowDiv>
</flowRoot>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2664.8" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2581.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">うねり</flowSpan> はペンを走らせる時の紙の抵抗です。値が小さいほど紙は「滑りやすく」なります。質量を大きくした場合、ペンは急な方向転換をしなくなります。質量がゼロの場合、低いうねりはペンを大胆にうねらせます。</flowDiv>
</flowRoot>
- <rect id="d0e282" display="none" height="1e3px" width="288" y="2707.5" x="10"/>
+ <rect id="d0e282" display="none" height="1e3px" width="288" y="2621.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e282"/>
</flowRegion>
<flowDiv xml:space="preserve">物理学では <flowSpan font-style="italic">質量</flowSpan> は慣性の要因です。Inkscape のカリグラフィツールにおいては、質量を大きくするとマウスポインターに追随するペンの遅れがより大きくなり、きびきび動かず、ストロークがよりスムーズな形状になります。デフォルトではこの値は小さく (2) になっていますので素早く反応しますが、質量を増やせば、ゆっくりと、スムーズなペンになります。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2787.5414164" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2787.5414164" x="10">カリグラフィの例</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2697.4642314" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2697.4642314" x="10">カリグラフィの例</tspan>
</text>
- <rect id="d0e294" display="none" height="1e3px" width="288" y="2792.7" x="10"/>
+ <rect id="d0e294" display="none" height="1e3px" width="288" y="2702.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e294"/>
</flowRegion>
<flowDiv xml:space="preserve">ここまででカリグラフィツールの基本が分かったと思いますので、実際にいくつかカリグラフィを描いてみましょう。</flowDiv>
</flowRoot>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="2823.2" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="2731.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">まず最初に、ガイドとなるルーラーのペアを作成しましょう。もし斜体や草書体を書こうとしているのであれば、2 つのルーラーと交差するいくつかの斜線のガイドも加えます。以下に例を示します:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-ja.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ja.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 2874)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e310" display="none" height="1e3px" width="288" y="2946.6" x="10"/>
+ <path id="calligraphy-f08-ja.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ja.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 2780.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e310" display="none" height="1e3px" width="288" y="2853.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e310"/>
</flowRegion>
<flowDiv xml:space="preserve">そして、ルーラー間が自然に手を動かすのに最も適した高さになるようにズームしてやってみましょう。</flowDiv>
</flowRoot>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="2976.5" x="10"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="2881.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">おそらく、ビギナーカリグラファーのあなたは最初に文字の基本要素を練習するのがいいでしょう。すなわち、垂直および水平のステム、丸いストローク、斜めのステムです。以下にアンシャル体におけるいくつかの文字の要素を示します:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-ja.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3027.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-ja.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3027.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-ja.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3027.4)" display="block"/>
- <path id="calligraphy-f09-ja.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3027.4)" display="block"/>
- <rect id="d0e326" display="none" height="1e3px" width="288" y="3070.4" x="10"/>
+ <path id="calligraphy-f09-ja.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 2930.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-ja.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 2930.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-ja.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 2930.5)" display="block"/>
+ <path id="calligraphy-f09-ja.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 2930.5)" display="block"/>
+ <rect id="d0e326" display="none" height="1e3px" width="288" y="2973.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e326"/>
</flowRegion>
<flowDiv xml:space="preserve">役に立つコツ:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3094.3)"/>
- <rect id="d0e332" display="none" height="1e3px" width="258" y="3088.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 2997.4)"/>
+ <rect id="d0e332" display="none" height="1e3px" width="258" y="2991.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e332"/>
</flowRegion>
<flowDiv xml:space="preserve">手をタブレットの上でくつろいだ状態にしたら、そこから動かさないでください。代わりに、文字を書くごとに左手でキャンバスを (<flowSpan font-weight="bold">Ctrl+矢印</flowSpan> キーで) スクロールさせましょう。</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3136.7)"/>
- <rect id="d0e339" display="none" height="1e3px" width="258" y="3130.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3037.9)"/>
+ <rect id="d0e339" display="none" height="1e3px" width="258" y="3031.9" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e339"/>
</flowRegion>
<flowDiv xml:space="preserve">最後のストロークに失敗したら、元に戻しましょう (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>)。ただし、シェイプはうまく書けたけれども位置や大きさが少しずれていたなどの場合は、一時的に選択ツールに切り替え(<flowSpan font-weight="bold">スペース</flowSpan> キー)、マウスやキーボードから移動/拡大縮小/回転などして修正しましょう。その後再び <flowSpan font-weight="bold">スペース</flowSpan> キーを押せばカリグラフィツールに戻ります。</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3204.3)"/>
- <rect id="d0e352" display="none" height="1e3px" width="258" y="3198.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3102)"/>
+ <rect id="d0e352" display="none" height="1e3px" width="258" y="3096" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e352"/>
</flowRegion>
<flowDiv xml:space="preserve">語句を書いたら、選択ツールに切り替え、ステムの均一性や字間を調整しましょう。でもやりすぎないでください。よいカリグラフィには多少の不規則な手書き感を残さなければなりません。文字や文字要素をコピーしたいという誘惑に負けないでください。筆跡はそれぞれがオリジナルでなければなりません。</flowDiv>
</flowRoot>
- <rect id="d0e356" display="none" height="1e3px" width="288" y="3253.4" x="10"/>
+ <rect id="d0e356" display="none" height="1e3px" width="288" y="3147.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
</flowRegion>
<flowDiv xml:space="preserve">さらに、ここでいくつかの完全なレタリングの例をあげておきます:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-ja.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-ja.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3279.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">アンシャル体</tspan></text>
- <text id="calligraphy-f10-ja.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3279.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">カロリング体</tspan></text>
- <text id="calligraphy-f10-ja.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3279.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">ゴシック体</tspan></text>
- <text id="calligraphy-f10-ja.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3279.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">バタード体</tspan></text>
- <path id="calligraphy-f10-ja.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ja.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3279.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-ja.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3279.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">フラリッシュイタリック体</tspan></text>
- <path id="calligraphy-f10-ja.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3279.3)" display="block"/>
- <path id="calligraphy-f10-ja.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3279.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3858.1608430999995" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3858.1608430999995" x="10">最後に</tspan>
+ <path id="calligraphy-f10-ja.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-ja.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3173.6)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">アンシャル体</tspan></text>
+ <text id="calligraphy-f10-ja.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3173.6)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">カロリング体</tspan></text>
+ <text id="calligraphy-f10-ja.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3173.6)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">ゴシック体</tspan></text>
+ <text id="calligraphy-f10-ja.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3173.6)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">バタード体</tspan></text>
+ <path id="calligraphy-f10-ja.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ja.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3173.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-ja.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3173.6)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ja.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">フラリッシュイタリック体</tspan></text>
+ <path id="calligraphy-f10-ja.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3173.6)" display="block"/>
+ <path id="calligraphy-f10-ja.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3173.6)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3752.4130030999995" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3752.4130030999995" x="10">最後に</tspan>
</text>
- <rect id="d0e375" display="none" height="1e3px" width="288" y="3863.4" x="10"/>
+ <rect id="d0e375" display="none" height="1e3px" width="288" y="3757.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e375"/>
</flowRegion>
<flowDiv xml:space="preserve">カリグラフィはただ楽しいだけではありません。それは、あなたが見たり行ったりするすべての物の見方を変えてしまうかもしれないくらい、深く精神的な芸術なのです。Inkscape のカリグラフィツールは、そのさわりの部分程度に用いることができるだけですが、それを遊ぶには十分で、本当のデザインに役立つかもしれません。楽しんでください!</flowDiv>
</flowRoot>
- <g transform="translate(0 3929.9)">
+ <g transform="translate(0 3820)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.nl.svg b/share/tutorials/tutorial-calligraphy.nl.svg
index 47ebaa12c..515dff5e9 100644
--- a/share/tutorials/tutorial-calligraphy.nl.svg
+++ b/share/tutorials/tutorial-calligraphy.nl.svg
@@ -142,15 +142,7 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Indien je een tablet hebt en de gevoeligheidsfunctionaliteit wil gebruiken, moet je het toestel configureren. Deze configuratie is slechts éénmalig nodig; de instellingen worden bewaard. Voor het inschakelen van de ondersteuning moet het tablet ingeplugd zijn voor het starten van Inkscape en ga dan naar <flowSpan font-style="italic">Invoerapparaten...</flowSpan> in het menu <flowSpan font-style="italic">Bestand</flowSpan>. Met dit dialoogvenster kan je het voorkeursinstellingen voor het toestel en tablet pen kiezen. Schakel vervolgens over naar het kalligrafiegereedschap en verschakel de knoppen voor druk en hoek in de knoppenbalk. Vanaf nu zal Inkscape deze instellingen onthouden.</flowDiv>
</flowRoot>
<rect id="d0e105" display="none" height="1e3px" width="288" y="740.67" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -169,10 +161,10 @@ now on, Inkscape will remember those settings on startup.
</flowRegion>
<flowDiv xml:space="preserve">Schakel over naar het kalligrafiegereedschap door te drukken op <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, op <flowSpan font-weight="bold">C</flowSpan>, of door te klikken op de knoppenbalk. Op de gereedschapsdetailsbalk zijn er 8 opties zichtbaar: Breedte &amp; Versmalling &amp; Hoek &amp; Oriëntatie &amp; Kapje &amp; Beving &amp; Wegglijden &amp; Massa. Er zijn ook nog twee knoppen voor het inschakelen van druk- en hoekgevoeligheid (voor tekentabletten).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="881.6780007" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="881.6780007" x="10">Breeedte &amp; versmalling</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="881.6582907" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="881.6582907" x="10">Breeedte &amp; versmalling</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="886.88" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="886.86" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
@@ -195,31 +187,31 @@ now on, Inkscape will remember those settings on startup.
</flowRegion>
<flowDiv xml:space="preserve">De penbreedte kan ook afhankelijk zijn van de snelheid, bepaald door de parameter <flowSpan font-style="italic">Versmalling</flowSpan>. Deze parameter kan waarden aannemen van -100 tot 100. Nul betekent dat de breedte onafhankelijk is van de snelheid, positieve waarden maakt snelle pennentrekken smaller, terwijl negatieve waarden snelle pennentrekken breder maakt. De standaardwaarde van 10 zorgt voor middelmatige verdunning van snelle pennentrekken. Hier zijn enekel voorbeelden getekent met breedte=20 en hoek=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-nl.svgtext1987" xml:space="preserve" transform="translate(10 1288.5)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">versmalling = 0 (uniforme breedte) </tspan></text>
- <text id="calligraphy-f02-nl.svgtext1990" xml:space="preserve" transform="translate(10 1288.5)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">versmalling = 10</tspan></text>
- <text id="calligraphy-f02-nl.svgtext1993" xml:space="preserve" transform="translate(10 1288.5)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">versmalling = 40</tspan></text>
- <text id="calligraphy-f02-nl.svgtext1996" xml:space="preserve" transform="translate(10 1288.5)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">versmalling = -20</tspan></text>
- <text id="calligraphy-f02-nl.svgtext1999" xml:space="preserve" transform="translate(10 1288.5)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">versmalling = -60</tspan></text>
- <path id="calligraphy-f02-nl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1288.5)" display="block"/>
- <path id="calligraphy-f02-nl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1288.5)" display="block"/>
+ <text id="calligraphy-f02-nl.svgtext1987" xml:space="preserve" transform="translate(10 1288.4)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">versmalling = 0 (uniforme breedte) </tspan></text>
+ <text id="calligraphy-f02-nl.svgtext1990" xml:space="preserve" transform="translate(10 1288.4)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">versmalling = 10</tspan></text>
+ <text id="calligraphy-f02-nl.svgtext1993" xml:space="preserve" transform="translate(10 1288.4)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">versmalling = 40</tspan></text>
+ <text id="calligraphy-f02-nl.svgtext1996" xml:space="preserve" transform="translate(10 1288.4)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">versmalling = -20</tspan></text>
+ <text id="calligraphy-f02-nl.svgtext1999" xml:space="preserve" transform="translate(10 1288.4)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-nl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">versmalling = -60</tspan></text>
+ <path id="calligraphy-f02-nl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1288.4)" display="block"/>
+ <path id="calligraphy-f02-nl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1288.4)" display="block"/>
<rect id="d0e173" display="none" height="1e3px" width="288" y="1486.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -227,14 +219,14 @@ now on, Inkscape will remember those settings on startup.
</flowRegion>
<flowDiv xml:space="preserve">Voor de fun, stel breedte en verdunning beide in op 100 (maximum) en teken met schokkerige bewegingen om rare natuurlijk neuron-achtige vormen te krijgen:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-nl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1533.8)" display="block"/>
- <path id="calligraphy-f03-nl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1533.8)" display="block"/>
- <path id="calligraphy-f03-nl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1533.8)" display="block"/>
- <path id="calligraphy-f03-nl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1533.8)" display="block"/>
- <path id="calligraphy-f03-nl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1533.8)" display="block"/>
- <path id="calligraphy-f03-nl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1533.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1686.9229587" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1686.9229587" x="10">Hoek &amp; fixatie</tspan>
+ <path id="calligraphy-f03-nl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1533.7)" display="block"/>
+ <path id="calligraphy-f03-nl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1533.7)" display="block"/>
+ <path id="calligraphy-f03-nl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1533.7)" display="block"/>
+ <path id="calligraphy-f03-nl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1533.7)" display="block"/>
+ <path id="calligraphy-f03-nl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1533.7)" display="block"/>
+ <path id="calligraphy-f03-nl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1533.7)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1686.8835387" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1686.8835387" x="10">Hoek &amp; fixatie</tspan>
</text>
<rect id="d0e192" display="none" height="1e3px" width="288" y="1692.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-nl.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-nl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1771.2)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-nl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1771.2)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-nl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1771.2)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-nl.svgtext4096" xml:space="preserve" transform="translate(10 1771.2)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">hoek = 90 gr</tspan></text>
- <text id="calligraphy-f04-nl.svgtext4099" xml:space="preserve" transform="translate(10 1771.2)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">hoek = 30 (standaard)</tspan></text>
- <text id="calligraphy-f04-nl.svgtext4102" xml:space="preserve" transform="translate(10 1771.2)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">hoek = 0</tspan></text>
- <text id="calligraphy-f04-nl.svgtext4105" xml:space="preserve" transform="translate(10 1771.2)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">hoek = -90 gr</tspan></text>
- <path id="calligraphy-f04-nl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-nl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-nl.svgTriangleInS)" transform="translate(10 293.9)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-nl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1771.2) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-nl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1771.1)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-nl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1771.1)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-nl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1771.1)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-nl.svgtext4096" xml:space="preserve" transform="translate(10 1771.1)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">hoek = 90 gr</tspan></text>
+ <text id="calligraphy-f04-nl.svgtext4099" xml:space="preserve" transform="translate(10 1771.1)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">hoek = 30 (standaard)</tspan></text>
+ <text id="calligraphy-f04-nl.svgtext4102" xml:space="preserve" transform="translate(10 1771.1)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">hoek = 0</tspan></text>
+ <text id="calligraphy-f04-nl.svgtext4105" xml:space="preserve" transform="translate(10 1771.1)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-nl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">hoek = -90 gr</tspan></text>
+ <path id="calligraphy-f04-nl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-nl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-nl.svgTriangleInS)" transform="translate(10 293.8)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-nl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1771.1) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-nl.svguse2837" xlink:href="#calligraphy-f04-nl.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-nl.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-nl.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,7 +260,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-nl.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-nl.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-nl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1771.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <path id="calligraphy-f04-nl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1771.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
<rect id="d0e208" display="none" height="1e3px" width="288" y="1923.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -276,19 +268,19 @@ now on, Inkscape will remember those settings on startup.
</flowRegion>
<flowDiv xml:space="preserve">Elke traditionele kalligrafiestijl heeft zijn eigen standaard penhoek. Bijvoorbeeld, het Unciaal handschrift gebruikt een hoek van 25 graden. Bij meer gecompliceerde handschriften en bij gevorderde kalligrafen zal de hoek variëren tijdens het tekenen. Inkscape maakt dit mogelijk door het drukken op de pijltjestoetsen <flowSpan font-weight="bold">omhoog</flowSpan> en <flowSpan font-weight="bold">omlaag</flowSpan> of met een tablet dat hoekgevoeligheid ondersteunt. Voor kalligrafielessen voor beginners werkt het constant van de hoek het beste. Hier zijn voorbeelden van pennentrekken getekend met verschillende hoeken (fixatie=100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-nl.svgtext4984" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">hoek = 30</tspan></text>
- <text id="calligraphy-f05-nl.svgtext4987" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">hoek = 60</tspan></text>
- <text id="calligraphy-f05-nl.svgtext4990" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">hoek = 90</tspan></text>
- <text id="calligraphy-f05-nl.svgtext4993" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">hoek = 0</tspan></text>
- <text id="calligraphy-f05-nl.svgtext4996" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">hoek = 15</tspan></text>
- <text id="calligraphy-f05-nl.svgtext4999" xml:space="preserve" transform="translate(10 2034.2)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">hoek = -45</tspan></text>
- <path id="calligraphy-f05-nl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2034.2)" display="block"/>
- <path id="calligraphy-f05-nl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2034.2)" display="block"/>
- <path id="calligraphy-f05-nl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2034.2)" display="block"/>
- <path id="calligraphy-f05-nl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2034.2)" display="block"/>
- <path id="calligraphy-f05-nl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2034.2)" display="block"/>
- <path id="calligraphy-f05-nl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2034.2)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2190.1" x="10"/>
+ <text id="calligraphy-f05-nl.svgtext4984" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">hoek = 30</tspan></text>
+ <text id="calligraphy-f05-nl.svgtext4987" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">hoek = 60</tspan></text>
+ <text id="calligraphy-f05-nl.svgtext4990" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">hoek = 90</tspan></text>
+ <text id="calligraphy-f05-nl.svgtext4993" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">hoek = 0</tspan></text>
+ <text id="calligraphy-f05-nl.svgtext4996" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">hoek = 15</tspan></text>
+ <text id="calligraphy-f05-nl.svgtext4999" xml:space="preserve" transform="translate(10 2034.1)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-nl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">hoek = -45</tspan></text>
+ <path id="calligraphy-f05-nl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2034.1)" display="block"/>
+ <path id="calligraphy-f05-nl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2034.1)" display="block"/>
+ <path id="calligraphy-f05-nl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2034.1)" display="block"/>
+ <path id="calligraphy-f05-nl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2034.1)" display="block"/>
+ <path id="calligraphy-f05-nl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2034.1)" display="block"/>
+ <path id="calligraphy-f05-nl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2034.1)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2190" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
@@ -307,19 +299,19 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-nl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixatie = 100</tspan></text>
- <text id="calligraphy-f06-nl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixatie = 80</tspan></text>
- <text id="calligraphy-f06-nl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixatie = 0</tspan></text>
- <path id="calligraphy-f06-nl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2318.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-nl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2318.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-nl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2318.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-nl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-nl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-nl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-nl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-nl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-nl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.9) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-nl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-nl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixatie = 100</tspan></text>
+ <text id="calligraphy-f06-nl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixatie = 80</tspan></text>
+ <text id="calligraphy-f06-nl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2318.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-nl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">hoek = 30</tspan><tspan id="calligraphy-f06-nl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixatie = 0</tspan></text>
+ <path id="calligraphy-f06-nl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2318.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-nl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2318.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-nl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2318.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-nl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-nl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-nl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-nl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-nl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-nl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-nl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2318.8) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-nl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-nl.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -328,7 +320,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-nl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-nl.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -337,7 +329,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-nl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-nl.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -346,7 +338,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-nl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-nl.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -355,7 +347,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-nl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-nl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-nl.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -364,7 +356,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-nl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-nl.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -373,7 +365,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-nl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-nl.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -382,7 +374,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-nl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-nl.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -391,7 +383,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-nl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-nl.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -400,7 +392,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-nl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-nl.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -409,7 +401,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-nl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-nl.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -418,7 +410,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-nl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-nl.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -427,7 +419,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-nl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-nl.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -436,7 +428,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-nl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-nl.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -445,7 +437,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-nl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-nl.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -454,7 +446,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-nl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-nl.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -463,7 +455,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-nl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.9) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-nl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2318.8) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-nl.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-nl.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -472,17 +464,17 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-nl.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-nl.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2460.4" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2460.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Vanuit typografisch standpunt zijn maximum fixatie en bijgevolg maximum lijnbreedtecontrast (boven links) de kenmerken van de oude serif lettertypen, zoals Times of Bodoni, omdat deze lettertypen historisch een imitatie waren van vaste-pen-kalligrafie. Nul fixatie en nul breedtecontrast (boven rechts) aan de andere kant, suggereren moderne sans serif lettertypen zoals Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2544.2519727" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2544.2519727" x="10">Beving</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2544.1731307" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2544.1731307" x="10">Beving</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2549.5" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2549.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -493,7 +485,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-nl.svgg3123" font-size="6px" transform="translate(10 2647.9)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-nl.svgg3123" font-size="6px" transform="translate(10 2647.8)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-nl.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-nl.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">traag</tspan></text>
<text id="calligraphy-f07-nl.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-nl.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">gemiddeld</tspan></text>
<text id="calligraphy-f07-nl.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-nl.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">snel</tspan></text>
@@ -507,52 +499,52 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-nl.svguse3153" xlink:href="#calligraphy-f07-nl.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-nl.svguse3151" xlink:href="#calligraphy-f07-nl.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-nl.svguse3149" xlink:href="#calligraphy-f07-nl.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-nl.svgtext3177" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">beving = 0</tspan></text>
- <text id="calligraphy-f07-nl.svgtext3111" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">beving = 10</tspan></text>
- <text id="calligraphy-f07-nl.svgtext1990" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">beving = 30</tspan></text>
- <text id="calligraphy-f07-nl.svgtext2991" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">beving = 50</tspan></text>
- <text id="calligraphy-f07-nl.svgtext2995" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">beving = 70</tspan></text>
- <text id="calligraphy-f07-nl.svgtext1993" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">beving = 90</tspan></text>
- <text id="calligraphy-f07-nl.svgtext1996" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">beving = 20</tspan></text>
- <text id="calligraphy-f07-nl.svgtext2999" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">beving = 40</tspan></text>
- <text id="calligraphy-f07-nl.svgtext3003" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">beving = 60</tspan></text>
- <text id="calligraphy-f07-nl.svgtext3007" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">beving = 80</tspan></text>
- <text id="calligraphy-f07-nl.svgtext1999" xml:space="preserve" transform="translate(10 2617.9)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">beving = 100</tspan></text>
- <path id="calligraphy-f07-nl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2617.9)"/>
- <path id="calligraphy-f07-nl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2617.9)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2895.4026427" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2895.4026427" x="10">Wegglijden &amp; Massa</tspan>
+ <text id="calligraphy-f07-nl.svgtext3177" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">beving = 0</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext3111" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">beving = 10</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext1990" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">beving = 30</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext2991" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">beving = 50</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext2995" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">beving = 70</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext1993" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">beving = 90</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext1996" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">beving = 20</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext2999" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">beving = 40</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext3003" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">beving = 60</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext3007" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">beving = 80</tspan></text>
+ <text id="calligraphy-f07-nl.svgtext1999" xml:space="preserve" transform="translate(10 2617.8)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-nl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">beving = 100</tspan></text>
+ <path id="calligraphy-f07-nl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2617.8)"/>
+ <path id="calligraphy-f07-nl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2617.8)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2895.3238007" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2895.3238007" x="10">Wegglijden &amp; Massa</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2900.6" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2900.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
@@ -566,230 +558,230 @@ splotches. This significantly expands the creative range of the tool.
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Wegglijden</flowSpan> is de weerstand van het papier tegen de beweging van de pen. Standaard staat deze op het minimum (0). Deze parameter vergroten maakt het papier “slipperig”: indien de massa groot is, heeft de pen de neiging om weg te glijden bij scherpe bochten; indien de massa nul is, zorgt een hoge waarde voor wegglijden dat de pen wild wiebelt.</flowDiv>
</flowRoot>
- <rect id="d0e285" display="none" height="1e3px" width="288" y="3019.8" x="10"/>
+ <rect id="d0e285" display="none" height="1e3px" width="288" y="3019.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e285"/>
</flowRegion>
<flowDiv xml:space="preserve">In de natuurkunde is <flowSpan font-style="italic">massa</flowSpan> datgene wat traagheid veroorzaakt. Hoe hoger de massa van het Inkscape kalligrafiegereedschap, hoe meer het achterblijft op je muispointer en hoe meer het scherpe bochten en snelle trekken in je lijn afvlakt. Standaard is deze waarde vrij klein (2) zodat het gereedschap snel en responsief is, maar je kan de massa verhogen om een tragere en effenere pen te krijgen.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3103.6757716999996" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3103.6757716999996" x="10">Kalligrafievoorbeelden</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3103.5969296999997" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3103.5969296999997" x="10">Kalligrafievoorbeelden</tspan>
</text>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="3108.9" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3108.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Nu dat je de basismogelijkheden van het gereedschap kent, kan je proberen om enige echte kalligrafie te maken. Indien je nieuw in deze kunst bent, haal een goed kalligrafieboek en bestudeer het met Inkscape. Deze sectie zal je enkele eenvoudige voorbeelden tonen.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3158.7" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3158.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
</flowRegion>
<flowDiv xml:space="preserve">Om letter te maken moet je eerst en vooral een aantal linialen maken om je te helpen. Indien je in cursief schrijft, voeg enkele schuine hulplijnen toe tussen de twee linialen, bijvoorbeeld:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-nl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-nl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="3278.4" x="10"/>
+ <path id="calligraphy-f08-nl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-nl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3205.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3278.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">Zoom vervolgens in zodat de hoogte tussen de linialen overeenkomt met je meest natuurlijke range van handbewegingen, pas de breedte en hoek aan en schrijven maar!</flowDiv>
</flowRoot>
- <rect id="d0e316" display="none" height="1e3px" width="288" y="3317.5" x="10"/>
+ <rect id="d0e316" display="none" height="1e3px" width="288" y="3317.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e316"/>
</flowRegion>
<flowDiv xml:space="preserve">Wellicht is het eerste ding dat je als beginnende kalligraaf wil doen, de basiselementen van letters oefenen — verticale en horizontale lijnen, ronde lijnen en cursieve lijnen. Hier zijn enkele letteronderdelen van het Unciaal handschrift:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-nl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3373.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-nl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3373.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-nl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3373.6)" display="block"/>
- <path id="calligraphy-f09-nl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3373.6)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3416.7" x="10"/>
+ <path id="calligraphy-f09-nl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3373.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-nl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3373.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-nl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3373.5)" display="block"/>
+ <path id="calligraphy-f09-nl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3373.5)" display="block"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3416.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
</flowRegion>
<flowDiv xml:space="preserve">Enkele bruikbare tips:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3440.4)"/>
- <rect id="d0e335" display="none" height="1e3px" width="258" y="3434.4" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3440.3)"/>
+ <rect id="d0e335" display="none" height="1e3px" width="258" y="3434.3" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e335"/>
</flowRegion>
<flowDiv xml:space="preserve">Indien je hand confortabel zit op het tablet, verplaats het niet. Scroll in plaats daarvan het canvas (<flowSpan font-weight="bold">Ctrl+pijltjestoetsen</flowSpan>) met je linkerhand na het beëindigen van elke letter.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3479.6)"/>
- <rect id="d0e342" display="none" height="1e3px" width="258" y="3473.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3479.5)"/>
+ <rect id="d0e342" display="none" height="1e3px" width="258" y="3473.5" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e342"/>
</flowRegion>
<flowDiv xml:space="preserve">Indien je laatste lijn slecht is, maak deze gewoon ongedaan (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Echter, indien de vorm goed is, maar de positie of grootte is niet perfect, is het beter om tijdelijk naar het selectiegereedschap over te schakelen (<flowSpan font-weight="bold">Spatie</flowSpan>) en verplaats/schaal/roteer zoals gewenst (met de muis of het toetsenbord), druk dan opnieuw op <flowSpan font-weight="bold">Spatie</flowSpan> om naar het kalligrafiegereedschap terug te gaan.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3561.3)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3555.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3561.1)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3555.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Schakel na het beëindigen terug over naar het selectiegereedschap om uniformiteit en letterspatiëring aan te passen. Overdrijf hier echter niet mee: goede kalligrafie moet een wat onregelmatig uitzicht behouden. Weersta de drang om letters en letteronderdelen te kopiëren; elke lijn moet origineel zijn.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3626.4" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3626.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Hier zijn nog enkele lettervoorbeelden:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-nl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-nl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unciaal</tspan></text>
- <text id="calligraphy-f10-nl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolingisch</tspan></text>
- <text id="calligraphy-f10-nl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotisch</tspan></text>
- <text id="calligraphy-f10-nl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bastarda</tspan></text>
- <path id="calligraphy-f10-nl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-nl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3652.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-nl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Vloeiend cursief</tspan></text>
- <path id="calligraphy-f10-nl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3652.3)" display="block"/>
- <path id="calligraphy-f10-nl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3652.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4230.652843999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4230.652843999999" x="10">Conclusie</tspan>
+ <path id="calligraphy-f10-nl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-nl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.1)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unciaal</tspan></text>
+ <text id="calligraphy-f10-nl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.1)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolingisch</tspan></text>
+ <text id="calligraphy-f10-nl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.1)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotisch</tspan></text>
+ <text id="calligraphy-f10-nl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.1)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bastarda</tspan></text>
+ <path id="calligraphy-f10-nl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-nl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3652.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-nl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3652.1)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-nl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Vloeiend cursief</tspan></text>
+ <path id="calligraphy-f10-nl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3652.1)" display="block"/>
+ <path id="calligraphy-f10-nl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3652.1)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4230.495153999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4230.495153999999" x="10">Conclusie</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4235.9" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4235.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Kalligrafie is niet alleen fun. Het is een diep spirituele kunst die je zicht op alles wat je doet en ziet, kan beïnvloeden. Inkscape&apos;s kalligrafiegereedschap kan alleen dienen als een bescheiden introductie. En toch is het leuk om mee te spelen en kan het bruikbaar zijn in echte ontwerpen. Veel plezier!</flowDiv>
</flowRoot>
- <g transform="translate(0 4296.3)">
+ <g transform="translate(0 4296.1)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter57" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.pl.svg b/share/tutorials/tutorial-calligraphy.pl.svg
index 41503708a..6c14357f8 100644
--- a/share/tutorials/tutorial-calligraphy.pl.svg
+++ b/share/tutorials/tutorial-calligraphy.pl.svg
@@ -142,104 +142,96 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e98"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Jeżeli masz tablet i chcesz wykorzystać funkcje czułości, musisz skonfigurować to urządzenie. Wystarczy zrobić to raz, a ustawienia zostaną zachowane. Aby uaktywnić funkcję tabletu, musisz podłączyć tablet do komputera przed uruchomieniem Inkscape&apos;a. Po uruchomieniu Inkscape&apos;a otwórz okno dialogowe „Urządzenia wejściowe…Plik</flowDiv>
</flowRoot>
- <rect id="d0e107" display="none" height="1e3px" width="288" y="734.89" x="10"/>
+ <rect id="d0e103" display="none" height="1e3px" width="288" y="692.65" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e107"/>
+ <use y="0" x="0" xlink:href="#d0e103"/>
</flowRegion>
<flowDiv xml:space="preserve">Narzędzie „Kaligrafia” potrafi być czułe na <flowSpan font-style="italic">szybkość</flowSpan> ruchu (zobacz „Pocienianie” poniżej), więc jeżeli używasz myszy, prawdopodobnie zechcesz wyzerować ten parametr.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="787.1407863999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="787.1407863999999" x="10">Opcje narzędzia „Kaligrafia”</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="744.9010983999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="744.9010983999999" x="10">Opcje narzędzia „Kaligrafia”</tspan>
</text>
- <rect id="d0e119" display="none" height="1e3px" width="288" y="792.34" x="10"/>
+ <rect id="d0e115" display="none" height="1e3px" width="288" y="750.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e119"/>
+ <use y="0" x="0" xlink:href="#d0e115"/>
</flowRegion>
<flowDiv xml:space="preserve">Włącz narzędzie „Kaligrafia”, używając skrótu [ <flowSpan font-weight="bold">Ctrl+F6</flowSpan> ], naciskając klawisz [ <flowSpan font-weight="bold">C</flowSpan> ] bądź klikając ikonę kaligrafii w przyborniku. Na pasku narzędzi zauważysz kilka opcji: Szerokość, Pocienianie, Kąt, Ułożenie, Zakończenie, Drżenie i Masa. Znajdują się tam również dwa przyciski do przełączania siły nacisku tabletu oraz włączenia/wyłączenia czułości nachylenia tabletów do rysowania.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="876.5362783999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="876.5362783999999" x="10">Szerokość i pocienianie</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="834.2768803999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="834.2768803999999" x="10">Szerokość i pocienianie</tspan>
</text>
- <rect id="d0e134" display="none" height="1e3px" width="288" y="881.74" x="10"/>
+ <rect id="d0e130" display="none" height="1e3px" width="288" y="839.48" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e134"/>
+ <use y="0" x="0" xlink:href="#d0e130"/>
</flowRegion>
<flowDiv xml:space="preserve">Ta para opcji kontroluje <flowSpan font-style="italic">szerokość</flowSpan> pióra. Może ona mieć wartość od 1 do 100 i domyślnie jest mierzona w jednostkach relatywnie do wielkości okna edycji, lecz niezależnie od skali przybliżenia. Ma to sens, ponieważ w kaligrafii naturalną „jednostką miary” jest zasięg ruchu ręki i dlatego wygodnie jest mieć szerokość stalówki pióra w stałym stosunku do rozmiaru „obszaru roboczego rysunku”, a nie w rzeczywistych jednostkach, które byłyby zależne od skali przybliżenia. To ustawienie jest opcjonalne i osoby, które wolałyby pracować na jednostkach bezwzględnych niezależnie od skali przybliżenia, mogą je zmienić w oknie preferencji globalnych Inkscape&apos;a, które można otworzyć klikając dwukrotnie ikonę narzędzia „Kaligrafia” znajdującą się w przyborniku.</flowDiv>
</flowRoot>
- <rect id="d0e140" display="none" height="1e3px" width="288" y="1017" x="10"/>
+ <rect id="d0e136" display="none" height="1e3px" width="288" y="974.69" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e140"/>
+ <use y="0" x="0" xlink:href="#d0e136"/>
</flowRegion>
<flowDiv xml:space="preserve">Ponieważ szerokość pióra jest często zmieniana, można ją dostosowywać bez pomocy paska narzędzi, używając klawiszy [ <flowSpan font-weight="bold">strzałka w lewo </flowSpan> ] i [ <flowSpan font-weight="bold">strzałka w prawo</flowSpan> ] lub za pomocą tabletu, który obsługuje funkcję siły nacisku. Najlepsze jest to, że klawisze te działają podczas rysowania, a więc można zmieniać szerokość pióra stopniowo w trakcie ruchu:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-pl.svgtext1944" xml:space="preserve" transform="translate(10 1096.3)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-pl.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">szerokość = 1, rośnie.... osiąga 47, maleje... powraca do 0</tspan></text>
- <path id="calligraphy-f01-pl.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1096.3)" display="block"/>
- <rect id="d0e159" display="none" height="1e3px" width="288" y="1185.5" x="10"/>
+ <text id="calligraphy-f01-pl.svgtext1944" xml:space="preserve" transform="translate(10 1054)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-pl.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">szerokość = 1, rośnie.... osiąga 47, maleje... powraca do 0</tspan></text>
+ <path id="calligraphy-f01-pl.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1054)" display="block"/>
+ <rect id="d0e155" display="none" height="1e3px" width="288" y="1143.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e159"/>
+ <use y="0" x="0" xlink:href="#d0e155"/>
</flowRegion>
<flowDiv xml:space="preserve">Szerokość pióra może również zależeć od szybkości pociągnięcia kontrolowanej za pomocą parametru „<flowSpan font-style="italic">pocienianie</flowSpan>”. Może on przyjmować wartości od -100 do 100. Zero oznacza, że szerokość linii jest niezależna od szybkości, z jaką jest rysowana. Dodatnie wartości powodują, że szybsze pociągnięcia tworzą cieńsze linie, a ujemne odwrotnie – grubsze. Domyślna wartość 10 oznacza umiarkowane pocienianie szybkich pociągnięć. Oto parę przykładów, wszystkie narysowane z szerokością równą 20 i kątem 90 stopni:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-pl.svgtext1987" xml:space="preserve" transform="translate(10 1286.1)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">pocienianie = 0 (jednolita szerokość)</tspan></text>
- <text id="calligraphy-f02-pl.svgtext1990" xml:space="preserve" transform="translate(10 1286.1)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">pocienianie = 10</tspan></text>
- <text id="calligraphy-f02-pl.svgtext1993" xml:space="preserve" transform="translate(10 1286.1)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">pocienianie = 04.</tspan></text>
- <text id="calligraphy-f02-pl.svgtext1996" xml:space="preserve" transform="translate(10 1286.1)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">pocienianie = -20</tspan></text>
- <text id="calligraphy-f02-pl.svgtext1999" xml:space="preserve" transform="translate(10 1286.1)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">pocienianie = -60</tspan></text>
- <path id="calligraphy-f02-pl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1286.1)" display="block"/>
- <path id="calligraphy-f02-pl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1286.1)" display="block"/>
- <rect id="d0e175" display="none" height="1e3px" width="288" y="1484.5" x="10"/>
- <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
- <flowRegion>
- <use y="0" x="0" xlink:href="#d0e175"/>
+ <text id="calligraphy-f02-pl.svgtext1987" xml:space="preserve" transform="translate(10 1243.8)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">pocienianie = 0 (jednolita szerokość)</tspan></text>
+ <text id="calligraphy-f02-pl.svgtext1990" xml:space="preserve" transform="translate(10 1243.8)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">pocienianie = 10</tspan></text>
+ <text id="calligraphy-f02-pl.svgtext1993" xml:space="preserve" transform="translate(10 1243.8)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">pocienianie = 04.</tspan></text>
+ <text id="calligraphy-f02-pl.svgtext1996" xml:space="preserve" transform="translate(10 1243.8)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">pocienianie = -20</tspan></text>
+ <text id="calligraphy-f02-pl.svgtext1999" xml:space="preserve" transform="translate(10 1243.8)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">pocienianie = -60</tspan></text>
+ <path id="calligraphy-f02-pl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1243.8)" display="block"/>
+ <path id="calligraphy-f02-pl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1243.8)" display="block"/>
+ <rect id="d0e171" display="none" height="1e3px" width="288" y="1442.2" x="10"/>
+ <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
+ <flowRegion>
+ <use y="0" x="0" xlink:href="#d0e171"/>
</flowRegion>
<flowDiv xml:space="preserve">Dla zabawy ustaw zarówno szerokość, jak i pocienienie na 100 (maksimum) i gwałtownymi ruchami wykonaj rysunek, a uzyskach naturalistyczne, podobne do neuronów kształty:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-pl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1532)" display="block"/>
- <path id="calligraphy-f03-pl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1532)" display="block"/>
- <path id="calligraphy-f03-pl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1532)" display="block"/>
- <path id="calligraphy-f03-pl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1532)" display="block"/>
- <path id="calligraphy-f03-pl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1532)" display="block"/>
- <path id="calligraphy-f03-pl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1532)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1685.1544624" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1685.1544624" x="10">Kąt i ułożenie</tspan>
+ <path id="calligraphy-f03-pl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1489.7)" display="block"/>
+ <path id="calligraphy-f03-pl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1489.7)" display="block"/>
+ <path id="calligraphy-f03-pl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1489.7)" display="block"/>
+ <path id="calligraphy-f03-pl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1489.7)" display="block"/>
+ <path id="calligraphy-f03-pl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1489.7)" display="block"/>
+ <path id="calligraphy-f03-pl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1489.7)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1642.8556394" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1642.8556394" x="10">Kąt i ułożenie</tspan>
</text>
- <rect id="d0e194" display="none" height="1e3px" width="288" y="1690.4" x="10"/>
+ <rect id="d0e190" display="none" height="1e3px" width="288" y="1648.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e194"/>
+ <use y="0" x="0" xlink:href="#d0e190"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Kąt</flowSpan>, to najważniejszy po szerokości parametr kaligrafii. Jest to kąt stalówki pióra podany w stopniach, w zakresie zmian od 0 (poziomo) do 90 (pionowo, przeciwnie do kierunku ruchu wskazówek zegara) lub do -90 (pionowo, zgodnie z ruchem wskazówek zegara). Zauważ, że jeżeli dla tabletu zostanie włączona wrażliwość na nachylenie, parametr „Kąt” stanie się nieaktywny, a kąt będzie określany przez nachylenie pióra.</flowDiv>
</flowRoot>
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-pl.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-pl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1780.2)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-pl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1780.2)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-pl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1780.2)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-pl.svgtext4096" xml:space="preserve" transform="translate(10 1780.2)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">kąt = 90 stopni</tspan></text>
- <text id="calligraphy-f04-pl.svgtext4099" xml:space="preserve" transform="translate(10 1780.2)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">kąt = 30 (domyślny)</tspan></text>
- <text id="calligraphy-f04-pl.svgtext4102" xml:space="preserve" transform="translate(10 1780.2)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">kąt = 0</tspan></text>
- <text id="calligraphy-f04-pl.svgtext4105" xml:space="preserve" transform="translate(10 1780.2)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">kąt = -90 stopni</tspan></text>
- <path id="calligraphy-f04-pl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-pl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-pl.svgTriangleInS)" transform="translate(10 302.9)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-pl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1780.2) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-pl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1737.9)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-pl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1737.9)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-pl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1737.9)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-pl.svgtext4096" xml:space="preserve" transform="translate(10 1737.9)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">kąt = 90 stopni</tspan></text>
+ <text id="calligraphy-f04-pl.svgtext4099" xml:space="preserve" transform="translate(10 1737.9)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">kąt = 30 (domyślny)</tspan></text>
+ <text id="calligraphy-f04-pl.svgtext4102" xml:space="preserve" transform="translate(10 1737.9)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">kąt = 0</tspan></text>
+ <text id="calligraphy-f04-pl.svgtext4105" xml:space="preserve" transform="translate(10 1737.9)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">kąt = -90 stopni</tspan></text>
+ <path id="calligraphy-f04-pl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-pl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-pl.svgTriangleInS)" transform="translate(10 260.6)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-pl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1737.9) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-pl.svguse2837" xlink:href="#calligraphy-f04-pl.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-pl.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-pl.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,11 +260,11 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-pl.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-pl.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-pl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1780.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e209" display="none" height="1e3px" width="288" y="1932.7" x="10"/>
+ <path id="calligraphy-f04-pl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1737.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e205" display="none" height="1e3px" width="288" y="1890.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e209"/>
+ <use y="0" x="0" xlink:href="#d0e205"/>
</flowRegion>
<flowDiv xml:space="preserve">Each traditional calligraphy style has its own prevalent pen angle. For example, the
Uncial hand uses the angle of 25 degrees. More complex hands and more experienced
@@ -283,29 +275,29 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-pl.svgtext4984" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">kąt = 30</tspan></text>
- <text id="calligraphy-f05-pl.svgtext4987" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">kąt = 60</tspan></text>
- <text id="calligraphy-f05-pl.svgtext4990" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">kąt = 90</tspan></text>
- <text id="calligraphy-f05-pl.svgtext4993" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">kąt = 0</tspan></text>
- <text id="calligraphy-f05-pl.svgtext4996" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">kąt = 15</tspan></text>
- <text id="calligraphy-f05-pl.svgtext4999" xml:space="preserve" transform="translate(10 2033.1)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">kąt = -45</tspan></text>
- <path id="calligraphy-f05-pl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2033.1)" display="block"/>
- <path id="calligraphy-f05-pl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2033.1)" display="block"/>
- <path id="calligraphy-f05-pl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2033.1)" display="block"/>
- <path id="calligraphy-f05-pl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2033.1)" display="block"/>
- <path id="calligraphy-f05-pl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2033.1)" display="block"/>
- <path id="calligraphy-f05-pl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2033.1)" display="block"/>
- <rect id="d0e228" display="none" height="1e3px" width="288" y="2189" x="10"/>
+ <text id="calligraphy-f05-pl.svgtext4984" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">kąt = 30</tspan></text>
+ <text id="calligraphy-f05-pl.svgtext4987" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">kąt = 60</tspan></text>
+ <text id="calligraphy-f05-pl.svgtext4990" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">kąt = 90</tspan></text>
+ <text id="calligraphy-f05-pl.svgtext4993" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">kąt = 0</tspan></text>
+ <text id="calligraphy-f05-pl.svgtext4996" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">kąt = 15</tspan></text>
+ <text id="calligraphy-f05-pl.svgtext4999" xml:space="preserve" transform="translate(10 1990.7)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">kąt = -45</tspan></text>
+ <path id="calligraphy-f05-pl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1990.7)" display="block"/>
+ <path id="calligraphy-f05-pl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1990.7)" display="block"/>
+ <path id="calligraphy-f05-pl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1990.7)" display="block"/>
+ <path id="calligraphy-f05-pl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1990.7)" display="block"/>
+ <path id="calligraphy-f05-pl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1990.7)" display="block"/>
+ <path id="calligraphy-f05-pl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1990.7)" display="block"/>
+ <rect id="d0e224" display="none" height="1e3px" width="288" y="2146.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e228"/>
+ <use y="0" x="0" xlink:href="#d0e224"/>
</flowRegion>
<flowDiv xml:space="preserve">Jak widać, linia jest najcieńsza, kiedy rysuje się ją równolegle do kąta i najszersza, kiedy jest rysowana prostopadle. W przypadku kaligrafii praworęcznej najbardziej naturalne i tradycyjne są dodatnie ustawienia kąta.</flowDiv>
</flowRoot>
- <rect id="d0e231" display="none" height="1e3px" width="288" y="2238.8" x="10"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2196.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e231"/>
+ <use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">The level of contrast between the thinnest and the thickest is controlled by the
<flowSpan font-style="italic">fixation</flowSpan> parameter. The value of 100 means that the angle is always
@@ -319,19 +311,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-pl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2317.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">ułożenie = 100</tspan></text>
- <text id="calligraphy-f06-pl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2317.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">ułożenie = 80</tspan></text>
- <text id="calligraphy-f06-pl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2317.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">ułożenie = 0</tspan></text>
- <path id="calligraphy-f06-pl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2317.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2317.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2317.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2317.9) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-pl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-pl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2275.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">ułożenie = 100</tspan></text>
+ <text id="calligraphy-f06-pl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2275.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">ułożenie = 80</tspan></text>
+ <text id="calligraphy-f06-pl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2275.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">kąt = 30</tspan><tspan id="calligraphy-f06-pl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">ułożenie = 0</tspan></text>
+ <path id="calligraphy-f06-pl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2275.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2275.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2275.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2275.5) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-pl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-pl.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -340,7 +332,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-pl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-pl.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -349,7 +341,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-pl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-pl.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -358,7 +350,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-pl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-pl.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -367,7 +359,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-pl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-pl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-pl.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -376,7 +368,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-pl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-pl.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -385,7 +377,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-pl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-pl.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -394,7 +386,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-pl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-pl.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -403,7 +395,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-pl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-pl.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -412,7 +404,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-pl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-pl.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -421,7 +413,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-pl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-pl.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -430,7 +422,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-pl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-pl.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -439,7 +431,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-pl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-pl.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -448,7 +440,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-pl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-pl.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -457,7 +449,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-pl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-pl.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -466,7 +458,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-pl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-pl.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -475,7 +467,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2317.9) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-pl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2275.5) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-pl.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pl.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -484,20 +476,20 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pl.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pl.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e247" display="none" height="1e3px" width="288" y="2459.4" x="10"/>
+ <rect id="d0e243" display="none" height="1e3px" width="288" y="2417" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e247"/>
+ <use y="0" x="0" xlink:href="#d0e243"/>
</flowRegion>
<flowDiv xml:space="preserve">Określając to typograficznie, maksymalne ułożenie i tym samym maksymalny kontrast szerokości linii (powyżej, po lewej stronie) są cechami antycznych, szeryfowych krojów pisma takich jak Times lub Bodoni, ponieważ te kroje pism, były historycznie naśladownictwem kaligrafii piórem o stałym kącie ustawienia, a ułożenie i kontrast wynoszący 0 (powyżej, po prawej stronie) sugeruje nowoczesne kroje bezszeryfowe takie jak Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2553.9984734000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2553.9984734000004" x="10">Drżenie</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2511.6602294000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2511.6602294000004" x="10">Drżenie</tspan>
</text>
- <rect id="d0e256" display="none" height="1e3px" width="288" y="2559.2" x="10"/>
+ <rect id="d0e252" display="none" height="1e3px" width="288" y="2516.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e256"/>
+ <use y="0" x="0" xlink:href="#d0e252"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Tremor</flowSpan> is intended to give a more natural look to the calligraphy strokes.
Tremor is adjustable in the Controls bar with values ranging from 0 to 100. It will
@@ -505,7 +497,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-pl.svgg3123" font-size="6px" transform="translate(10 2657.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-pl.svgg3123" font-size="6px" transform="translate(10 2615.3)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-pl.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-pl.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">wolno</tspan></text>
<text id="calligraphy-f07-pl.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-pl.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">średnio</tspan></text>
<text id="calligraphy-f07-pl.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-pl.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">szybko</tspan></text>
@@ -519,292 +511,292 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-pl.svguse3153" xlink:href="#calligraphy-f07-pl.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pl.svguse3151" xlink:href="#calligraphy-f07-pl.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pl.svguse3149" xlink:href="#calligraphy-f07-pl.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-pl.svgtext3177" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">drżenie = 0</tspan></text>
- <text id="calligraphy-f07-pl.svgtext3111" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">drżenie = 10</tspan></text>
- <text id="calligraphy-f07-pl.svgtext1990" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">drżenie = 30</tspan></text>
- <text id="calligraphy-f07-pl.svgtext2991" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">drżenie = 50</tspan></text>
- <text id="calligraphy-f07-pl.svgtext2995" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">drżenie = 70</tspan></text>
- <text id="calligraphy-f07-pl.svgtext1993" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">drżenie = 90</tspan></text>
- <text id="calligraphy-f07-pl.svgtext1996" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">drżenie = 20</tspan></text>
- <text id="calligraphy-f07-pl.svgtext2999" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">drżenie =4 0</tspan></text>
- <text id="calligraphy-f07-pl.svgtext3003" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">drżenie = 60</tspan></text>
- <text id="calligraphy-f07-pl.svgtext3007" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">drżenie = 80</tspan></text>
- <text id="calligraphy-f07-pl.svgtext1999" xml:space="preserve" transform="translate(10 2627.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">drżenie = 100</tspan></text>
- <path id="calligraphy-f07-pl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2627.6)"/>
- <path id="calligraphy-f07-pl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2627.6)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2905.1491434000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2905.1491434000004" x="10">Drżenie i Masa</tspan>
+ <text id="calligraphy-f07-pl.svgtext3177" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">drżenie = 0</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext3111" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">drżenie = 10</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext1990" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">drżenie = 30</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext2991" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">drżenie = 50</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext2995" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">drżenie = 70</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext1993" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">drżenie = 90</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext1996" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">drżenie = 20</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext2999" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">drżenie =4 0</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext3003" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">drżenie = 60</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext3007" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">drżenie = 80</tspan></text>
+ <text id="calligraphy-f07-pl.svgtext1999" xml:space="preserve" transform="translate(10 2585.3)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">drżenie = 100</tspan></text>
+ <path id="calligraphy-f07-pl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2585.3)"/>
+ <path id="calligraphy-f07-pl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2585.3)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2862.8108994000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2862.8108994000004" x="10">Drżenie i Masa</tspan>
</text>
- <rect id="d0e278" display="none" height="1e3px" width="288" y="2910.3" x="10"/>
+ <rect id="d0e274" display="none" height="1e3px" width="288" y="2868" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e278"/>
+ <use y="0" x="0" xlink:href="#d0e274"/>
</flowRegion>
<flowDiv xml:space="preserve">W przeciwieństwie do szerokości i kąta, te dwa ostatnie parametry definiują sposób prowadzenia narzędzia, a nie właściwości wizualne. Tym razem nie przedstawimy żadnych ilustracji. Zamiast tego po prostu wypróbuj sam te parametry czynników, by lepiej je zrozumieć.</flowDiv>
</flowRoot>
- <rect id="d0e281" display="none" height="1e3px" width="288" y="2960.3" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2917.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e281"/>
+ <use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Poślizg</flowSpan> to opór, jaki stawia papier podczas ruchu pióra. Domyślnie ustawiona jest minimalna wartość – 0. Zwiększanie tego parametru sprawia, że papier staje się bardziej śliski. Jeśli masa jest duża, pióro przy gwałtownych ruchach ma tendencję do „uciekania”. Jeśli parametr masy jest ustawiony na 0, duży poślizg sprawia, że linia jest pokręcona.</flowDiv>
</flowRoot>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="3031.5" x="10"/>
+ <rect id="d0e282" display="none" height="1e3px" width="288" y="2989.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e286"/>
+ <use y="0" x="0" xlink:href="#d0e282"/>
</flowRegion>
<flowDiv xml:space="preserve">W fizyce <flowSpan font-style="italic">masa</flowSpan> jest elementem powodującym inercję. Im wyższa masa narzędzia „Kaligrafia”, tym wolniej porusza się ono za kursorem myszy oraz bardziej wygładza ostre skręty i nagłe szarpnięcia. Domyślnie wartość ta jest dość mała – 2, więc narzędzie jest szybkie i szybko reaguje, ale można zwiększyć masę, by pióro stało się wolniejsze i „gładsze”.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3115.3753974000006" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3115.3753974000006" x="10">Przykłady kaligrafii</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3073.0371534000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3073.0371534000005" x="10">Przykłady kaligrafii</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="3120.6" x="10"/>
+ <rect id="d0e294" display="none" height="1e3px" width="288" y="3078.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e298"/>
+ <use y="0" x="0" xlink:href="#d0e294"/>
</flowRegion>
<flowDiv xml:space="preserve">Teraz gdy znasz już podstawowe możliwościami narzędzia „Kaligrafia”, możesz spróbować tej sztuki i utworzyć kilka obiektów kaligraficznych. Jeżeli jednak jesteś nowicjuszem w tej sztuce, zakup dobrą książkę o kaligrafii i studiuj ją z Inkscape&apos;em. W tej części zobaczysz jedynie kilka prostych przykładów.</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3181.1" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3138.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e301"/>
+ <use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Przede wszystkim, aby tworzyć litery, należy wprowadzić dwie linijki, które będą prowadnicami. Jeśli chcesz tworzyć pismo pochyłe lub kursywę, dodaj pochylone prowadnice przecinające wprowadzone już linijki, na przykład:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-pl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3239.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3311.8" x="10"/>
+ <path id="calligraphy-f08-pl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3196.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e310" display="none" height="1e3px" width="288" y="3269.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e314"/>
+ <use y="0" x="0" xlink:href="#d0e310"/>
</flowRegion>
<flowDiv xml:space="preserve">Teraz ustaw tak skalę przybliżenia, aby odległość pomiędzy linijkami odpowiadała twojemu najbardziej naturalnemu zakresowi ruchów ręki, dostosuj szerokość i kąt, i startuj!</flowDiv>
</flowRoot>
- <rect id="d0e317" display="none" height="1e3px" width="288" y="3351.3" x="10"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3308.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e317"/>
+ <use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">Probably the first thing you would do as a beginner calligrapher is practice the basic
elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-pl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3407.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3407.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3407.4)" display="block"/>
- <path id="calligraphy-f09-pl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3407.4)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3450.4" x="10"/>
- <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
- <flowRegion>
- <use y="0" x="0" xlink:href="#d0e330"/>
+ <path id="calligraphy-f09-pl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3365)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3365)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3365)" display="block"/>
+ <path id="calligraphy-f09-pl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3365)" display="block"/>
+ <rect id="d0e326" display="none" height="1e3px" width="288" y="3408.1" x="10"/>
+ <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
+ <flowRegion>
+ <use y="0" x="0" xlink:href="#d0e326"/>
</flowRegion>
<flowDiv xml:space="preserve">Kilka użytecznych wskazówek:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3474.6)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3468.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3432.2)"/>
+ <rect id="d0e332" display="none" height="1e3px" width="258" y="3426.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e336"/>
+ <use y="0" x="0" xlink:href="#d0e332"/>
</flowRegion>
<flowDiv xml:space="preserve">Jeżeli prawa ręka spoczywa wygodnie na tablecie, nie przemieszczaj jej. Do przewinięcia obszaru roboczego po skończeniu litery, użyj lewej ręki, wybierając nią skrót [ <flowSpan font-weight="bold">Ctrl+strzałki</flowSpan> ].</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3523.7)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3517.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3481.3)"/>
+ <rect id="d0e339" display="none" height="1e3px" width="258" y="3475.3" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e343"/>
+ <use y="0" x="0" xlink:href="#d0e339"/>
</flowRegion>
<flowDiv xml:space="preserve">Jeśli twoje ostatnie pociągnięcie okazało się złe, po prostu cofnij je za pomocą skrótu [ <flowSpan font-weight="bold">Ctrl+Z</flowSpan> ]. Jednak jeśli jego kształt jest dobry, a tylko pozycja czy wielkość są nieznacznie wadliwe, lepiej będzie chwilowo przełączyć się na narzędzie „Wskaźnik” [ <flowSpan font-weight="bold">Spacja</flowSpan> ] i za pomocą myszy lub klawiszy – w zależności od potrzeby – popchnąć/przeskalować/obrócić obiekt, a następnie ponownie nacisnąć [ <flowSpan font-weight="bold">Spację</flowSpan> ], by powrócić do narzędzia „Kaligrafia”.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3616.2)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3610.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3573.8)"/>
+ <rect id="d0e352" display="none" height="1e3px" width="258" y="3567.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e356"/>
+ <use y="0" x="0" xlink:href="#d0e352"/>
</flowRegion>
<flowDiv xml:space="preserve">Kiedy utworzysz słowo, włącz ponownie narzędzie „Wskaźnik”, aby wyregulować jednolitość osi i odległości między literami. Nie należy z tym przesadzać - dobra kaligrafia musi zachować w wyglądzie nieco nieregularności odręcznego pisma. Oprzyj się pokusie kopiowania liter i ich elementów - każda kreska musi być autentyczna.</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3681.4" x="10"/>
+ <rect id="d0e356" display="none" height="1e3px" width="288" y="3639" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e360"/>
+ <use y="0" x="0" xlink:href="#d0e356"/>
</flowRegion>
<flowDiv xml:space="preserve">A oto kilka przykładów liternictwa:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-pl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3707.6)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Odręczne pismo uncjalne</tspan></text>
- <text id="calligraphy-f10-pl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3707.6)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Odręczne pismo karolińskie</tspan></text>
- <text id="calligraphy-f10-pl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3707.6)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Odręczne pismo gotyckie</tspan></text>
- <text id="calligraphy-f10-pl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3707.6)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Odręczne pismo Bâtarde (francuski gotyk)</tspan></text>
- <path id="calligraphy-f10-pl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3707.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3707.6)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Odręczne pochyłe pismo ornamentowe</tspan></text>
- <path id="calligraphy-f10-pl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3707.6)" display="block"/>
- <path id="calligraphy-f10-pl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3707.6)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4285.951715800001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4285.951715800001" x="10">Podsumowanie</tspan>
+ <path id="calligraphy-f10-pl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3665.1)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Odręczne pismo uncjalne</tspan></text>
+ <text id="calligraphy-f10-pl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3665.1)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Odręczne pismo karolińskie</tspan></text>
+ <text id="calligraphy-f10-pl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3665.1)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Odręczne pismo gotyckie</tspan></text>
+ <text id="calligraphy-f10-pl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3665.1)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Odręczne pismo Bâtarde (francuski gotyk)</tspan></text>
+ <path id="calligraphy-f10-pl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3665.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3665.1)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Odręczne pochyłe pismo ornamentowe</tspan></text>
+ <path id="calligraphy-f10-pl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3665.1)" display="block"/>
+ <path id="calligraphy-f10-pl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3665.1)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4243.514914800001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4243.514914800001" x="10">Podsumowanie</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4291.2" x="10"/>
+ <rect id="d0e375" display="none" height="1e3px" width="288" y="4248.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e379"/>
+ <use y="0" x="0" xlink:href="#d0e375"/>
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafia nie jest tylko zabawą. To głęboko uduchowiona sztuka, która może zmienić twój pogląd na wszystko, co robisz i widzisz. Narzędzie kaligrafii Inkscape&apos;a może ci posłużyć tylko jako skromne wprowadzenie. Poza tym to przecież bardzo przyjemne pobawić się nim, a może być użyteczne w rzeczywistym projekcie. Miłej zabawy!</flowDiv>
</flowRoot>
- <g transform="translate(0 4351.6)">
+ <g transform="translate(0 4309.1)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter57" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.pt.svg b/share/tutorials/tutorial-calligraphy.pt.svg
index da76f65c2..9b424335b 100644
--- a/share/tutorials/tutorial-calligraphy.pt.svg
+++ b/share/tutorials/tutorial-calligraphy.pt.svg
@@ -161,10 +161,10 @@
</flowRegion>
<flowDiv xml:space="preserve">Pode-se mudar para a ferramenta de Caligrafia pressionando <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, pressionando a tecla <flowSpan font-weight="bold">C</flowSpan> ou clicando no botão na Barra de Ferramentas. Na barra de Controlos da Ferramenta existem 7 opções: Largura, Estreitamento, Ângulo, Fixação, Pontas, Tremido, Ondulado e Inércia. Também existem 2 botões para ativar e desativar a sensibilidade à pressão e inclinação da caneta (para a mesa digitalizadora).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="937.9329204" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="937.9329204" x="10">Largura e Estreitamento</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="937.9132103999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="937.9132103999999" x="10">Largura e Estreitamento</tspan>
</text>
- <rect id="d0e135" display="none" height="1e3px" width="288" y="943.13" x="10"/>
+ <rect id="d0e135" display="none" height="1e3px" width="288" y="943.11" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e135"/>
@@ -180,38 +180,38 @@
</flowRoot>
<text id="calligraphy-f01-pt.svgtext1944" xml:space="preserve" transform="translate(10 1178.5)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-pt.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">largura=1 a crescer... atingindo 47 e a diminuir... para 0</tspan></text>
<path id="calligraphy-f01-pt.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1178.5)" display="block"/>
- <rect id="d0e160" display="none" height="1e3px" width="288" y="1267.5" x="10"/>
+ <rect id="d0e160" display="none" height="1e3px" width="288" y="1267.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e160"/>
</flowRegion>
<flowDiv xml:space="preserve">A largura do traço da caneta pode também depender da velocidade, controlada pelo parâmetro <flowSpan font-style="italic">Estreitamento</flowSpan>. Este parâmetro pode ter valores entre -100 e 100; 0 significa que a largura é independente da velocidade, valores positivos fazem traços rápidos mais finos, valores negativos fazem traços rápidos mais amplos. O valor padrão de 10 significa finura moderada de traços rápidos. Aqui estão alguns exemplos, todos desenhados com largura=20 e ângulo=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-pt.svgtext1987" xml:space="preserve" transform="translate(10 1357.5)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">estreitamento = 0 (largura uniforme) </tspan></text>
- <text id="calligraphy-f02-pt.svgtext1990" xml:space="preserve" transform="translate(10 1357.5)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">estreitamento = 10</tspan></text>
- <text id="calligraphy-f02-pt.svgtext1993" xml:space="preserve" transform="translate(10 1357.5)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">estreitamento = 40</tspan></text>
- <text id="calligraphy-f02-pt.svgtext1996" xml:space="preserve" transform="translate(10 1357.5)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">estreitamento = -20</tspan></text>
- <text id="calligraphy-f02-pt.svgtext1999" xml:space="preserve" transform="translate(10 1357.5)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">estreitamento = -60</tspan></text>
- <path id="calligraphy-f02-pt.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1357.5)" display="block"/>
- <path id="calligraphy-f02-pt.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1357.5)" display="block"/>
+ <text id="calligraphy-f02-pt.svgtext1987" xml:space="preserve" transform="translate(10 1357.4)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">estreitamento = 0 (largura uniforme) </tspan></text>
+ <text id="calligraphy-f02-pt.svgtext1990" xml:space="preserve" transform="translate(10 1357.4)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">estreitamento = 10</tspan></text>
+ <text id="calligraphy-f02-pt.svgtext1993" xml:space="preserve" transform="translate(10 1357.4)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">estreitamento = 40</tspan></text>
+ <text id="calligraphy-f02-pt.svgtext1996" xml:space="preserve" transform="translate(10 1357.4)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">estreitamento = -20</tspan></text>
+ <text id="calligraphy-f02-pt.svgtext1999" xml:space="preserve" transform="translate(10 1357.4)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">estreitamento = -60</tspan></text>
+ <path id="calligraphy-f02-pt.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1357.4)" display="block"/>
+ <path id="calligraphy-f02-pt.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1357.4)" display="block"/>
<rect id="d0e176" display="none" height="1e3px" width="288" y="1555.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -219,14 +219,14 @@
</flowRegion>
<flowDiv xml:space="preserve">Por diversão, configure tanto a Largura como o Estreitamento com o valor 100 (máximo) e desenhe com movimentos bruscos para obter formas estranhamente naturais, parecidas com neurónios:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-pt.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1602.8)" display="block"/>
- <path id="calligraphy-f03-pt.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1602.8)" display="block"/>
- <path id="calligraphy-f03-pt.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1602.8)" display="block"/>
- <path id="calligraphy-f03-pt.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1602.8)" display="block"/>
- <path id="calligraphy-f03-pt.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1602.8)" display="block"/>
- <path id="calligraphy-f03-pt.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1602.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1755.9350644" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1755.9350644" x="10">Ângulo e Fixação</tspan>
+ <path id="calligraphy-f03-pt.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1602.7)" display="block"/>
+ <path id="calligraphy-f03-pt.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1602.7)" display="block"/>
+ <path id="calligraphy-f03-pt.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1602.7)" display="block"/>
+ <path id="calligraphy-f03-pt.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1602.7)" display="block"/>
+ <path id="calligraphy-f03-pt.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1602.7)" display="block"/>
+ <path id="calligraphy-f03-pt.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1602.7)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1755.8956434000002" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1755.8956434000002" x="10">Ângulo e Fixação</tspan>
</text>
<rect id="d0e195" display="none" height="1e3px" width="288" y="1761.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -261,7 +261,7 @@
<path id="calligraphy-f04-pt.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
<path id="calligraphy-f04-pt.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1840.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e211" display="none" height="1e3px" width="288" y="1993.2" x="10"/>
+ <rect id="d0e211" display="none" height="1e3px" width="288" y="1993.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e211"/>
@@ -280,7 +280,7 @@
<path id="calligraphy-f05-pt.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2115.1)" display="block"/>
<path id="calligraphy-f05-pt.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2115.1)" display="block"/>
<path id="calligraphy-f05-pt.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2115.1)" display="block"/>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2271.3" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2271.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-pt.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-pt.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixação = 100</tspan></text>
- <text id="calligraphy-f06-pt.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixação = 80</tspan></text>
- <text id="calligraphy-f06-pt.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.7)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixação = 0</tspan></text>
- <path id="calligraphy-f06-pt.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2400.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2400.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2400.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.7) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-pt.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-pt.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixação = 100</tspan></text>
+ <text id="calligraphy-f06-pt.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixação = 80</tspan></text>
+ <text id="calligraphy-f06-pt.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2400.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixação = 0</tspan></text>
+ <path id="calligraphy-f06-pt.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2400.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2400.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2400.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2400.6) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-pt.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-pt.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-pt.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-pt.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-pt.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-pt.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-pt.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-pt.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-pt.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-pt.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-pt.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-pt.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-pt.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-pt.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-pt.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-pt.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-pt.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-pt.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-pt.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-pt.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-pt.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-pt.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-pt.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-pt.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-pt.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-pt.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-pt.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-pt.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-pt.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-pt.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-pt.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-pt.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-pt.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-pt.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-pt.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-pt.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-pt.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-pt.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-pt.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-pt.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-pt.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-pt.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-pt.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-pt.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-pt.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-pt.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-pt.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-pt.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-pt.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.7) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-pt.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2400.6) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-pt.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,24 +464,24 @@
<path id="calligraphy-f06-pt.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e249" display="none" height="1e3px" width="288" y="2542.5" x="10"/>
+ <rect id="d0e249" display="none" height="1e3px" width="288" y="2542.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e249"/>
</flowRegion>
<flowDiv xml:space="preserve">Tipograficamente falando, fixação máxima, e por sua vez, contraste da largura do traço máximo (acima à esquerda) são as características de antigas fontes serifadas, tais como a Times ou Bodoni (porque estas fontes são historicamente uma imitação da caligrafia com caneta fixa). A fixação a zero e contraste da largura também a zero (acima à direita), por outro lado, sugere fontes sem serifas modernas como a Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2635.6202294000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2635.6202294000004" x="10">Tremido</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2635.5413884" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2635.5413884" x="10">Tremido</tspan>
</text>
- <rect id="d0e258" display="none" height="1e3px" width="288" y="2640.8" x="10"/>
+ <rect id="d0e258" display="none" height="1e3px" width="288" y="2640.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e258"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Tremido</flowSpan> tem como função dar um visual mais natural aos traços caligráficos. O Tremido é ajustável na barra Controlos da Ferramenta com valores que variam de 0 até 100. Isto afeta os traços produzindo coisas como uma leve irregularidade até manchas e marcas violentas. Isto expande significativamente a variedade criativa da ferramenta.</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-pt.svgg3123" font-size="6px" transform="translate(10 2739.4)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-pt.svgg3123" font-size="6px" transform="translate(10 2739.3)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-pt.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-pt.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">lento</tspan></text>
<text id="calligraphy-f07-pt.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-pt.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">médio</tspan></text>
<text id="calligraphy-f07-pt.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-pt.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">rápido</tspan></text>
@@ -495,289 +495,289 @@
<use id="calligraphy-f07-pt.svguse3153" xlink:href="#calligraphy-f07-pt.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pt.svguse3151" xlink:href="#calligraphy-f07-pt.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pt.svguse3149" xlink:href="#calligraphy-f07-pt.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-pt.svgtext3177" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremido = 0</tspan></text>
- <text id="calligraphy-f07-pt.svgtext3111" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremido = 10</tspan></text>
- <text id="calligraphy-f07-pt.svgtext1990" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremido = 30</tspan></text>
- <text id="calligraphy-f07-pt.svgtext2991" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremido = 50</tspan></text>
- <text id="calligraphy-f07-pt.svgtext2995" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremido = 70</tspan></text>
- <text id="calligraphy-f07-pt.svgtext1993" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremido = 90</tspan></text>
- <text id="calligraphy-f07-pt.svgtext1996" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremido = 20</tspan></text>
- <text id="calligraphy-f07-pt.svgtext2999" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremido = 40</tspan></text>
- <text id="calligraphy-f07-pt.svgtext3003" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremido = 60</tspan></text>
- <text id="calligraphy-f07-pt.svgtext3007" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremido = 80</tspan></text>
- <text id="calligraphy-f07-pt.svgtext1999" xml:space="preserve" transform="translate(10 2709.4)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremido = 100</tspan></text>
- <path id="calligraphy-f07-pt.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2709.4)"/>
- <path id="calligraphy-f07-pt.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2709.4)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2986.9076184000005" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2986.9076184000005" x="10">Ondulado e Inércia</tspan>
+ <text id="calligraphy-f07-pt.svgtext3177" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremido = 0</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext3111" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremido = 10</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext1990" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremido = 30</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext2991" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremido = 50</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext2995" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremido = 70</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext1993" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremido = 90</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext1996" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremido = 20</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext2999" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremido = 40</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext3003" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremido = 60</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext3007" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremido = 80</tspan></text>
+ <text id="calligraphy-f07-pt.svgtext1999" xml:space="preserve" transform="translate(10 2709.3)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremido = 100</tspan></text>
+ <path id="calligraphy-f07-pt.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2709.3)"/>
+ <path id="calligraphy-f07-pt.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2709.3)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2986.8287774" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2986.8287774" x="10">Ondulado e Inércia</tspan>
</text>
- <rect id="d0e279" display="none" height="1e3px" width="288" y="2992.1" x="10"/>
+ <rect id="d0e279" display="none" height="1e3px" width="288" y="2992" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e279"/>
</flowRegion>
<flowDiv xml:space="preserve">Ao contrário da largura e do ângulo, estes dois últimos parâmetros definem como a ferramenta &quot;sente&quot; em vez de afetar a sua saída visual. Por isso não haverá ilustrações nesta secção; em substituição, teste-os para ter uma ideia melhor como funciona.</flowDiv>
</flowRoot>
- <rect id="d0e282" display="none" height="1e3px" width="288" y="3042.1" x="10"/>
+ <rect id="d0e282" display="none" height="1e3px" width="288" y="3042" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e282"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Ondulado</flowSpan> é a resistência do papel ao movimento da caneta. O valor padrão está no mínimo (0) e aumentar este parâmetro torna o papel &quot;escorregadio&quot;: se a inércia é grande, a caneta tende a fugir em viragens bruscas; se a inércia for 0, um valor alto de Ondulado faz a caneta mover-se violentamente.</flowDiv>
</flowRoot>
- <rect id="d0e287" display="none" height="1e3px" width="288" y="3101.2" x="10"/>
+ <rect id="d0e287" display="none" height="1e3px" width="288" y="3101.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e287"/>
</flowRegion>
<flowDiv xml:space="preserve">Em física, <flowSpan font-style="italic">massa</flowSpan> é o que causa inércia; quanto maior a inércia da ferramenta de caligrafia do Inkscape, maior a demora do traço que segue o cursor do rato e maior é a suavização das viragens bruscas do traço. Por padrão este valor é bastante pequeno (2), o suficiente para que a ferramenta seja rápida e sensível, mas pode-se aumentar a inércia para obter uma caneta mais lenta e suave.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3185.2243414000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3185.2243414000004" x="10">Exemplos de Caligrafia</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3185.1455004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3185.1455004" x="10">Exemplos de Caligrafia</tspan>
</text>
- <rect id="d0e299" display="none" height="1e3px" width="288" y="3190.4" x="10"/>
+ <rect id="d0e299" display="none" height="1e3px" width="288" y="3190.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e299"/>
</flowRegion>
<flowDiv xml:space="preserve">Agora que conhece as capacidades básicas da ferramenta, pode tentar criar alguma caligrafia. Se é novo nesta arte, adquira um bom livro de caligrafia e estude-o aplicando os conhecimentos no Inkscape. Esta secção mostra apenas alguns exemplos simples.</flowDiv>
</flowRoot>
- <rect id="d0e302" display="none" height="1e3px" width="288" y="3240.5" x="10"/>
+ <rect id="d0e302" display="none" height="1e3px" width="288" y="3240.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e302"/>
</flowRegion>
<flowDiv xml:space="preserve">Antes de mais, para fazer letras é necessário criar um par de guias para servirem de orientação. Se quiser escrever uma caligrafia inclinada ou cursiva, acrescente também algumas guias inclinadas através das réguas, por exemplo:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-pt.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e315" display="none" height="1e3px" width="288" y="3371.2" x="10"/>
+ <path id="calligraphy-f08-pt.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3298.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e315" display="none" height="1e3px" width="288" y="3371.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e315"/>
</flowRegion>
<flowDiv xml:space="preserve">Então aproxime a vista de modo que a altura entre as guias corresponda ao alcance mais natural do movimento da sua mão, ajuste a largura e o ângulo e estará pronto para começar!</flowDiv>
</flowRoot>
- <rect id="d0e318" display="none" height="1e3px" width="288" y="3410.5" x="10"/>
+ <rect id="d0e318" display="none" height="1e3px" width="288" y="3410.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e318"/>
</flowRegion>
<flowDiv xml:space="preserve">Provavelmente a primeira coisa que pode fazer como um calígrafo iniciante é praticar os elementos básicos das letras — barras verticais e horizontais, traços redondos e barras inclinadas. Aqui estão alguns elementos das letras da caligrafia Uncial:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-pt.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3468.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pt.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3468.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pt.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3468.6)" display="block"/>
- <path id="calligraphy-f09-pt.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3468.6)" display="block"/>
- <rect id="d0e331" display="none" height="1e3px" width="288" y="3511.6" x="10"/>
+ <path id="calligraphy-f09-pt.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3468.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pt.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3468.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pt.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3468.5)" display="block"/>
+ <path id="calligraphy-f09-pt.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3468.5)" display="block"/>
+ <rect id="d0e331" display="none" height="1e3px" width="288" y="3511.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e331"/>
</flowRegion>
<flowDiv xml:space="preserve">Várias dicas úteis:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3534.1)"/>
- <rect id="d0e337" display="none" height="1e3px" width="258" y="3528.1" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3534)"/>
+ <rect id="d0e337" display="none" height="1e3px" width="258" y="3528" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e337"/>
</flowRegion>
<flowDiv xml:space="preserve">Se a sua mão está confortável na mesa digitalizadora, não a movimente. Em vez disso, desloque a área de desenho (<flowSpan font-weight="bold">Ctrl+setas</flowSpan>) com a sua mão esquerda depois de terminar cada letra.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3582.6)"/>
- <rect id="d0e344" display="none" height="1e3px" width="258" y="3576.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3582.5)"/>
+ <rect id="d0e344" display="none" height="1e3px" width="258" y="3576.5" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e344"/>
</flowRegion>
<flowDiv xml:space="preserve">Se o seu último traço não foi bom, apenas desfaça-o (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Caso a forma tenha ficado boa mas a posição ou tamanho estão ligeiramente diferentes, é melhor usar a ferramenta de Selecionar temporariamente (<flowSpan font-weight="bold">Barra de espaço</flowSpan>) e então mova-a levemente/amplie/rode-a conforme necessário (usando o rato ou o teclado) e depois pressione a tecla <flowSpan font-weight="bold">Barra de espaço</flowSpan> novamente para retornar à ferramenta de Caligrafia.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3664.6)"/>
- <rect id="d0e357" display="none" height="1e3px" width="258" y="3658.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3664.5)"/>
+ <rect id="d0e357" display="none" height="1e3px" width="258" y="3658.5" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e357"/>
</flowRegion>
<flowDiv xml:space="preserve">Após terminar uma palavra, mude para a ferramenta de Selecionar novamente para ajustar a uniformidade das barras e o espaçamento entre as letras. Porém não exagere. Uma boa caligrafia deve conservar um visual manuscrito um pouco irregular. Resista à tentação de copiar as letras e seus elementos, cada traço deve ser original.</flowDiv>
</flowRoot>
- <rect id="d0e361" display="none" height="1e3px" width="288" y="3730" x="10"/>
+ <rect id="d0e361" display="none" height="1e3px" width="288" y="3729.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e361"/>
</flowRegion>
<flowDiv xml:space="preserve">E aqui estão alguns exemplos completos de letras:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-pt.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pt.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3756)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Caligrafia Uncial</tspan></text>
- <text id="calligraphy-f10-pt.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3756)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Caligrafia Carolíngia</tspan></text>
- <text id="calligraphy-f10-pt.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3756)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Caligrafia Gótica</tspan></text>
- <text id="calligraphy-f10-pt.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3756)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Caligrafia Bastarda</tspan></text>
- <path id="calligraphy-f10-pt.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3756)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pt.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3756)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Caligrafia Itálica Floreada</tspan></text>
- <path id="calligraphy-f10-pt.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3756)" display="block"/>
- <path id="calligraphy-f10-pt.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3756)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4334.395482700001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4334.395482700001" x="10">Conclusão</tspan>
+ <path id="calligraphy-f10-pt.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pt.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3755.9)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Caligrafia Uncial</tspan></text>
+ <text id="calligraphy-f10-pt.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3755.9)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Caligrafia Carolíngia</tspan></text>
+ <text id="calligraphy-f10-pt.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3755.9)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Caligrafia Gótica</tspan></text>
+ <text id="calligraphy-f10-pt.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3755.9)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Caligrafia Bastarda</tspan></text>
+ <path id="calligraphy-f10-pt.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3755.9)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pt.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3755.9)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Caligrafia Itálica Floreada</tspan></text>
+ <path id="calligraphy-f10-pt.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3755.9)" display="block"/>
+ <path id="calligraphy-f10-pt.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3755.9)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4334.237789700001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4334.237789700001" x="10">Conclusão</tspan>
</text>
- <rect id="d0e380" display="none" height="1e3px" width="288" y="4339.6" x="10"/>
+ <rect id="d0e380" display="none" height="1e3px" width="288" y="4339.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e380"/>
</flowRegion>
<flowDiv xml:space="preserve">A caligrafia não é apenas divertida, é uma arte profundamente espiritual que pode transformar a sua visão sobre tudo o que faz e vê. A ferramenta de caligrafia do Inkscape pode servir apenas como uma modesta introdução a esta arte. E ainda assim é muito agradável utilizá-la e pode ser útil na criação de desenhos profissionais. Divirta-se!</flowDiv>
</flowRoot>
- <g transform="translate(0 4409.3)">
+ <g transform="translate(0 4409.1)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" style="color-interpolation-filters:sRGB" height="1.2" width="1.2" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.pt_BR.svg b/share/tutorials/tutorial-calligraphy.pt_BR.svg
index aee830df5..ae3f33974 100644
--- a/share/tutorials/tutorial-calligraphy.pt_BR.svg
+++ b/share/tutorials/tutorial-calligraphy.pt_BR.svg
@@ -142,30 +142,22 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Se você tem uma mesa digitalizadora e gostaria de utilizar os recursos de sensibilidade, você vai ter que configurar seu dispositivo. Esta configuração precisará ser feita apenas uma vez para ser gravada. Para ativar este suporte você tem que conectar a mesa digitalizadora antes de iniciar o Inkscape e então abrir a caixa de diálogos <flowSpan font-style="italic">Dispositivos de Entrada</flowSpan> através do menu <flowSpan font-style="italic">Arquivo</flowSpan>. Com a caixa de diálogos aberta você pode escolher o dispositivo e configurações preferíveis para sua mesa digitalizadora. Finalmente, depois de escolher estas configurações, mude para a ferramenta de <flowSpan font-style="italic">Caligrafia</flowSpan> e ative os botões de pressão e inclinação na barra Controle de Ferramentas. A partir de agora, o Inkscape gravará estas configurações toda vez que iniciar.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="761.75" x="10"/>
+ <rect id="d0e108" display="none" height="1e3px" width="288" y="783.35" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e105"/>
+ <use y="0" x="0" xlink:href="#d0e108"/>
</flowRegion>
<flowDiv xml:space="preserve">A caneta de caligrafia do Inkscape pode ser sensível à <flowSpan font-style="italic">velocidade</flowSpan> do traço (veja &quot;Sinuoso&quot; abaixo), então, se você estiver usando um mouse, você provavelmente vai querer zerar este parâmetro.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="813.8935999999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="813.8935999999999" x="10">Opções da ferramenta de Caligrafia</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="835.4939099999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="835.4939099999999" x="10">Opções da ferramenta de Caligrafia</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="819.09" x="10"/>
+ <rect id="d0e120" display="none" height="1e3px" width="288" y="840.69" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e117"/>
+ <use y="0" x="0" xlink:href="#d0e120"/>
</flowRegion>
<flowDiv xml:space="preserve">Switch to the Calligraphy tool by pressing <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, pressing the <flowSpan font-weight="bold">C</flowSpan>
key, or by clicking on its toolbar button. On the top toolbar, you will
@@ -174,79 +166,79 @@ There are also two buttons to toggle tablet Pressure and Tilt sensitivity on and
drawing tablets).
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="892.3090699999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="892.3090699999999" x="10">Largura &amp; Sinuoso</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="913.9093799999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="913.9093799999999" x="10">Largura &amp; Sinuoso</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="897.51" x="10"/>
+ <rect id="d0e135" display="none" height="1e3px" width="288" y="919.11" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e132"/>
+ <use y="0" x="0" xlink:href="#d0e135"/>
</flowRegion>
<flowDiv xml:space="preserve">Este par de opções controla a <flowSpan font-style="italic">largura</flowSpan> de sua caneta. A largura pode variar de 1 a 100 e (por padrão) é medida em unidades relativas ao tamanho de sua janela de edição, independente do zoom. Isto faz sentido, porque a &quot;unidade de medida&quot; natural em caligrafia é o alcance do movimento de sua mão, e portanto é conveniente ter a largura da ponta de sua caneta em constante proporção ao tamanho de sua &quot;tábua de desenho&quot; e não em alguma unidade real a qual poderia depender do zoom. Entretanto este comportamento é opcional, de modo que ele pode ser alterado para quem prefere unidades absolutas qualquer que seja o zoom. Para mudar para esta configuração, use a caixa de verificação (checkbox) na página Preferências da ferramenta (você pode abri-la com clique duplo no botão da ferramenta).</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="1042.7" x="10"/>
+ <rect id="d0e141" display="none" height="1e3px" width="288" y="1064.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e138"/>
+ <use y="0" x="0" xlink:href="#d0e141"/>
</flowRegion>
<flowDiv xml:space="preserve">Uma vez que a largura da caneta é alterada com freqüência, você pode ajustá-la sem ter que ir à barra Controles de Ferramenta, usando as setas <flowSpan font-weight="bold">esquerda</flowSpan> e <flowSpan font-weight="bold">direita</flowSpan> ou com uma mesa digitalizadora que suporte a função de sensibilidade à pressão. A melhor coisa sobre estas teclas é que elas funcionam enquanto você desenha, de modo que você pode mudar a largura de sua caneta gradualmente no meio do traço:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-pt_BR.svgtext1944" xml:space="preserve" transform="translate(10 1132.5)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-pt_BR.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
- <path id="calligraphy-f01-pt_BR.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1132.5)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1221.4" x="10"/>
+ <text id="calligraphy-f01-pt_BR.svgtext1944" xml:space="preserve" transform="translate(10 1154)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-pt_BR.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
+ <path id="calligraphy-f01-pt_BR.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1154)" display="block"/>
+ <rect id="d0e160" display="none" height="1e3px" width="288" y="1243" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e157"/>
+ <use y="0" x="0" xlink:href="#d0e160"/>
</flowRegion>
<flowDiv xml:space="preserve">A largura do traço da caneta pode também depender da velocidade, controlada pelo parâmetro <flowSpan font-style="italic">Sinuoso</flowSpan>. Este parâmetro pode tomar valores entre -100 e 100; zero significa que a largura é independente da velocidade, valores positivos fazem traços rápidos mais finos, valores negativos fazem traços rápidos mais amplos. O padrão de 10 significa finura moderada de traços rápidos. Aqui estão alguns exemplos, todos desenhados com largura=20 e ângulo=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-pt_BR.svgtext1987" xml:space="preserve" transform="translate(10 1311.4)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">sinuoso = 0 (largura uniforme)</tspan></text>
- <text id="calligraphy-f02-pt_BR.svgtext1990" xml:space="preserve" transform="translate(10 1311.4)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
- <text id="calligraphy-f02-pt_BR.svgtext1993" xml:space="preserve" transform="translate(10 1311.4)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
- <text id="calligraphy-f02-pt_BR.svgtext1996" xml:space="preserve" transform="translate(10 1311.4)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
- <text id="calligraphy-f02-pt_BR.svgtext1999" xml:space="preserve" transform="translate(10 1311.4)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
- <path id="calligraphy-f02-pt_BR.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1311.4)" display="block"/>
- <path id="calligraphy-f02-pt_BR.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1311.4)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1509.6" x="10"/>
- <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
- <flowRegion>
- <use y="0" x="0" xlink:href="#d0e173"/>
+ <text id="calligraphy-f02-pt_BR.svgtext1987" xml:space="preserve" transform="translate(10 1333)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">sinuoso = 0 (largura uniforme)</tspan></text>
+ <text id="calligraphy-f02-pt_BR.svgtext1990" xml:space="preserve" transform="translate(10 1333)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
+ <text id="calligraphy-f02-pt_BR.svgtext1993" xml:space="preserve" transform="translate(10 1333)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
+ <text id="calligraphy-f02-pt_BR.svgtext1996" xml:space="preserve" transform="translate(10 1333)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
+ <text id="calligraphy-f02-pt_BR.svgtext1999" xml:space="preserve" transform="translate(10 1333)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-pt_BR.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
+ <path id="calligraphy-f02-pt_BR.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1333)" display="block"/>
+ <path id="calligraphy-f02-pt_BR.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1333)" display="block"/>
+ <rect id="d0e176" display="none" height="1e3px" width="288" y="1531.2" x="10"/>
+ <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
+ <flowRegion>
+ <use y="0" x="0" xlink:href="#d0e176"/>
</flowRegion>
<flowDiv xml:space="preserve">For fun, set Width and Thinning both to 100 (maximum) and draw with
jerky movements to get strangely naturalistic, neuron-like shapes:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-pt_BR.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1556.6)" display="block"/>
- <path id="calligraphy-f03-pt_BR.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1556.6)" display="block"/>
- <path id="calligraphy-f03-pt_BR.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1556.6)" display="block"/>
- <path id="calligraphy-f03-pt_BR.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1556.6)" display="block"/>
- <path id="calligraphy-f03-pt_BR.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1556.6)" display="block"/>
- <path id="calligraphy-f03-pt_BR.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1556.6)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1709.7565249999998" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1709.7565249999998" x="10">Ângulo &amp; Fixação</tspan>
+ <path id="calligraphy-f03-pt_BR.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1578.2)" display="block"/>
+ <path id="calligraphy-f03-pt_BR.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1578.2)" display="block"/>
+ <path id="calligraphy-f03-pt_BR.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1578.2)" display="block"/>
+ <path id="calligraphy-f03-pt_BR.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1578.2)" display="block"/>
+ <path id="calligraphy-f03-pt_BR.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1578.2)" display="block"/>
+ <path id="calligraphy-f03-pt_BR.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1578.2)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1731.3371240000001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1731.3371240000001" x="10">Ângulo &amp; Fixação</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1715" x="10"/>
+ <rect id="d0e195" display="none" height="1e3px" width="288" y="1736.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e192"/>
+ <use y="0" x="0" xlink:href="#d0e195"/>
</flowRegion>
<flowDiv xml:space="preserve">Depois da largura, <flowSpan font-style="italic">Ângulo</flowSpan> é o parâmetro mais importante da caligrafia. É o ângulo de sua caneta em graus, que muda de 0 (horizontal) até 90 (vertical em sentido anti-horário) ou para -90 (vertical em sentido horário). Note que se você ativar a sensibilidade à inclinação para uma mesa digitalizadora, o parâmetro Ângulo é marcado e o ângulo é determinado pela inclinação da caneta.</flowDiv>
</flowRoot>
@@ -258,15 +250,15 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-pt_BR.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-pt_BR.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1795.4)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-pt_BR.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1795.4)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-pt_BR.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1795.4)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-pt_BR.svgtext4096" xml:space="preserve" transform="translate(10 1795.4)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">ângulo = 90 graus</tspan></text>
- <text id="calligraphy-f04-pt_BR.svgtext4099" xml:space="preserve" transform="translate(10 1795.4)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">ângulo = 30 (padrão)</tspan></text>
- <text id="calligraphy-f04-pt_BR.svgtext4102" xml:space="preserve" transform="translate(10 1795.4)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">ângulo = 0</tspan></text>
- <text id="calligraphy-f04-pt_BR.svgtext4105" xml:space="preserve" transform="translate(10 1795.4)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">ângulo = -90 graus</tspan></text>
- <path id="calligraphy-f04-pt_BR.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-pt_BR.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-pt_BR.svgTriangleInS)" transform="translate(10 318.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-pt_BR.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1795.4) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-pt_BR.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1816.9)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-pt_BR.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1816.9)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-pt_BR.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1816.9)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-pt_BR.svgtext4096" xml:space="preserve" transform="translate(10 1816.9)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">ângulo = 90 graus</tspan></text>
+ <text id="calligraphy-f04-pt_BR.svgtext4099" xml:space="preserve" transform="translate(10 1816.9)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">ângulo = 30 (padrão)</tspan></text>
+ <text id="calligraphy-f04-pt_BR.svgtext4102" xml:space="preserve" transform="translate(10 1816.9)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">ângulo = 0</tspan></text>
+ <text id="calligraphy-f04-pt_BR.svgtext4105" xml:space="preserve" transform="translate(10 1816.9)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-pt_BR.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">ângulo = -90 graus</tspan></text>
+ <path id="calligraphy-f04-pt_BR.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-pt_BR.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-pt_BR.svgTriangleInS)" transform="translate(10 339.6)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-pt_BR.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1816.9) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-pt_BR.svguse2837" xlink:href="#calligraphy-f04-pt_BR.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-pt_BR.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-pt_BR.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -275,11 +267,11 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-pt_BR.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-pt_BR.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-pt_BR.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1795.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1948.1" x="10"/>
+ <path id="calligraphy-f04-pt_BR.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1816.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e211" display="none" height="1e3px" width="288" y="1969.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e208"/>
+ <use y="0" x="0" xlink:href="#d0e211"/>
</flowRegion>
<flowDiv xml:space="preserve">Each traditional calligraphy style has its own prevalent pen angle. For example, the
Uncial hand uses the angle of 25 degrees. More complex hands and more experienced
@@ -290,29 +282,29 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-pt_BR.svgtext4984" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">ângulo = 30</tspan></text>
- <text id="calligraphy-f05-pt_BR.svgtext4987" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">ângulo = 60</tspan></text>
- <text id="calligraphy-f05-pt_BR.svgtext4990" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">ângulo = 90</tspan></text>
- <text id="calligraphy-f05-pt_BR.svgtext4993" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">ângulo = 0</tspan></text>
- <text id="calligraphy-f05-pt_BR.svgtext4996" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">ângulo = 15</tspan></text>
- <text id="calligraphy-f05-pt_BR.svgtext4999" xml:space="preserve" transform="translate(10 2048.5)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">ângulo = -45</tspan></text>
- <path id="calligraphy-f05-pt_BR.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2048.5)" display="block"/>
- <path id="calligraphy-f05-pt_BR.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2048.5)" display="block"/>
- <path id="calligraphy-f05-pt_BR.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2048.5)" display="block"/>
- <path id="calligraphy-f05-pt_BR.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2048.5)" display="block"/>
- <path id="calligraphy-f05-pt_BR.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2048.5)" display="block"/>
- <path id="calligraphy-f05-pt_BR.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2048.5)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2204.6" x="10"/>
+ <text id="calligraphy-f05-pt_BR.svgtext4984" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">ângulo = 30</tspan></text>
+ <text id="calligraphy-f05-pt_BR.svgtext4987" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">ângulo = 60</tspan></text>
+ <text id="calligraphy-f05-pt_BR.svgtext4990" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">ângulo = 90</tspan></text>
+ <text id="calligraphy-f05-pt_BR.svgtext4993" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">ângulo = 0</tspan></text>
+ <text id="calligraphy-f05-pt_BR.svgtext4996" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">ângulo = 15</tspan></text>
+ <text id="calligraphy-f05-pt_BR.svgtext4999" xml:space="preserve" transform="translate(10 2070)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-pt_BR.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">ângulo = -45</tspan></text>
+ <path id="calligraphy-f05-pt_BR.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2070)" display="block"/>
+ <path id="calligraphy-f05-pt_BR.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2070)" display="block"/>
+ <path id="calligraphy-f05-pt_BR.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2070)" display="block"/>
+ <path id="calligraphy-f05-pt_BR.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2070)" display="block"/>
+ <path id="calligraphy-f05-pt_BR.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2070)" display="block"/>
+ <path id="calligraphy-f05-pt_BR.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2070)" display="block"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2226.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e227"/>
+ <use y="0" x="0" xlink:href="#d0e230"/>
</flowRegion>
<flowDiv xml:space="preserve">Como você pode observar, o traço é o mais fino possível quando é desenhado paralelo ao seu ângulo, e mais amplo quando desenhado perpendicular. Ângulos positivos são os mais naturais e tradicionais para caligrafia feita com a mão direita.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2254.7" x="10"/>
+ <rect id="d0e233" display="none" height="1e3px" width="288" y="2276.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e230"/>
+ <use y="0" x="0" xlink:href="#d0e233"/>
</flowRegion>
<flowDiv xml:space="preserve">The level of contrast between the thinnest and the thickest is controlled by the
<flowSpan font-style="italic">fixation</flowSpan> parameter. The value of 100 means that the angle is always
@@ -326,19 +318,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-pt_BR.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2333.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
- <text id="calligraphy-f06-pt_BR.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2333.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
- <text id="calligraphy-f06-pt_BR.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2333.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixação = 0</tspan></text>
- <path id="calligraphy-f06-pt_BR.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2333.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt_BR.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2333.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt_BR.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2333.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-pt_BR.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt_BR.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt_BR.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt_BR.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt_BR.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-pt_BR.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2333.8) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-pt_BR.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-pt_BR.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2355.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
+ <text id="calligraphy-f06-pt_BR.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2355.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
+ <text id="calligraphy-f06-pt_BR.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2355.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-pt_BR.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">ângulo = 30</tspan><tspan id="calligraphy-f06-pt_BR.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixação = 0</tspan></text>
+ <path id="calligraphy-f06-pt_BR.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2355.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2355.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2355.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-pt_BR.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-pt_BR.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2355.3) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-pt_BR.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-pt_BR.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +339,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-pt_BR.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-pt_BR.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +348,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-pt_BR.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-pt_BR.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +357,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-pt_BR.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-pt_BR.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +366,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-pt_BR.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-pt_BR.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +375,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-pt_BR.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-pt_BR.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +384,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-pt_BR.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-pt_BR.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +393,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-pt_BR.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-pt_BR.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +402,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-pt_BR.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-pt_BR.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +411,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-pt_BR.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-pt_BR.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +420,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-pt_BR.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-pt_BR.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +429,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-pt_BR.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-pt_BR.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +438,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-pt_BR.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-pt_BR.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +447,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-pt_BR.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-pt_BR.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,7 +456,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-pt_BR.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-pt_BR.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -473,7 +465,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-pt_BR.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-pt_BR.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -482,7 +474,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-pt_BR.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2333.8) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-pt_BR.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2355.3) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-pt_BR.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-pt_BR.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -491,20 +483,20 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-pt_BR.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-pt_BR.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2475.5" x="10"/>
+ <rect id="d0e249" display="none" height="1e3px" width="288" y="2497" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e246"/>
+ <use y="0" x="0" xlink:href="#d0e249"/>
</flowRegion>
<flowDiv xml:space="preserve">Tipograficamente falando, fixação máxima, e por sua vez, contraste de largura do traço máximo (acima à esquerda) são as características de antigas fontes serif, tais como Times ou Bodoni (porque estas fontes foram historicamente uma imitação de caligrafia com caneta fixa). Fixação zero e contraste da largura zero (acima à direita), por outro lado, sugere modernas fontes sans serif como a Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2559.677946" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2559.677946" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2581.219124" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2581.219124" x="10">Tremor</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2564.9" x="10"/>
+ <rect id="d0e258" display="none" height="1e3px" width="288" y="2586.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e255"/>
+ <use y="0" x="0" xlink:href="#d0e258"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Tremor</flowSpan> is intended to give a more natural look to the calligraphy strokes.
Tremor is adjustable in the Controls bar with values ranging from 0 to 100. It will
@@ -512,7 +504,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-pt_BR.svgg3123" font-size="6px" transform="translate(10 2663.3)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-pt_BR.svgg3123" font-size="6px" transform="translate(10 2684.8)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-pt_BR.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-pt_BR.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">lento</tspan></text>
<text id="calligraphy-f07-pt_BR.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-pt_BR.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">médio</tspan></text>
<text id="calligraphy-f07-pt_BR.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-pt_BR.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">rápido</tspan></text>
@@ -526,62 +518,62 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-pt_BR.svguse3153" xlink:href="#calligraphy-f07-pt_BR.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pt_BR.svguse3151" xlink:href="#calligraphy-f07-pt_BR.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-pt_BR.svguse3149" xlink:href="#calligraphy-f07-pt_BR.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-pt_BR.svgtext3177" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext3111" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext1990" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext2991" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext2995" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext1993" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext1996" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext2999" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext3003" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext3007" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
- <text id="calligraphy-f07-pt_BR.svgtext1999" xml:space="preserve" transform="translate(10 2633.3)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
- <path id="calligraphy-f07-pt_BR.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2633.3)"/>
- <path id="calligraphy-f07-pt_BR.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2633.3)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2910.723146" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2910.723146" x="10">Wiggle &amp; Mass</tspan>
+ <text id="calligraphy-f07-pt_BR.svgtext3177" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tremor = 0</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext3111" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext1990" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext2991" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext2995" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext1993" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext1996" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext2999" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext3003" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext3007" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
+ <text id="calligraphy-f07-pt_BR.svgtext1999" xml:space="preserve" transform="translate(10 2654.8)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-pt_BR.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
+ <path id="calligraphy-f07-pt_BR.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2654.8)"/>
+ <path id="calligraphy-f07-pt_BR.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2654.8)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2932.264324" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2932.264324" x="10">Wiggle &amp; Mass</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2915.9" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2937.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e277"/>
+ <use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve">Ao contrário da largura e do ângulo, estes dois últimos parâmetros definem como a ferramenta &quot;sente&quot; em vez de afetar sua saída visual. Em razão disso não haverá ilustrações nesta seção; em substituição, apenas teste-os você mesmo para ter uma idéia melhor.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2965.9" x="10"/>
+ <rect id="d0e283" display="none" height="1e3px" width="288" y="2987.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e280"/>
+ <use y="0" x="0" xlink:href="#d0e283"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Wiggle</flowSpan> is the resistance of the paper to the movement of the
pen. The default is at minimum (0), and increasing this parameter makes paper “slippery”:
@@ -589,10 +581,10 @@ if the mass is big, the pen tends to run away on sharp turns; if the mass is zer
wiggle makes the pen to wiggle wildly.
</flowDiv>
</flowRoot>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="3015.7" x="10"/>
+ <rect id="d0e289" display="none" height="1e3px" width="288" y="3037.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e286"/>
+ <use y="0" x="0" xlink:href="#d0e289"/>
</flowRegion>
<flowDiv xml:space="preserve">In physics, <flowSpan font-style="italic">mass</flowSpan> is what causes inertia; the higher the mass of
the Inkscape calligraphy tool, the more it lags behind your mouse pointer and the more
@@ -601,226 +593,226 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3099.4233069999996" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3099.4233069999996" x="10">Exemplos de Caligrafia</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3120.964485" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3120.964485" x="10">Exemplos de Caligrafia</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="3104.6" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="3126.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e298"/>
+ <use y="0" x="0" xlink:href="#d0e301"/>
</flowRegion>
<flowDiv xml:space="preserve">Agora que você conhece as capacidades básicas da ferramenta, você pode tentar produzir, de fato, alguma caligrafia. Se você é novo nesta arte, adquira um bom livro de caligrafia e estude-o com o Inkscape. Esta seção te mostrará apenas alguns simples exemplos.</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3154.7" x="10"/>
+ <rect id="d0e304" display="none" height="1e3px" width="288" y="3176.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e301"/>
+ <use y="0" x="0" xlink:href="#d0e304"/>
</flowRegion>
<flowDiv xml:space="preserve">Antes de tudo, para fazer letras, você precisa criar um par de réguas para se guiar. Se você vai escrever em uma caligrafia inclinada ou cursiva, acrescente também algumas guias inclinadas através das réguas, por exemplo:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-pt_BR.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-pt_BR.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3212.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3285.4" x="10"/>
+ <path id="calligraphy-f08-pt_BR.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-pt_BR.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3234.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e317" display="none" height="1e3px" width="288" y="3306.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e314"/>
+ <use y="0" x="0" xlink:href="#d0e317"/>
</flowRegion>
<flowDiv xml:space="preserve">Então dê um zoom de modo que a altura entre as réguas corresponda ao alcance mais natural do movimento de sua mão, ajuste a largura e o ângulo, e você estará pronto pra começar!</flowDiv>
</flowRoot>
- <rect id="d0e317" display="none" height="1e3px" width="288" y="3324.9" x="10"/>
+ <rect id="d0e320" display="none" height="1e3px" width="288" y="3346.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e317"/>
+ <use y="0" x="0" xlink:href="#d0e320"/>
</flowRegion>
<flowDiv xml:space="preserve">Probably the first thing you would do as a beginner calligrapher is practice the basic
elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-pt_BR.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3381)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pt_BR.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3381)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-pt_BR.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3381)" display="block"/>
- <path id="calligraphy-f09-pt_BR.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3381)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3424" x="10"/>
- <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
- <flowRegion>
- <use y="0" x="0" xlink:href="#d0e330"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3402.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3402.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3402.5)" display="block"/>
+ <path id="calligraphy-f09-pt_BR.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3402.5)" display="block"/>
+ <rect id="d0e333" display="none" height="1e3px" width="288" y="3445.5" x="10"/>
+ <flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
+ <flowRegion>
+ <use y="0" x="0" xlink:href="#d0e333"/>
</flowRegion>
<flowDiv xml:space="preserve">Várias dicas úteis:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3446.5)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3440.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3468.1)"/>
+ <rect id="d0e339" display="none" height="1e3px" width="258" y="3462.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e336"/>
+ <use y="0" x="0" xlink:href="#d0e339"/>
</flowRegion>
<flowDiv xml:space="preserve">Se sua mão está confortável na mesa digitalizadora, não a movimente. Em vez disso, role a tela (<flowSpan font-weight="bold">Ctrl+setas</flowSpan>) com sua mão esquerda depois de terminar cada letra.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3485.9)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3479.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3507.4)"/>
+ <rect id="d0e346" display="none" height="1e3px" width="258" y="3501.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e343"/>
+ <use y="0" x="0" xlink:href="#d0e346"/>
</flowRegion>
<flowDiv xml:space="preserve">Se seu último traço não foi bom, apenas desfaça-o (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Entretanto, se a forma ficou boa mas a posição ou tamanho, levemente diferentes, é melhor usar a ferramenta de seleção temporariamente (<flowSpan font-weight="bold">Barra de espaço</flowSpan>) e então mova-a levemente/amplie/gire-a o necessário (usando o mouse ou o teclado), e depois pressione <flowSpan font-weight="bold">Barra de espaço</flowSpan> novamente para retornar à ferramenta de caligrafia.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3567.9)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3561.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3589.4)"/>
+ <rect id="d0e359" display="none" height="1e3px" width="258" y="3583.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e356"/>
+ <use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Terminado uma palavra, mude para a ferramenta de seleção novamente para ajustar a uniformidade das barras e o espaçamento entre as letras. Porém, não exagere; boa caligrafia deve conservar um visual manuscrito um pouco irregular. Resista a tentação de copiar as letras e seus elementos; cada traço deve ser original.</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3633.1" x="10"/>
+ <rect id="d0e363" display="none" height="1e3px" width="288" y="3654.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e360"/>
+ <use y="0" x="0" xlink:href="#d0e363"/>
</flowRegion>
<flowDiv xml:space="preserve">E aqui estão alguns exemplos completos de letras:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-pt_BR.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pt_BR.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3659.1)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Caligrafia Unicial</tspan></text>
- <text id="calligraphy-f10-pt_BR.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3659.1)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Caligrafia Carolíngia</tspan></text>
- <text id="calligraphy-f10-pt_BR.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3659.1)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Caligrafia Gótica</tspan></text>
- <text id="calligraphy-f10-pt_BR.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3659.1)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Caligrafia Bâtarde</tspan></text>
- <path id="calligraphy-f10-pt_BR.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-pt_BR.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3659.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-pt_BR.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3659.1)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Caligrafia Itálica Floreada</tspan></text>
- <path id="calligraphy-f10-pt_BR.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3659.1)" display="block"/>
- <path id="calligraphy-f10-pt_BR.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3659.1)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4237.5011423000005" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4237.5011423000005" x="10">Conclusão</tspan>
+ <path id="calligraphy-f10-pt_BR.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pt_BR.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3680.6)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Caligrafia Uncial</tspan></text>
+ <text id="calligraphy-f10-pt_BR.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3680.6)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Caligrafia Carolíngia</tspan></text>
+ <text id="calligraphy-f10-pt_BR.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3680.6)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Caligrafia Gótica</tspan></text>
+ <text id="calligraphy-f10-pt_BR.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3680.6)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Caligrafia Bâtarde</tspan></text>
+ <path id="calligraphy-f10-pt_BR.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3680.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-pt_BR.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3680.6)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-pt_BR.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Caligrafia Itálica Floreada</tspan></text>
+ <path id="calligraphy-f10-pt_BR.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3680.6)" display="block"/>
+ <path id="calligraphy-f10-pt_BR.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3680.6)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4258.9831793" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4258.9831793" x="10">Conclusão</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4242.7" x="10"/>
+ <rect id="d0e382" display="none" height="1e3px" width="288" y="4264.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
- <use y="0" x="0" xlink:href="#d0e379"/>
+ <use y="0" x="0" xlink:href="#d0e382"/>
</flowRegion>
<flowDiv xml:space="preserve">Caligrafia não é apenas divertida; é uma arte profundamente espiritual que pode transformar sua visão sobre tudo o que faz e vê. A ferramenta de caligrafia do Inkscape pode servir apenas como uma modesta introdução à esta arte. E ainda assim é muito agradável utilizá-la e pode ser útil na criação de desenhos profissionais. Divirta-se!</flowDiv>
</flowRoot>
- <g transform="translate(0 4312.4)">
+ <g transform="translate(0 4333.9)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.ru.svg b/share/tutorials/tutorial-calligraphy.ru.svg
index ab4997eb5..6d007e1a2 100644
--- a/share/tutorials/tutorial-calligraphy.ru.svg
+++ b/share/tutorials/tutorial-calligraphy.ru.svg
@@ -142,101 +142,93 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Если у вас есть планшет, и вы хотели бы использовать упомянутые выше возможности, вам придётся настроить его для работы. Эта настройка делается лишь раз. Для начала необходимо подключить сам планшет перед запуском Inkscape, а затем из меню <flowSpan font-style="italic">Файл</flowSpan> открыть диалог <flowSpan font-style="italic">Устройства ввода...</flowSpan>. В этом диалоге выбирается предпочитаемое устройство и настройки пера планшета. После этого переключитесь на каллиграфическое перо и в панели параметров включите распознавание силы нажатия и угла. Теперь Inkscape будет загружать эти настройки при каждом запуске.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="762.58" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="752.07" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Каллиграфическое перо в Inkscape может быть чувствительным к <flowSpan font-style="italic">скорости</flowSpan> написания (см. далее «Сужение»), так что если вы используете мышь, то, вероятно, захотите обнулить этот параметр.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="814.6469597999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="814.6469597999999" x="10">Параметры инструмента каллиграфии</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="804.1397738" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="804.1397738" x="10">Параметры инструмента каллиграфии</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="819.85" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="809.34" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowDiv xml:space="preserve">Переключитесь на инструмент каллиграфии, нажав <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, клавишу <flowSpan font-weight="bold">C</flowSpan> или нажав кнопку Рисовать каллиграфическим пером на Панели инструментов. На верхней панели расположены 8 параметров: Ширина; Сужение; Угол; Фиксация; Дрожание штриха; Масса пера; Концы и Виляние пером. Здесь же расположены кнопки для переключения: Нажим (pressure) и Толщина линии пера.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="914.2488577999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="914.2488577999999" x="10">Ширина и Сужение</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="903.7219617999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="903.7219617999999" x="10">Ширина и Сужение</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="919.45" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="908.92" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Эта пара настроек отвечает за <flowSpan font-style="italic">ширину</flowSpan> вашего пера. Значение ширины может составлять от 1 до 100 и измеряется в единицах относительно размера окна программы, но независимо от масштаба. Это важно, поскольку настоящая «единица измерения» в каллиграфии — это диапазон движения вашей руки, и, следовательно, удобно, когда ширина кончика пера является константой по отношению к размеру вашего «холста», а не какими-нибудь настоящими единицами, зависящими от масштаба. Тем не менее, это поведение опционально и может быть изменено, если вы предпочитаете абсолютные единицы, не зависящие от масштаба. Для переключения типа поведения используйте переключатель на странице инструмента Каллиграфическое перо в диалоге настройки программы, которую можно открыть двойным щелчком по значку инструмента.</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="1075.5" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="1065" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">Так как ширина пера часто меняется, вы можете менять её не только в панели настроек инструмента, но и при помощи <flowSpan font-weight="bold">левой</flowSpan> и <flowSpan font-weight="bold">правой</flowSpan> стрелок клавиатуры, либо с помощью пера планшета, поддерживающего распознавание силы нажатия. Главное качество этой функции состоит в том, что она работает в момент рисования, поэтому вы можете менять ширину пера постепенно по ходу действия:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-ru.svgtext1944" xml:space="preserve" transform="translate(10 1165.3)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-ru.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">ширина=1, увеличивается... достигает 47, уменьшается... снова 0</tspan></text>
- <path id="calligraphy-f01-ru.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1165.3)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1254.1" x="10"/>
+ <text id="calligraphy-f01-ru.svgtext1944" xml:space="preserve" transform="translate(10 1154.7)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-ru.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">ширина=1, увеличивается... достигает 47, уменьшается... снова 0</tspan></text>
+ <path id="calligraphy-f01-ru.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1154.7)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1243.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
</flowRegion>
<flowDiv xml:space="preserve">Ширина пера также может зависеть от скорости письма, что контролируется параметром <flowSpan font-style="italic">Сужение</flowSpan>. Значение этого параметра может быть от -100 до 100; ноль означает, что ширина не зависит от скорости написания, положительное значение сужает быстро начерченные линии, отрицательное — расширяет. Начальное значение 10 придаёт линиям умеренное сужение при быстром письме. Ниже приведены некоторые примеры изложенного. Все штрихи нарисованы со значением ширины=20 и углом=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-ru.svgtext1987" xml:space="preserve" transform="translate(10 1354.2)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">сужение = 0 (одинаковая ширина)</tspan></text>
- <text id="calligraphy-f02-ru.svgtext1990" xml:space="preserve" transform="translate(10 1354.2)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">сужение = 10</tspan></text>
- <text id="calligraphy-f02-ru.svgtext1993" xml:space="preserve" transform="translate(10 1354.2)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">сужение = 40</tspan></text>
- <text id="calligraphy-f02-ru.svgtext1996" xml:space="preserve" transform="translate(10 1354.2)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">сужение = -20</tspan></text>
- <text id="calligraphy-f02-ru.svgtext1999" xml:space="preserve" transform="translate(10 1354.2)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">сужение = -60</tspan></text>
- <path id="calligraphy-f02-ru.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1354.2)" display="block"/>
- <path id="calligraphy-f02-ru.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1354.2)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1552.4" x="10"/>
+ <text id="calligraphy-f02-ru.svgtext1987" xml:space="preserve" transform="translate(10 1343.6)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">сужение = 0 (одинаковая ширина)</tspan></text>
+ <text id="calligraphy-f02-ru.svgtext1990" xml:space="preserve" transform="translate(10 1343.6)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">сужение = 10</tspan></text>
+ <text id="calligraphy-f02-ru.svgtext1993" xml:space="preserve" transform="translate(10 1343.6)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">сужение = 40</tspan></text>
+ <text id="calligraphy-f02-ru.svgtext1996" xml:space="preserve" transform="translate(10 1343.6)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">сужение = -20</tspan></text>
+ <text id="calligraphy-f02-ru.svgtext1999" xml:space="preserve" transform="translate(10 1343.6)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-ru.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">сужение = -60</tspan></text>
+ <path id="calligraphy-f02-ru.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1343.6)" display="block"/>
+ <path id="calligraphy-f02-ru.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1343.6)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1541.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">Для развлечения установите значения ширины и сужения равным 100 (максимальное) и порисуйте резкими движениями. Получаются странные фигуры, похожие на нейроны:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-ru.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1599.2)" display="block"/>
- <path id="calligraphy-f03-ru.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1599.2)" display="block"/>
- <path id="calligraphy-f03-ru.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1599.2)" display="block"/>
- <path id="calligraphy-f03-ru.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1599.2)" display="block"/>
- <path id="calligraphy-f03-ru.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1599.2)" display="block"/>
- <path id="calligraphy-f03-ru.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1599.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1752.4042368" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1752.4042368" x="10">Угол и Фиксация</tspan>
+ <path id="calligraphy-f03-ru.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1588.7)" display="block"/>
+ <path id="calligraphy-f03-ru.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1588.7)" display="block"/>
+ <path id="calligraphy-f03-ru.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1588.7)" display="block"/>
+ <path id="calligraphy-f03-ru.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1588.7)" display="block"/>
+ <path id="calligraphy-f03-ru.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1588.7)" display="block"/>
+ <path id="calligraphy-f03-ru.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1588.7)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1741.8379157999998" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1741.8379157999998" x="10">Угол и Фиксация</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1757.6" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1747" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -251,15 +243,15 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-ru.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-ru.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1815.4)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-ru.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1815.4)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-ru.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1815.4)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-ru.svgtext4096" xml:space="preserve" transform="translate(10 1815.4)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">угол = 90</tspan></text>
- <text id="calligraphy-f04-ru.svgtext4099" xml:space="preserve" transform="translate(10 1815.4)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">угол = 30 (по умолчанию)</tspan></text>
- <text id="calligraphy-f04-ru.svgtext4102" xml:space="preserve" transform="translate(10 1815.4)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">угол = 0</tspan></text>
- <text id="calligraphy-f04-ru.svgtext4105" xml:space="preserve" transform="translate(10 1815.4)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">угол = -90</tspan></text>
- <path id="calligraphy-f04-ru.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-ru.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-ru.svgTriangleInS)" transform="translate(10 338.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-ru.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1815.4) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-ru.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1804.8)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-ru.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1804.8)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-ru.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1804.8)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-ru.svgtext4096" xml:space="preserve" transform="translate(10 1804.8)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">угол = 90</tspan></text>
+ <text id="calligraphy-f04-ru.svgtext4099" xml:space="preserve" transform="translate(10 1804.8)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">угол = 30 (по умолчанию)</tspan></text>
+ <text id="calligraphy-f04-ru.svgtext4102" xml:space="preserve" transform="translate(10 1804.8)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">угол = 0</tspan></text>
+ <text id="calligraphy-f04-ru.svgtext4105" xml:space="preserve" transform="translate(10 1804.8)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-ru.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">угол = -90</tspan></text>
+ <path id="calligraphy-f04-ru.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-ru.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-ru.svgTriangleInS)" transform="translate(10 327.5)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-ru.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1804.8) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-ru.svguse2837" xlink:href="#calligraphy-f04-ru.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-ru.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-ru.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -268,34 +260,34 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f04-ru.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-ru.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-ru.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1815.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1967.8" x="10"/>
+ <path id="calligraphy-f04-ru.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1804.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1957.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
</flowRegion>
<flowDiv xml:space="preserve">Каждый традиционный каллиграфический стиль имеет свой превалирующий угол пера. Например, унцианский шрифт использует угол в 25 градусов. Более сложные стили и более опытные каллиграфы часто меняют угол во время работы, и Inkscape позволяет делать это с помощью клавиатурных стрелок <flowSpan font-weight="bold">вверх</flowSpan> и <flowSpan font-weight="bold">вниз</flowSpan> . Для начала каллиграфических занятий предустановленное значение прекрасно подойдёт. На примерах ниже, штрихи имеют разный угол (фиксация = 100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-ru.svgtext4984" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">угол = 30</tspan></text>
- <text id="calligraphy-f05-ru.svgtext4987" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">угол = 60</tspan></text>
- <text id="calligraphy-f05-ru.svgtext4990" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">угол = 90</tspan></text>
- <text id="calligraphy-f05-ru.svgtext4993" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">угол = 0</tspan></text>
- <text id="calligraphy-f05-ru.svgtext4996" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">угол = 15</tspan></text>
- <text id="calligraphy-f05-ru.svgtext4999" xml:space="preserve" transform="translate(10 2068.2)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">угол = -45</tspan></text>
- <path id="calligraphy-f05-ru.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2068.2)" display="block"/>
- <path id="calligraphy-f05-ru.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2068.2)" display="block"/>
- <path id="calligraphy-f05-ru.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2068.2)" display="block"/>
- <path id="calligraphy-f05-ru.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2068.2)" display="block"/>
- <path id="calligraphy-f05-ru.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2068.2)" display="block"/>
- <path id="calligraphy-f05-ru.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2068.2)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2224" x="10"/>
+ <text id="calligraphy-f05-ru.svgtext4984" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">угол = 30</tspan></text>
+ <text id="calligraphy-f05-ru.svgtext4987" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">угол = 60</tspan></text>
+ <text id="calligraphy-f05-ru.svgtext4990" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">угол = 90</tspan></text>
+ <text id="calligraphy-f05-ru.svgtext4993" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">угол = 0</tspan></text>
+ <text id="calligraphy-f05-ru.svgtext4996" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">угол = 15</tspan></text>
+ <text id="calligraphy-f05-ru.svgtext4999" xml:space="preserve" transform="translate(10 2057.6)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-ru.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">угол = -45</tspan></text>
+ <path id="calligraphy-f05-ru.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 2057.6)" display="block"/>
+ <path id="calligraphy-f05-ru.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 2057.6)" display="block"/>
+ <path id="calligraphy-f05-ru.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 2057.6)" display="block"/>
+ <path id="calligraphy-f05-ru.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 2057.6)" display="block"/>
+ <path id="calligraphy-f05-ru.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 2057.6)" display="block"/>
+ <path id="calligraphy-f05-ru.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 2057.6)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2213.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Как видно на примере, штрих тоньше, когда идёт параллельно своему углу, и шире, когда идёт перпендикулярно ему. Положительные значения параметра Угол соответствуют более традиционной каллиграфии для правой руки.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2273.8" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2263.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -307,19 +299,19 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-ru.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2373.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">фиксация = 100</tspan></text>
- <text id="calligraphy-f06-ru.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2373.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">фиксация = 80</tspan></text>
- <text id="calligraphy-f06-ru.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2373.9)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">фиксация = 0</tspan></text>
- <path id="calligraphy-f06-ru.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2373.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ru.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2373.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ru.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2373.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-ru.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ru.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ru.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ru.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ru.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-ru.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2373.9) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-ru.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-ru.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2363.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">фиксация = 100</tspan></text>
+ <text id="calligraphy-f06-ru.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2363.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">фиксация = 80</tspan></text>
+ <text id="calligraphy-f06-ru.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2363.3)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-ru.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">угол = 30</tspan><tspan id="calligraphy-f06-ru.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">фиксация = 0</tspan></text>
+ <path id="calligraphy-f06-ru.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2363.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ru.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2363.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ru.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2363.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-ru.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ru.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ru.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ru.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ru.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-ru.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-ru.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2363.3) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-ru.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-ru.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -328,7 +320,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-ru.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-ru.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -337,7 +329,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-ru.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-ru.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -346,7 +338,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-ru.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-ru.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -355,7 +347,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-ru.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-ru.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-ru.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -364,7 +356,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-ru.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-ru.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -373,7 +365,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-ru.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-ru.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -382,7 +374,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-ru.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-ru.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -391,7 +383,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-ru.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-ru.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -400,7 +392,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-ru.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-ru.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -409,7 +401,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-ru.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-ru.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -418,7 +410,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-ru.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-ru.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -427,7 +419,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-ru.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-ru.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -436,7 +428,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-ru.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-ru.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -445,7 +437,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-ru.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-ru.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -454,7 +446,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-ru.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-ru.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -463,7 +455,7 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-ru.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2373.9) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-ru.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2363.3) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-ru.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-ru.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -472,17 +464,17 @@ now on, Inkscape will remember those settings on startup.
<path id="calligraphy-f06-ru.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-ru.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2515.3" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2504.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Говоря языком типографов, максимальная фиксация, а следовательно максимальная ширина (верхний левый пример) — характерная черта старинных шрифтов, таких как Times или Bodoni (исторически сложилось что эти шрифты копируют каллиграфию фиксированного пера). С другой стороны, нулевую фиксация и нулевую ширину (верхний правый пример) мы можем увидеть в современных шрифтах без засечек, таких как Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2609.7644988" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2609.7644988" x="10">Дрожание</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2599.1587568000004" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2599.1587568000004" x="10">Дрожание</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2615" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2604.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -493,7 +485,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-ru.svgg3123" font-size="6px" transform="translate(10 2713.4)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-ru.svgg3123" font-size="6px" transform="translate(10 2702.8)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-ru.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-ru.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">медленно</tspan></text>
<text id="calligraphy-f07-ru.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-ru.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">средне</tspan></text>
<text id="calligraphy-f07-ru.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-ru.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">быстро</tspan></text>
@@ -507,289 +499,289 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-ru.svguse3153" xlink:href="#calligraphy-f07-ru.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-ru.svguse3151" xlink:href="#calligraphy-f07-ru.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-ru.svguse3149" xlink:href="#calligraphy-f07-ru.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-ru.svgtext3177" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">дрожание = 0</tspan></text>
- <text id="calligraphy-f07-ru.svgtext3111" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">дрожание = 10</tspan></text>
- <text id="calligraphy-f07-ru.svgtext1990" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">дрожание = 30</tspan></text>
- <text id="calligraphy-f07-ru.svgtext2991" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">дрожание = 50</tspan></text>
- <text id="calligraphy-f07-ru.svgtext2995" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">дрожание = 70</tspan></text>
- <text id="calligraphy-f07-ru.svgtext1993" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">дрожание = 90</tspan></text>
- <text id="calligraphy-f07-ru.svgtext1996" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">дрожание = 20</tspan></text>
- <text id="calligraphy-f07-ru.svgtext2999" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">дрожание = 40</tspan></text>
- <text id="calligraphy-f07-ru.svgtext3003" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">дрожание = 60</tspan></text>
- <text id="calligraphy-f07-ru.svgtext3007" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">дрожание = 80</tspan></text>
- <text id="calligraphy-f07-ru.svgtext1999" xml:space="preserve" transform="translate(10 2683.4)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">дрожание = 100</tspan></text>
- <path id="calligraphy-f07-ru.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2683.4)"/>
- <path id="calligraphy-f07-ru.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2683.4)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2960.8096988" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2960.8096988" x="10">Масса и Торможение</tspan>
+ <text id="calligraphy-f07-ru.svgtext3177" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">дрожание = 0</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext3111" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">дрожание = 10</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext1990" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">дрожание = 30</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext2991" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">дрожание = 50</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext2995" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">дрожание = 70</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext1993" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">дрожание = 90</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext1996" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">дрожание = 20</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext2999" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">дрожание = 40</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext3003" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">дрожание = 60</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext3007" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">дрожание = 80</tspan></text>
+ <text id="calligraphy-f07-ru.svgtext1999" xml:space="preserve" transform="translate(10 2672.8)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-ru.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">дрожание = 100</tspan></text>
+ <path id="calligraphy-f07-ru.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2672.8)"/>
+ <path id="calligraphy-f07-ru.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2672.8)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2950.2039568000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2950.2039568000005" x="10">Масса и Торможение</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2966" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2955.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve">В отличие от ширины и угла, эти два параметра определяют «чувствительность» инструмента, а не внешний вид штрихов. Так что в этом разделе не будет никаких примеров. Просто попробуйте рисовать, меняя значения, чтобы понять смысл этих настроек.</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="3026.1" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="3015.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Торможение</flowSpan> — это сопротивление бумаги движению пера. Изначально установлено максимальное значение (0), и уменьшение этого параметра делает бумагу «скользкой». Если масса большая, перо уходит в сторону при резких поворотах, а если масса нулевая, то от коротких движений перо дико ёрзает.</flowDiv>
</flowRoot>
- <rect id="d0e285" display="none" height="1e3px" width="288" y="3086.6" x="10"/>
+ <rect id="d0e285" display="none" height="1e3px" width="288" y="3076" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e285"/>
</flowRegion>
<flowDiv xml:space="preserve">В физике <flowSpan font-style="italic">масса</flowSpan> — причина инерции. Чем больше значение массы, тем больше задержка между движением вашей мыши и тем больше смягчаются резкие повороты штриха. Изначально это значение очень мало (2), поэтому инструмент реагирует быстро. Но массу можно увеличить для получения замедленного пера и гладких линий.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3169.9304838000003" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3169.9304838000003" x="10">Примеры каллиграфии</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3159.3247418000005" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3159.3247418000005" x="10">Примеры каллиграфии</tspan>
</text>
- <rect id="d0e297" display="none" height="1e3px" width="288" y="3175.1" x="10"/>
+ <rect id="d0e297" display="none" height="1e3px" width="288" y="3164.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e297"/>
</flowRegion>
<flowDiv xml:space="preserve">Ознакомившись с возможностями инструмента, можно начать практиковаться в настоящей каллиграфии. Если вы новичок в этом деле, найдите хорошую книгу по каллиграфии (например, «Творческая каллиграфия» Малькольма Кауча) и занимайтесь по ней, используя Inkscape. В этом разделе приведено несколько простых примеров.</flowDiv>
</flowRoot>
- <rect id="d0e300" display="none" height="1e3px" width="288" y="3245.9" x="10"/>
+ <rect id="d0e300" display="none" height="1e3px" width="288" y="3235.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e300"/>
</flowRegion>
<flowDiv xml:space="preserve">Для того чтобы начать писать буквы, нужно усвоить некоторые правила. Если вы собрались писать наклонным или рукописным шрифтом, то удобно использовать направляющие линейки (как в школьных тетрадках):</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-ru.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-ru.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3303.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e313" display="none" height="1e3px" width="288" y="3376.3" x="10"/>
+ <path id="calligraphy-f08-ru.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-ru.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3293.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e313" display="none" height="1e3px" width="288" y="3365.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e313"/>
</flowRegion>
<flowDiv xml:space="preserve">Потом следует подобрать масштаб так, чтобы расстояние между линейками соответствовало вашему обычному размаху. Настройте ширину, угол — и вперёд!</flowDiv>
</flowRoot>
- <rect id="d0e316" display="none" height="1e3px" width="288" y="3415.6" x="10"/>
+ <rect id="d0e316" display="none" height="1e3px" width="288" y="3405" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e316"/>
</flowRegion>
<flowDiv xml:space="preserve">Вероятно, первое, что вам захочется сделать как начинающему писцу — это попрактиковаться в написании элементов букв — вертикальных и горизонтальных линий, круглых и наклонных штрихов. Ниже изображены некоторые элементы букв унциального (Unicial) шрифта:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-ru.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3483.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-ru.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3483.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-ru.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3483.8)" display="block"/>
- <path id="calligraphy-f09-ru.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3483.8)" display="block"/>
- <rect id="d0e329" display="none" height="1e3px" width="288" y="3526.8" x="10"/>
+ <path id="calligraphy-f09-ru.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3473.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-ru.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3473.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-ru.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3473.2)" display="block"/>
+ <path id="calligraphy-f09-ru.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3473.2)" display="block"/>
+ <rect id="d0e329" display="none" height="1e3px" width="288" y="3516.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e329"/>
</flowRegion>
<flowDiv xml:space="preserve">Несколько полезных советов:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3548.7)"/>
- <rect id="d0e335" display="none" height="1e3px" width="258" y="3542.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3538.1)"/>
+ <rect id="d0e335" display="none" height="1e3px" width="258" y="3532.1" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e335"/>
</flowRegion>
<flowDiv xml:space="preserve">Если ваша рука удобно лежит на планшете, двигайте холст не ей, а другой рукой <flowSpan font-weight="bold">Ctrl+стрелки</flowSpan>.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3577.4)"/>
- <rect id="d0e342" display="none" height="1e3px" width="258" y="3571.4" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3566.8)"/>
+ <rect id="d0e342" display="none" height="1e3px" width="258" y="3560.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e342"/>
</flowRegion>
<flowDiv xml:space="preserve">Если штрих получился неудачным, просто избавьтесь от него (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Если же фигура хороша, но немного не к месту или размер не тот, проще временно переключиться на инструмент выделения (<flowSpan font-weight="bold">Space</flowSpan>) и подправить размер/форму/местоположение по необходимости (используя мышь и клавиши клавиатуры), а затем снова вернуться к каллиграфическому перу (ещё раз нажав <flowSpan font-weight="bold">Space</flowSpan>).</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3659.3)"/>
- <rect id="d0e355" display="none" height="1e3px" width="258" y="3653.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3648.6)"/>
+ <rect id="d0e355" display="none" height="1e3px" width="258" y="3642.6" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e355"/>
</flowRegion>
<flowDiv xml:space="preserve">Закончив с написанием слова, снова включите инструмент выделения, чтобы избавиться от неточностей и неровностей, но не перестарайтесь: хорошая каллиграфия должна быть не совсем точной, чтобы быть похожей на рукописную. Удерживайте себя от искушения копировать буквы и элементы букв: каждая линия должна быть оригинальной.</flowDiv>
</flowRoot>
- <rect id="d0e359" display="none" height="1e3px" width="288" y="3734.7" x="10"/>
+ <rect id="d0e359" display="none" height="1e3px" width="288" y="3724" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Ниже приведены готовые примеры:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-ru.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-ru.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3760.2)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Унциальный шрифт</tspan></text>
- <text id="calligraphy-f10-ru.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3760.2)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Каролингский шрифт</tspan></text>
- <text id="calligraphy-f10-ru.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3760.2)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Готический шрифт</tspan></text>
- <text id="calligraphy-f10-ru.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3760.2)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Рукописный готический шрифт</tspan></text>
- <path id="calligraphy-f10-ru.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-ru.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3760.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-ru.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3760.2)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Размашистый готический почерк</tspan></text>
- <path id="calligraphy-f10-ru.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3760.2)" display="block"/>
- <path id="calligraphy-f10-ru.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3760.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4338.5886481" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4338.5886481" x="10">Заключение</tspan>
+ <path id="calligraphy-f10-ru.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-ru.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3749.5)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Унциальный шрифт</tspan></text>
+ <text id="calligraphy-f10-ru.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3749.5)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Каролингский шрифт</tspan></text>
+ <text id="calligraphy-f10-ru.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3749.5)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Готический шрифт</tspan></text>
+ <text id="calligraphy-f10-ru.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3749.5)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Рукописный готический шрифт</tspan></text>
+ <path id="calligraphy-f10-ru.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-ru.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3749.5)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-ru.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3749.5)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-ru.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Размашистый готический почерк</tspan></text>
+ <path id="calligraphy-f10-ru.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3749.5)" display="block"/>
+ <path id="calligraphy-f10-ru.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3749.5)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4327.9040591" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4327.9040591" x="10">Заключение</tspan>
</text>
- <rect id="d0e378" display="none" height="1e3px" width="288" y="4343.8" x="10"/>
+ <rect id="d0e378" display="none" height="1e3px" width="288" y="4333.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e378"/>
</flowRegion>
<flowDiv xml:space="preserve">Каллиграфия — не просто забава, это возвышенное искусство. Она может изменить ваш взгляд на всё, что вы делаете и видите. Инструмент каллиграфии в Inkscape предлагает только скромное введение в увлекательный мир каллиграфии. И всё же, с этим пером приятно работать и оно более чем пригодно для серьёзных дизайнерских работ. Рисуйте и получайте удовольствие!</flowDiv>
</flowRoot>
- <g transform="translate(0 4415)">
+ <g transform="translate(0 4404.3)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.sk.svg b/share/tutorials/tutorial-calligraphy.sk.svg
index 23cbe2418..0d827f166 100644
--- a/share/tutorials/tutorial-calligraphy.sk.svg
+++ b/share/tutorials/tutorial-calligraphy.sk.svg
@@ -161,17 +161,17 @@
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafický nástroj zapnete stlačením <flowSpan font-weight="bold">Ctrl+F6</flowSpan>, tiež stlačením klávesy <flowSpan font-weight="bold">C</flowSpan> alebo kliknutím na jeho ikonu na nástrojovej lište. Na hornej lište si môžete všimnúť 7 volieb: Šírka a Stenčovanie; Uhol a Fixácia; Zakončenie; Chvenie a Hmotnosť a odpor. Sú tu tiež dve tlačidlá na zapnutie citlivosti na tlak a sklon pera tabletu.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="847.3377667999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="847.3377667999999" x="10">Šírka a stenčovanie</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="847.3180568" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="847.3180568" x="10">Šírka a stenčovanie</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="852.54" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="852.52" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Táto dvojica ovláda <flowSpan font-style="italic">šírku</flowSpan> vášho pera. Hrúbka sa môže meniť od 1 do 100 a (v predvolenom nastavení) meria sa v jednotkách v pomere k veľkosti okna úprav, ale nezávisle na mierke zobrazenia. Táto jednotka bola zvolená, pretože fyzická „merná jednotka“ v kaligrafii je podľa rozsahu pohybu vašej ruky a preto je vhodné mať hrúbku hrotu vášho pera v konštantnom pomere k veľkosti „kresliacej plochy“ a nie od skutočných jednotiek, ktoré by boli závislé na mierke zobrazenia. Toto správanie je voliteľné a tí, ktorí chcú miesto neho používať absolútne jednotky bez ohľadu na mierku zobrazenia, si ho môžu zmeniť. Ak sa chcete prepnúť do tohto režimu, použite zaškrtávacie pole na stránke s nastaveniami nástroja (môžete ju otvoriť dvojitým kliknutím na tlačidlo nástroja).</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="987.75" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="987.73" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
@@ -180,7 +180,7 @@
</flowRoot>
<text id="calligraphy-f01-sk.svgtext1944" xml:space="preserve" transform="translate(10 1056.4)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-sk.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">šírka=0.01, rastie.... dosahuje 0.47, klesá... späť na 0</tspan></text>
<path id="calligraphy-f01-sk.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1056.4)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1145.7" x="10"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1145.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
@@ -225,10 +225,10 @@
<path id="calligraphy-f03-sk.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1479.2)" display="block"/>
<path id="calligraphy-f03-sk.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1479.2)" display="block"/>
<path id="calligraphy-f03-sk.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1479.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1632.3886528" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1632.3886528" x="10">Uhol a fixácia</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1632.3492318" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1632.3492318" x="10">Uhol a fixácia</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1637.6" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1637.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -243,15 +243,15 @@
<path id="calligraphy-f04-sk.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-sk.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1717)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-sk.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1717)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-sk.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1717)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-sk.svgtext4096" xml:space="preserve" transform="translate(10 1717)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">uhol = 90 stupňov</tspan></text>
- <text id="calligraphy-f04-sk.svgtext4099" xml:space="preserve" transform="translate(10 1717)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">uhol = 30 (predvolené)</tspan></text>
- <text id="calligraphy-f04-sk.svgtext4102" xml:space="preserve" transform="translate(10 1717)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">uhol = 0</tspan></text>
- <text id="calligraphy-f04-sk.svgtext4105" xml:space="preserve" transform="translate(10 1717)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">uhol = -90 stupňov</tspan></text>
- <path id="calligraphy-f04-sk.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-sk.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-sk.svgTriangleInS)" transform="translate(10 239.7)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-sk.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1717) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-sk.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1716.9)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-sk.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1716.9)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-sk.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1716.9)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-sk.svgtext4096" xml:space="preserve" transform="translate(10 1716.9)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">uhol = 90 stupňov</tspan></text>
+ <text id="calligraphy-f04-sk.svgtext4099" xml:space="preserve" transform="translate(10 1716.9)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">uhol = 30 (predvolené)</tspan></text>
+ <text id="calligraphy-f04-sk.svgtext4102" xml:space="preserve" transform="translate(10 1716.9)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">uhol = 0</tspan></text>
+ <text id="calligraphy-f04-sk.svgtext4105" xml:space="preserve" transform="translate(10 1716.9)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sk.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">uhol = -90 stupňov</tspan></text>
+ <path id="calligraphy-f04-sk.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-sk.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-sk.svgTriangleInS)" transform="translate(10 239.6)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-sk.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1716.9) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-sk.svguse2837" xlink:href="#calligraphy-f04-sk.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-sk.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-sk.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -260,7 +260,7 @@
<path id="calligraphy-f04-sk.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-sk.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-sk.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1717)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <path id="calligraphy-f04-sk.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1716.9)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
<rect id="d0e208" display="none" height="1e3px" width="288" y="1869.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -268,18 +268,18 @@
</flowRegion>
<flowDiv xml:space="preserve">Každý tradičný kaligrafický štýl používa svoj vlastný uhol otočenia pera. Napríklad Unical používa uhol 25 stupňov. Zložitejšie rukopisy a zručnejší kaligrafi často menia uhol počas písania, a preto to Inkscape umožňuje pomocou šípok klávesnice <flowSpan font-weight="bold">hore</flowSpan> a <flowSpan font-weight="bold">dole</flowSpan> alebo tabletu, ktorý podporuje detekciu sklonu pera. Pri prvých pokusoch s kaligrafiou však radšej nechajte uhol konštantný. Tu sú príklady ťahov nakreslených s rôznym uhlom (fixácia=100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-sk.svgtext4984" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">uhol = 30</tspan></text>
- <text id="calligraphy-f05-sk.svgtext4987" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">uhol = 60</tspan></text>
- <text id="calligraphy-f05-sk.svgtext4990" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">uhol =90</tspan></text>
- <text id="calligraphy-f05-sk.svgtext4993" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">uhol = 0</tspan></text>
- <text id="calligraphy-f05-sk.svgtext4996" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">uhol = 15</tspan></text>
- <text id="calligraphy-f05-sk.svgtext4999" xml:space="preserve" transform="translate(10 1959.8)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">uhol = -45</tspan></text>
- <path id="calligraphy-f05-sk.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1959.8)" display="block"/>
- <path id="calligraphy-f05-sk.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1959.8)" display="block"/>
- <path id="calligraphy-f05-sk.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1959.8)" display="block"/>
- <path id="calligraphy-f05-sk.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1959.8)" display="block"/>
- <path id="calligraphy-f05-sk.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1959.8)" display="block"/>
- <path id="calligraphy-f05-sk.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1959.8)" display="block"/>
+ <text id="calligraphy-f05-sk.svgtext4984" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">uhol = 30</tspan></text>
+ <text id="calligraphy-f05-sk.svgtext4987" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">uhol = 60</tspan></text>
+ <text id="calligraphy-f05-sk.svgtext4990" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">uhol =90</tspan></text>
+ <text id="calligraphy-f05-sk.svgtext4993" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">uhol = 0</tspan></text>
+ <text id="calligraphy-f05-sk.svgtext4996" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">uhol = 15</tspan></text>
+ <text id="calligraphy-f05-sk.svgtext4999" xml:space="preserve" transform="translate(10 1959.7)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sk.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">uhol = -45</tspan></text>
+ <path id="calligraphy-f05-sk.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1959.7)" display="block"/>
+ <path id="calligraphy-f05-sk.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1959.7)" display="block"/>
+ <path id="calligraphy-f05-sk.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1959.7)" display="block"/>
+ <path id="calligraphy-f05-sk.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1959.7)" display="block"/>
+ <path id="calligraphy-f05-sk.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1959.7)" display="block"/>
+ <path id="calligraphy-f05-sk.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1959.7)" display="block"/>
<rect id="d0e227" display="none" height="1e3px" width="288" y="2115.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
@@ -287,7 +287,7 @@
</flowRegion>
<flowDiv xml:space="preserve">Ako môžete vidieť, ťah je tenší, ak je kreslený rovnobežne s otočením pera a hrubší, ak je kreslený kolmo. Kladné uhly sú prirodzenejšie pre kaligrafiu písanú pravákmi.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2155.1" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2155" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-sk.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-sk.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixácia = 100</tspan></text>
- <text id="calligraphy-f06-sk.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixácia = 80</tspan></text>
- <text id="calligraphy-f06-sk.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixácia = 0</tspan></text>
- <path id="calligraphy-f06-sk.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2235.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sk.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2235.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sk.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2235.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sk.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sk.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sk.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sk.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sk.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sk.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.5) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-sk.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-sk.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixácia = 100</tspan></text>
+ <text id="calligraphy-f06-sk.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixácia = 80</tspan></text>
+ <text id="calligraphy-f06-sk.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2235.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sk.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">uhol = 30</tspan><tspan id="calligraphy-f06-sk.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">fixácia = 0</tspan></text>
+ <path id="calligraphy-f06-sk.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2235.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sk.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2235.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sk.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2235.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sk.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sk.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sk.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sk.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sk.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sk.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sk.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2235.4) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-sk.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-sk.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-sk.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-sk.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-sk.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-sk.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-sk.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-sk.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-sk.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-sk.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-sk.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-sk.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-sk.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-sk.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-sk.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-sk.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-sk.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-sk.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-sk.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-sk.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-sk.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-sk.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-sk.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-sk.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-sk.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-sk.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-sk.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-sk.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-sk.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-sk.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-sk.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-sk.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-sk.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-sk.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-sk.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-sk.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-sk.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-sk.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-sk.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-sk.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-sk.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-sk.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-sk.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-sk.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-sk.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-sk.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-sk.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-sk.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-sk.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sk.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.5) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-sk.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2235.4) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-sk.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sk.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,15 +464,15 @@
<path id="calligraphy-f06-sk.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sk.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2377" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2376.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">V typografickej reči maximálna fixácia, teda maximálny kontrast šírky (hore vľavo), predstavuje antický rukopis ako napríklad Times alebo Bodoni (pretože ich vzhľad je napodobeninou historických kaligrafov). Nulová fixácia, teda nulový kontrast (hore vpravo), na druhej strane pripomína moderný rukopis ako napríklad Helvetica.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2450.5305248000004" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2450.5305248000004" x="10">Chvenie</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2450.4713928000006" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2450.4713928000006" x="10">Chvenie</tspan>
</text>
<rect id="d0e255" display="none" height="1e3px" width="288" y="2455.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -481,7 +481,7 @@
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">Chvenie</flowSpan> slúži na to, aby dodalo kaligrafickým ťahom realistickejší vzhľad. Chvenie sa dá nastaviť v hornej lište pomocou hodnôt v rozsahu od 0 do 100. Prejaviť sa môže od vytvorenia jemných nerovností až po vytvorenie divokých škvŕn a machúľ, čo podstatne rozširuje tvorivý rozsah tohto nástroja.</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-sk.svgg3123" font-size="6px" transform="translate(10 2554.5)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-sk.svgg3123" font-size="6px" transform="translate(10 2554.4)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-sk.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-sk.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">pomaly</tspan></text>
<text id="calligraphy-f07-sk.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-sk.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">stredne</tspan></text>
<text id="calligraphy-f07-sk.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-sk.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">rýchlo</tspan></text>
@@ -495,59 +495,59 @@
<use id="calligraphy-f07-sk.svguse3153" xlink:href="#calligraphy-f07-sk.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-sk.svguse3151" xlink:href="#calligraphy-f07-sk.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-sk.svguse3149" xlink:href="#calligraphy-f07-sk.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-sk.svgtext3177" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">chvenie = 0</tspan></text>
- <text id="calligraphy-f07-sk.svgtext3111" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">chvenie = 10</tspan></text>
- <text id="calligraphy-f07-sk.svgtext1990" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">chvenie = 30</tspan></text>
- <text id="calligraphy-f07-sk.svgtext2991" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">chvenie = 50</tspan></text>
- <text id="calligraphy-f07-sk.svgtext2995" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">chvenie = 70</tspan></text>
- <text id="calligraphy-f07-sk.svgtext1993" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">chvenie = 90</tspan></text>
- <text id="calligraphy-f07-sk.svgtext1996" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">chvenie = 20</tspan></text>
- <text id="calligraphy-f07-sk.svgtext2999" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">chvenie = 40</tspan></text>
- <text id="calligraphy-f07-sk.svgtext3003" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">chvenie = 60</tspan></text>
- <text id="calligraphy-f07-sk.svgtext3007" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">chvenie = 80</tspan></text>
- <text id="calligraphy-f07-sk.svgtext1999" xml:space="preserve" transform="translate(10 2524.5)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">chvenie = 100</tspan></text>
- <path id="calligraphy-f07-sk.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2524.5)"/>
- <path id="calligraphy-f07-sk.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2524.5)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2802.0015078000006" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2802.0015078000006" x="10">Chvenie a hmotnosť</tspan>
+ <text id="calligraphy-f07-sk.svgtext3177" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">chvenie = 0</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext3111" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">chvenie = 10</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext1990" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">chvenie = 30</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext2991" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">chvenie = 50</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext2995" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">chvenie = 70</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext1993" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">chvenie = 90</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext1996" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">chvenie = 20</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext2999" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">chvenie = 40</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext3003" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">chvenie = 60</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext3007" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">chvenie = 80</tspan></text>
+ <text id="calligraphy-f07-sk.svgtext1999" xml:space="preserve" transform="translate(10 2524.4)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sk.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">chvenie = 100</tspan></text>
+ <path id="calligraphy-f07-sk.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2524.4)"/>
+ <path id="calligraphy-f07-sk.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2524.4)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2801.9423758000007" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2801.9423758000007" x="10">Chvenie a hmotnosť</tspan>
</text>
- <rect id="d0e276" display="none" height="1e3px" width="288" y="2807.2" x="10"/>
+ <rect id="d0e276" display="none" height="1e3px" width="288" y="2807.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e276"/>
</flowRegion>
<flowDiv xml:space="preserve">Na rozdiel od šírky a uhla tieto dva posledné parametre definujú „pocit“ z nástroja miesto vzhľadu, preto sa nedajú v tomto návode ilustrovať. Aby ste o nich získali predstavu, bude najlepšie, ak si ich sami vyskúšate.</flowDiv>
</flowRoot>
- <rect id="d0e279" display="none" height="1e3px" width="288" y="2857.3" x="10"/>
+ <rect id="d0e279" display="none" height="1e3px" width="288" y="2857.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e279"/>
@@ -561,223 +561,223 @@
</flowRegion>
<flowDiv xml:space="preserve">Vo fyzike je <flowSpan font-style="italic">hmotnosť</flowSpan> to, čo spôsobuje zotrvačnosť. Väčšia hmotnosť pri kaligrafickom nástroji programu Inkscape spôsobí väčšie oneskorenie za kurzorom myši a tým sa v ťahu vyhladzujú ostré prudké zmeny pohybu a trhnutia. Predvolená hodnota tohto nastavenia je malá (2), preto je nástroj rýchly a reaktívny. Ak chcete pero spomaliť a dosiahnuť plynulejšie ťahy, zvýšte túto hodnotu.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3002.208855800001" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3002.208855800001" x="10">Príklady kaligrafie</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3002.149723800001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3002.149723800001" x="10">Príklady kaligrafie</tspan>
</text>
- <rect id="d0e296" display="none" height="1e3px" width="288" y="3007.4" x="10"/>
+ <rect id="d0e296" display="none" height="1e3px" width="288" y="3007.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e296"/>
</flowRegion>
<flowDiv xml:space="preserve">Teraz, keď už poznáte základné možnosti nástroja, môžete sa pokúsiť vytvoriť naozajstnú kaligrafiu. Ak toto umenie ešte nepoznáte, vezmite si nejakú dobrú knihu a študujte ju spolu s programom Inkscape. V tejto časti si ukážeme niekoľko jednoduchých príkladov.</flowDiv>
</flowRoot>
- <rect id="d0e299" display="none" height="1e3px" width="288" y="3057.5" x="10"/>
+ <rect id="d0e299" display="none" height="1e3px" width="288" y="3057.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e299"/>
</flowRegion>
<flowDiv xml:space="preserve">Predtým, než začnete kresliť písmená, vytvorte si dve vodiace čiary. Ak chcete písať so sklonom, vytvorte si dve šikmé vodiace čiary, napríklad takto:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-sk.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sk.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e312" display="none" height="1e3px" width="288" y="3175.9" x="10"/>
+ <path id="calligraphy-f08-sk.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sk.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3103.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e312" display="none" height="1e3px" width="288" y="3175.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e312"/>
</flowRegion>
<flowDiv xml:space="preserve">Potom zvoľte mierku zobrazenia tak, aby vodiace čiary čo najviac zodpovedali vášmu prirodzenému pohybu ruky, nastavte šírku a uhol a môžte ísť na to!</flowDiv>
</flowRoot>
- <rect id="d0e315" display="none" height="1e3px" width="288" y="3213.7" x="10"/>
+ <rect id="d0e315" display="none" height="1e3px" width="288" y="3213.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e315"/>
</flowRegion>
<flowDiv xml:space="preserve">Pravdepodobne prvou vecou, ktorú by ste sa ako začínajúci kaligrafi mali naučiť, je písanie základných prvkov písmen — vodorovných, zvislých, zaoblených a šikmých ťahov. Tu je niekoľko prvkov písmen z rukopisu Unicial:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-sk.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3271.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-sk.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3271.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-sk.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3271.7)" display="block"/>
- <path id="calligraphy-f09-sk.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3271.7)" display="block"/>
- <rect id="d0e328" display="none" height="1e3px" width="288" y="3314.7" x="10"/>
+ <path id="calligraphy-f09-sk.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3271.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-sk.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3271.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-sk.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3271.6)" display="block"/>
+ <path id="calligraphy-f09-sk.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3271.6)" display="block"/>
+ <rect id="d0e328" display="none" height="1e3px" width="288" y="3314.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e328"/>
</flowRegion>
<flowDiv xml:space="preserve">Niekoľko užitočných rád:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3338.9)"/>
- <rect id="d0e334" display="none" height="1e3px" width="258" y="3332.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3338.8)"/>
+ <rect id="d0e334" display="none" height="1e3px" width="258" y="3332.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e334"/>
</flowRegion>
<flowDiv xml:space="preserve">Ak máte ruku pohodlne položenú na tablete, nehýbte ňou. Miesto toho po dokončení písmena radšej posuňte plátno (<flowSpan font-weight="bold">Ctrl+šípka</flowSpan>) vašou ľavou rukou.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3378.3)"/>
- <rect id="d0e341" display="none" height="1e3px" width="258" y="3372.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3378.2)"/>
+ <rect id="d0e341" display="none" height="1e3px" width="258" y="3372.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e341"/>
</flowRegion>
<flowDiv xml:space="preserve">Ak je váš posledný ťah zlý, tak ho vráťte (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Keď je tvar správny, ale umiestnenie alebo veľkosť je trochu odlišná, je dobré prepnúť na nástroj Výber (<flowSpan font-weight="bold">medzera</flowSpan>) a posunúť, natiahnuť alebo otočiť útvar podľa potreby (pomocou myši alebo klávesnice). Potom znova stlačte <flowSpan font-weight="bold">medzeru</flowSpan>, ktorá opäť zapne kaligrafický nástroj.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3449.7)"/>
- <rect id="d0e354" display="none" height="1e3px" width="258" y="3443.7" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3449.5)"/>
+ <rect id="d0e354" display="none" height="1e3px" width="258" y="3443.5" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e354"/>
</flowRegion>
<flowDiv xml:space="preserve">Po dokončení slova sa prepnite opäť na nástroj Výber, nastavte pravidelnosť paličiek a rozostup písmen. Nepreháňajte to však. Dobrá kaligrafia musí vyzerať ako niečo napísané rukou. Vyhnite sa kopírovaniu písmen a ich jednotlivých prvkov. Každý ťah musí byť jedinečný.</flowDiv>
</flowRoot>
- <rect id="d0e358" display="none" height="1e3px" width="288" y="3504.4" x="10"/>
+ <rect id="d0e358" display="none" height="1e3px" width="288" y="3504.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e358"/>
</flowRegion>
<flowDiv xml:space="preserve">Tu je niekoľko ukážok hotových písmen:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-sk.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-sk.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.6)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">rukopis Unicial</tspan></text>
- <text id="calligraphy-f10-sk.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.6)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">rukopis Carolingian</tspan></text>
- <text id="calligraphy-f10-sk.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.6)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">rukopis Gothic</tspan></text>
- <text id="calligraphy-f10-sk.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.6)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">rukopis Bâtarde</tspan></text>
- <path id="calligraphy-f10-sk.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sk.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3530.6)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-sk.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.6)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">rukopis Flourished Italic</tspan></text>
- <path id="calligraphy-f10-sk.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3530.6)" display="block"/>
- <path id="calligraphy-f10-sk.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3530.6)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4108.9606202" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4108.9606202" x="10">Zhrnutie</tspan>
+ <path id="calligraphy-f10-sk.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-sk.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.4)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">rukopis Unicial</tspan></text>
+ <text id="calligraphy-f10-sk.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.4)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">rukopis Carolingian</tspan></text>
+ <text id="calligraphy-f10-sk.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.4)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">rukopis Gothic</tspan></text>
+ <text id="calligraphy-f10-sk.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.4)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">rukopis Bâtarde</tspan></text>
+ <path id="calligraphy-f10-sk.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sk.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3530.4)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-sk.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3530.4)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sk.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">rukopis Flourished Italic</tspan></text>
+ <path id="calligraphy-f10-sk.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3530.4)" display="block"/>
+ <path id="calligraphy-f10-sk.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3530.4)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4108.822637200002" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4108.822637200002" x="10">Zhrnutie</tspan>
</text>
- <rect id="d0e377" display="none" height="1e3px" width="288" y="4114.2" x="10"/>
+ <rect id="d0e377" display="none" height="1e3px" width="288" y="4114" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e377"/>
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafia nie je len zábava, je to hlboko duchovné umenie, ktoré môže zmeniť váš pohľad na všetko, čo robíte a vidíte. Kaligrafický nástroj programu Inkscape môže slúžiť len ako skromný úvod. Aj napriek tomu je veľmi príjemný na hranie a môže byť užitočný aj v reálnom prevedení. Užite si ho!</flowDiv>
</flowRoot>
- <g transform="translate(0 4174.8)">
+ <g transform="translate(0 4174.6)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.sl.svg b/share/tutorials/tutorial-calligraphy.sl.svg
index 548860d65..e3ac2e37e 100644
--- a/share/tutorials/tutorial-calligraphy.sl.svg
+++ b/share/tutorials/tutorial-calligraphy.sl.svg
@@ -142,27 +142,19 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Če imate grafično tablico in bi radi izkoristili možnosti občutljivosti, morate svojo napravo ustrezno nastaviti. Tovrstno konfiguracijo je potrebno izvesti le enkrat, potem se nastavitve shranijo. Da bi omogočili tovrstno podporo, morate priklopiti grafično tablico pred zagonom Inkscapa, nato pa odprite pogovorno okno <flowSpan font-style="italic">Vhodne naprave ...</flowSpan> prek menija <flowSpan font-style="italic">Datoteka</flowSpan>. V tem odprtem pogovornem oknu izberite priljubljeno napravo in nastavitve za pisalo tablice. Na koncu, ko izberete želene nastavitve, preklopite na orodje Kaligrafija in preklopite gumbe orodne vrstice za pritisk in nagnjenost. Odtlej si bo Inkscape te nastavitve zapomnil.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="669.96" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="671.19" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Inkscapovo kaligrafsko pero je lahko občutljivo na <flowSpan font-style="italic">hitrost</flowSpan> poteze (glejte Tanjšanje spodaj), zaradi česar boste ob uporabi miške ta parameter verjetno želeli zmanjšati na ničelno vrednost.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="722.2146139999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="722.2146139999999" x="10">Kaligrafsko orodje - opcije</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="723.4411739999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="723.4411739999999" x="10">Kaligrafsko orodje - opcije</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="727.41" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="728.64" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
@@ -174,58 +166,58 @@ There are also two buttons to toggle tablet Pressure and Tilt sensitivity on and
drawing tablets).
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="800.6300839999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="800.6300839999999" x="10">Širina in tanjšanje</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="801.856644" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="801.856644" x="10">Širina in tanjšanje</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="805.83" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="807.06" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Ti možnosti nadzirata <flowSpan font-style="italic">širino</flowSpan> vašega peresa. Širina lahko variira od 1 do 100 in se (privzeto) meri v enotah, ki so relativne glede na velikost vašega delovnega okna, vendar neodvisne od povečave. Ker je v kaligrafiji naravna &quot;merska enota&quot; obseg premika roke, je smiselno in pripravno imeti širino peresa v konstantnem razmerju do velikosti vaše &quot;risarske deske&quot; in ne v kaki realni enoti, ki bi bila odvisna od povečave. Vendar pa je to vedenje na voljo kot dodatna izbira in ga je mogoče spremeniti, če imate raje absolutne enote ne glede na povečavo. Za preklop v ta način uporabite potrditveno polje na strani Možnosti tega orodja (odprete jo lahko z dvoklikom na gumb orodja). </flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="920.79" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="922.01" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">Ker se širino peresa pogosto spreminja, jo lahko spremenite brez uporabe orodne vrstice in sicer z uporabo <flowSpan font-weight="bold">desne</flowSpan> in <flowSpan font-weight="bold">leve</flowSpan> smerne tipke. Najboljše pri teh tipkah je, da delujejo med samim risanje, kar pomeni, da lahko širino peresa spreminjate postopno, med vlečenjem poteze:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-sl.svgtext1944" xml:space="preserve" transform="translate(10 989.43)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-sl.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
- <path id="calligraphy-f01-sl.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 989.43)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="1078.4" x="10"/>
+ <text id="calligraphy-f01-sl.svgtext1944" xml:space="preserve" transform="translate(10 990.63)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-sl.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
+ <path id="calligraphy-f01-sl.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 990.63)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="1079.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
</flowRegion>
<flowDiv xml:space="preserve">Širina peresa pa je, glede na parameter <flowSpan font-style="italic">tanjšanja</flowSpan>, lahko odvisna tudi od hitrosti. Ta parameter lahko zavzame vrednosti od -1 do 1, pri čemer vrednost 0 pomeni, da je širina neodvisna od hitrosti, pozitivne vrednosti naredijo hitrejše poteze ožje, negativne vrednosti pa naredijo hitrejše poteze širše. Privzeta vrednost 10 pomeni tanjšanje hitrih potez. Tu je nekaj primerov, pri vseh je širina = 0,2 in kot = 90 stopinj:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-sl.svgtext1987" xml:space="preserve" transform="translate(10 1169.4)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">tanjšanje = 0 (enotna širina)</tspan></text>
- <text id="calligraphy-f02-sl.svgtext1990" xml:space="preserve" transform="translate(10 1169.4)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
- <text id="calligraphy-f02-sl.svgtext1993" xml:space="preserve" transform="translate(10 1169.4)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
- <text id="calligraphy-f02-sl.svgtext1996" xml:space="preserve" transform="translate(10 1169.4)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
- <text id="calligraphy-f02-sl.svgtext1999" xml:space="preserve" transform="translate(10 1169.4)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
- <path id="calligraphy-f02-sl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1169.4)" display="block"/>
- <path id="calligraphy-f02-sl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1169.4)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1367.8" x="10"/>
+ <text id="calligraphy-f02-sl.svgtext1987" xml:space="preserve" transform="translate(10 1170.6)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">tanjšanje = 0 (enotna širina)</tspan></text>
+ <text id="calligraphy-f02-sl.svgtext1990" xml:space="preserve" transform="translate(10 1170.6)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
+ <text id="calligraphy-f02-sl.svgtext1993" xml:space="preserve" transform="translate(10 1170.6)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
+ <text id="calligraphy-f02-sl.svgtext1996" xml:space="preserve" transform="translate(10 1170.6)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
+ <text id="calligraphy-f02-sl.svgtext1999" xml:space="preserve" transform="translate(10 1170.6)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-sl.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
+ <path id="calligraphy-f02-sl.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1170.6)" display="block"/>
+ <path id="calligraphy-f02-sl.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1170.6)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1369" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
@@ -234,16 +226,16 @@ drawing tablets).
jerky movements to get strangely naturalistic, neuron-like shapes:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-sl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1414.8)" display="block"/>
- <path id="calligraphy-f03-sl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1414.8)" display="block"/>
- <path id="calligraphy-f03-sl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1414.8)" display="block"/>
- <path id="calligraphy-f03-sl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1414.8)" display="block"/>
- <path id="calligraphy-f03-sl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1414.8)" display="block"/>
- <path id="calligraphy-f03-sl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1414.8)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1567.9927659999998" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1567.9927659999998" x="10">Kot in stalnost</tspan>
+ <path id="calligraphy-f03-sl.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1416)" display="block"/>
+ <path id="calligraphy-f03-sl.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1416)" display="block"/>
+ <path id="calligraphy-f03-sl.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1416)" display="block"/>
+ <path id="calligraphy-f03-sl.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1416)" display="block"/>
+ <path id="calligraphy-f03-sl.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1416)" display="block"/>
+ <path id="calligraphy-f03-sl.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1416)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1569.199615" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1569.199615" x="10">Kot in stalnost</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1573.2" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1574.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -258,15 +250,15 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-sl.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-sl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1631.3)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-sl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1631.3)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-sl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1631.3)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-sl.svgtext4096" xml:space="preserve" transform="translate(10 1631.3)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">kot = 90 st</tspan></text>
- <text id="calligraphy-f04-sl.svgtext4099" xml:space="preserve" transform="translate(10 1631.3)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">kot = 30 (privzeto)</tspan></text>
- <text id="calligraphy-f04-sl.svgtext4102" xml:space="preserve" transform="translate(10 1631.3)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">kot = 0</tspan></text>
- <text id="calligraphy-f04-sl.svgtext4105" xml:space="preserve" transform="translate(10 1631.3)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">kot = -90 st</tspan></text>
- <path id="calligraphy-f04-sl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-sl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-sl.svgTriangleInS)" transform="translate(10 154)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-sl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1631.3) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-sl.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1632.5)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-sl.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1632.5)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-sl.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1632.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-sl.svgtext4096" xml:space="preserve" transform="translate(10 1632.5)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">kot = 90 st</tspan></text>
+ <text id="calligraphy-f04-sl.svgtext4099" xml:space="preserve" transform="translate(10 1632.5)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">kot = 30 (privzeto)</tspan></text>
+ <text id="calligraphy-f04-sl.svgtext4102" xml:space="preserve" transform="translate(10 1632.5)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">kot = 0</tspan></text>
+ <text id="calligraphy-f04-sl.svgtext4105" xml:space="preserve" transform="translate(10 1632.5)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-sl.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">kot = -90 st</tspan></text>
+ <path id="calligraphy-f04-sl.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-sl.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-sl.svgTriangleInS)" transform="translate(10 155.2)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-sl.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1632.5) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-sl.svguse2837" xlink:href="#calligraphy-f04-sl.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-sl.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-sl.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -275,8 +267,8 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-sl.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-sl.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-sl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1631.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1782.6" x="10"/>
+ <path id="calligraphy-f04-sl.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1632.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1783.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
@@ -290,26 +282,26 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-sl.svgtext4984" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">kot = 30</tspan></text>
- <text id="calligraphy-f05-sl.svgtext4987" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">kot = 60</tspan></text>
- <text id="calligraphy-f05-sl.svgtext4990" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">kot = 90</tspan></text>
- <text id="calligraphy-f05-sl.svgtext4993" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">kot = 0</tspan></text>
- <text id="calligraphy-f05-sl.svgtext4996" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">kot = 15</tspan></text>
- <text id="calligraphy-f05-sl.svgtext4999" xml:space="preserve" transform="translate(10 1883)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">kot = -45</tspan></text>
- <path id="calligraphy-f05-sl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1883)" display="block"/>
- <path id="calligraphy-f05-sl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1883)" display="block"/>
- <path id="calligraphy-f05-sl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1883)" display="block"/>
- <path id="calligraphy-f05-sl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1883)" display="block"/>
- <path id="calligraphy-f05-sl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1883)" display="block"/>
- <path id="calligraphy-f05-sl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1883)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="2038.9" x="10"/>
+ <text id="calligraphy-f05-sl.svgtext4984" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">kot = 30</tspan></text>
+ <text id="calligraphy-f05-sl.svgtext4987" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">kot = 60</tspan></text>
+ <text id="calligraphy-f05-sl.svgtext4990" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">kot = 90</tspan></text>
+ <text id="calligraphy-f05-sl.svgtext4993" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">kot = 0</tspan></text>
+ <text id="calligraphy-f05-sl.svgtext4996" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">kot = 15</tspan></text>
+ <text id="calligraphy-f05-sl.svgtext4999" xml:space="preserve" transform="translate(10 1884.2)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-sl.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">kot = -45</tspan></text>
+ <path id="calligraphy-f05-sl.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1884.2)" display="block"/>
+ <path id="calligraphy-f05-sl.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1884.2)" display="block"/>
+ <path id="calligraphy-f05-sl.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1884.2)" display="block"/>
+ <path id="calligraphy-f05-sl.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1884.2)" display="block"/>
+ <path id="calligraphy-f05-sl.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1884.2)" display="block"/>
+ <path id="calligraphy-f05-sl.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1884.2)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="2040.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">Kot lahko vidite, je poteza najtanjša, ko je risana vzporedno s svojim kotom, in najdebelejša, ko je risana pravokotno nanj. Za desničarje so pozitivni koti najbolj naravni in zato tudi najbolj običajni.</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2078.4" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2079.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -326,19 +318,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-sl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2157.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
- <text id="calligraphy-f06-sl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2157.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
- <text id="calligraphy-f06-sl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2157.4)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">nagibanje = 0</tspan></text>
- <path id="calligraphy-f06-sl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2157.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2157.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2157.4)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-sl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-sl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2157.4) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-sl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-sl.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2158.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
+ <text id="calligraphy-f06-sl.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2158.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
+ <text id="calligraphy-f06-sl.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2158.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-sl.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">kot = 30</tspan><tspan id="calligraphy-f06-sl.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">nagibanje = 0</tspan></text>
+ <path id="calligraphy-f06-sl.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2158.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sl.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2158.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sl.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2158.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-sl.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sl.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sl.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sl.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sl.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-sl.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-sl.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2158.6) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-sl.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-sl.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +339,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-sl.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-sl.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +348,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-sl.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-sl.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +357,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-sl.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-sl.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +366,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-sl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-sl.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-sl.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +375,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-sl.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-sl.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +384,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-sl.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-sl.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +393,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-sl.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-sl.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +402,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-sl.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-sl.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +411,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-sl.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-sl.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +420,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-sl.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-sl.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +429,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-sl.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-sl.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +438,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-sl.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-sl.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +447,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-sl.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-sl.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,7 +456,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-sl.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-sl.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -473,7 +465,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-sl.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-sl.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -482,7 +474,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-sl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2157.4) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-sl.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2158.6) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-sl.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-sl.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -491,17 +483,17 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-sl.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-sl.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e246" display="none" height="1e3px" width="288" y="2298.9" x="10"/>
+ <rect id="d0e246" display="none" height="1e3px" width="288" y="2300.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e246"/>
</flowRegion>
<flowDiv xml:space="preserve">Tipografsko gledano sta največja stalnost in največji kontrast širine poteze (zgoraj levo) značilnosti antičnih tipografij s serifi (npr. Times ali Bodoni, ki sta že historično imitaciji kaligrafije s peresom). Stalnost = 0 in ničelni kontrast širine (zgoraj desno) pa je značilnost modernih tipografij brez serifov (npr. Helvetica).</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2372.450877" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2372.450877" x="10">Tresenje</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2373.618305" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2373.618305" x="10">Tresenje</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2377.7" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2378.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -512,7 +504,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-sl.svgg3123" font-size="6px" transform="translate(10 2476.1)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-sl.svgg3123" font-size="6px" transform="translate(10 2477.2)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-sl.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-sl.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">počasno</tspan></text>
<text id="calligraphy-f07-sl.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-sl.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">srednje</tspan></text>
<text id="calligraphy-f07-sl.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-sl.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">hitro</tspan></text>
@@ -526,59 +518,59 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-sl.svguse3153" xlink:href="#calligraphy-f07-sl.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-sl.svguse3151" xlink:href="#calligraphy-f07-sl.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-sl.svguse3149" xlink:href="#calligraphy-f07-sl.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-sl.svgtext3177" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tresenje = 0</tspan></text>
- <text id="calligraphy-f07-sl.svgtext3111" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
- <text id="calligraphy-f07-sl.svgtext1990" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
- <text id="calligraphy-f07-sl.svgtext2991" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
- <text id="calligraphy-f07-sl.svgtext2995" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
- <text id="calligraphy-f07-sl.svgtext1993" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
- <text id="calligraphy-f07-sl.svgtext1996" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
- <text id="calligraphy-f07-sl.svgtext2999" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
- <text id="calligraphy-f07-sl.svgtext3003" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
- <text id="calligraphy-f07-sl.svgtext3007" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
- <text id="calligraphy-f07-sl.svgtext1999" xml:space="preserve" transform="translate(10 2446.1)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
- <path id="calligraphy-f07-sl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2446.1)"/>
- <path id="calligraphy-f07-sl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2446.1)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2723.601547" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2723.601547" x="10">Wiggle &amp; Mass</tspan>
+ <text id="calligraphy-f07-sl.svgtext3177" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">tresenje = 0</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext3111" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext1990" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext2991" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext2995" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext1993" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext1996" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext2999" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext3003" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext3007" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
+ <text id="calligraphy-f07-sl.svgtext1999" xml:space="preserve" transform="translate(10 2447.2)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-sl.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
+ <path id="calligraphy-f07-sl.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2447.2)"/>
+ <path id="calligraphy-f07-sl.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2447.2)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2724.768975" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2724.768975" x="10">Wiggle &amp; Mass</tspan>
</text>
- <rect id="d0e277" display="none" height="1e3px" width="288" y="2728.8" x="10"/>
+ <rect id="d0e277" display="none" height="1e3px" width="288" y="2730" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e277"/>
</flowRegion>
<flowDiv xml:space="preserve">Zadnja dva parametra, za razliko od kota in širine, definirata kako orodje &quot;čuti&quot; in ne vplivata na njegov vizualni učinek. V tem delu ni nikakršnih ilustracij; namesto tega maso in upor raje raziščite sami!</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2768.3" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2769.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
@@ -589,7 +581,7 @@ if the mass is big, the pen tends to run away on sharp turns; if the mass is zer
wiggle makes the pen to wiggle wildly.
</flowDiv>
</flowRoot>
- <rect id="d0e286" display="none" height="1e3px" width="288" y="2818" x="10"/>
+ <rect id="d0e286" display="none" height="1e3px" width="288" y="2819.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e286"/>
@@ -601,39 +593,39 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2901.774988" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2901.774988" x="10">Kaligrafski primeri</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2902.942416" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2902.942416" x="10">Kaligrafski primeri</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="2907" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="2908.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
</flowRegion>
<flowDiv xml:space="preserve">Zdaj, ko poznate osnovne zmožnosti orodja, lahko s kaligrafijo poizkusite sami. Če ste v tem novi, si priskrbite dobro kaligrafsko knjigo ter jo predelajte z Inkscapom. Ta del vam bo pokazal nekaj enostavnih primerov.</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="2957" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="2958.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
</flowRegion>
<flowDiv xml:space="preserve">Na začetku je za pisanje črk potrebno ustvariti nekaj ravnil, po katerih se boste ravnali. Če boste pisali v poševni pisavi, potrebujete tudi nekaj poševnih smernic, npr.:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-sl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-sl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3004.4)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3077" x="10"/>
+ <path id="calligraphy-f08-sl.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-sl.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3005.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="3078.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
</flowRegion>
<flowDiv xml:space="preserve">Nato povečajte platno, da bo višina med ravniloma ustrezala vašemu najbolj naravnemu obsegu premika roke, prilagodite širino ter kot in… Ustvarjajte!</flowDiv>
</flowRoot>
- <rect id="d0e317" display="none" height="1e3px" width="288" y="3116.5" x="10"/>
+ <rect id="d0e317" display="none" height="1e3px" width="288" y="3117.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e317"/>
@@ -643,184 +635,184 @@ elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-sl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3172.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-sl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3172.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-sl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3172.6)" display="block"/>
- <path id="calligraphy-f09-sl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3172.6)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3215.6" x="10"/>
+ <path id="calligraphy-f09-sl.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3173.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-sl.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3173.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-sl.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3173.7)" display="block"/>
+ <path id="calligraphy-f09-sl.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3173.7)" display="block"/>
+ <rect id="d0e330" display="none" height="1e3px" width="288" y="3216.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e330"/>
</flowRegion>
<flowDiv xml:space="preserve">Nekaj uporabnih nasvetov:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3239.5)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3233.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3240.6)"/>
+ <rect id="d0e336" display="none" height="1e3px" width="258" y="3234.6" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e336"/>
</flowRegion>
<flowDiv xml:space="preserve">Če imate roko udobno nameščeno na tablici, je ne premikajte. Namesto tega z levico premaknite platno po vsaki črki, ki jo napišete (pritisnite <flowSpan font-weight="bold">Ctrl+smerne tipke</flowSpan>).</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3279.8)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3273.8" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3281)"/>
+ <rect id="d0e343" display="none" height="1e3px" width="258" y="3275" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e343"/>
</flowRegion>
<flowDiv xml:space="preserve">Če z vašo zadnjo potezo niste zadovoljni, jo razveljavite (pritisnite <flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Če pa je oblika dobra, vendar odstopata položaj ali velikost, začasno preklopite na orodje Izberi (pritisnite <flowSpan font-weight="bold">preslednico</flowSpan>) in premaknite, raztegnite ali zavrtite potezo kolikor je potrebno (z uporabo miške ali tipk). Za vrnitev na kaligrafsko orodje ponovno pritisnite <flowSpan font-weight="bold">preslednico</flowSpan>.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3352.3)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3346.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3353.4)"/>
+ <rect id="d0e356" display="none" height="1e3px" width="258" y="3347.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
</flowRegion>
<flowDiv xml:space="preserve">Ko napišete besedo, ponovno preklopite v orodje Izberi in prilagodite enotnost in razmak med znaki. Vendar pa nikar ne pretiravajte. Dobra kaligrafija mora do neke mere ohraniti videz ročne pisave. Uprite se skušnjavi kopiranja črk in črkovnih elementov; vsaka poteza naj bo originalna!</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3407" x="10"/>
+ <rect id="d0e360" display="none" height="1e3px" width="288" y="3408.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e360"/>
</flowRegion>
<flowDiv xml:space="preserve">Nekaj zaključenih črkovnih primerov:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-sl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-sl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3433.2)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicialna pisava</tspan></text>
- <text id="calligraphy-f10-sl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3433.2)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolinška pisava</tspan></text>
- <text id="calligraphy-f10-sl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3433.2)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotska pisava</tspan></text>
- <text id="calligraphy-f10-sl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3433.2)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtardska pisava</tspan></text>
- <path id="calligraphy-f10-sl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-sl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3433.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-sl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3433.2)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Razcvetela italična pisava</tspan></text>
- <path id="calligraphy-f10-sl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3433.2)" display="block"/>
- <path id="calligraphy-f10-sl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3433.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4011.589249" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4011.589249" x="10">Zaključek</tspan>
+ <path id="calligraphy-f10-sl.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-sl.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3434.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicialna pisava</tspan></text>
+ <text id="calligraphy-f10-sl.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3434.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Karolinška pisava</tspan></text>
+ <text id="calligraphy-f10-sl.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3434.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gotska pisava</tspan></text>
+ <text id="calligraphy-f10-sl.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3434.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtardska pisava</tspan></text>
+ <path id="calligraphy-f10-sl.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-sl.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3434.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-sl.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3434.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-sl.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Razcvetela italična pisava</tspan></text>
+ <path id="calligraphy-f10-sl.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3434.3)" display="block"/>
+ <path id="calligraphy-f10-sl.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3434.3)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4012.67783" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4012.67783" x="10">Zaključek</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4016.8" x="10"/>
+ <rect id="d0e379" display="none" height="1e3px" width="288" y="4017.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e379"/>
</flowRegion>
<flowDiv xml:space="preserve">Kaligrafija ni le zabava, temveč globoko duhovna veščina, ki lahko spremeni vaš pogled na vse, kar delate in vidite. Inkscapovo kaligrafsko orodje služi le kot skromno uvajanje v vse to. In čeprav se je z njim lepo igrati, je lahko uporabno tudi v resničnem oblikovanju. Uživajte!</flowDiv>
</flowRoot>
- <g transform="translate(0 4077.5)">
+ <g transform="translate(0 4078.6)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.svg b/share/tutorials/tutorial-calligraphy.svg
index 9ac73c909..0db2f5a55 100644
--- a/share/tutorials/tutorial-calligraphy.svg
+++ b/share/tutorials/tutorial-calligraphy.svg
@@ -181,7 +181,7 @@ quill or pen with nib are also not very sensitive to pressure, unlike a brush.
<flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
to configure your device. This configuration will only need to be performed once and
the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
+prior to starting Inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
@@ -294,14 +294,14 @@ angle=90:
jerky movements to get strangely naturalistic, neuron-like shapes:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-en.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-en.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-en.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-en.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-en.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1439)" display="block"/>
- <path id="calligraphy-f03-en.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1439)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1592.1238716999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1592.1238716999999" x="10">Angle &amp; Fixation</tspan>
+ <path id="calligraphy-f03-en.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-en.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-en.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-en.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-en.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1438.9)" display="block"/>
+ <path id="calligraphy-f03-en.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1438.9)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1592.1041607" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1592.1041607" x="10">Angle &amp; Fixation</tspan>
</text>
<rect id="d0e192" display="none" height="1e3px" width="288" y="1597.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -341,7 +341,7 @@ the angle is determined by the tilt of the pen.
<path id="calligraphy-f04-en.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
<path id="calligraphy-f04-en.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1665.7)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1818.3" x="10"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1818.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
@@ -377,7 +377,7 @@ and at its broadest when drawn perpendicular. Positive angles are the most
natural and traditional for right-handed calligraphy.
</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2124.3" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2124.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -571,10 +571,10 @@ fixation and zero width contrast (above right), on the other hand, suggest moder
serif typefaces such as Helvetica.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2428.7041357" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2428.7041357" x="10">Tremor</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2428.6450037" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2428.6450037" x="10">Tremor</tspan>
</text>
- <rect id="d0e255" display="none" height="1e3px" width="288" y="2433.9" x="10"/>
+ <rect id="d0e255" display="none" height="1e3px" width="288" y="2433.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e255"/>
@@ -641,8 +641,8 @@ splotches. This significantly expands the creative range of the tool.
<path id="calligraphy-f07-en.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2502.3)"/>
<path id="calligraphy-f07-en.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2502.3)"/>
<path id="calligraphy-f07-en.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2502.3)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2779.7493357" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2779.7493357" x="10">Wiggle &amp; Mass</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2779.6902037" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2779.6902037" x="10">Wiggle &amp; Mass</tspan>
</text>
<rect id="d0e277" display="none" height="1e3px" width="288" y="2784.9" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
@@ -654,7 +654,7 @@ than affect its visual output. So there won&apos;t be any illustrations in this
instead just try them yourself to get a better idea.
</flowDiv>
</flowRoot>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2833.1" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2833" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
@@ -677,10 +677,10 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2966.5784027" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2966.5784027" x="10">Calligraphy examples</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2966.5192707" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2966.5192707" x="10">Calligraphy examples</tspan>
</text>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="2971.8" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="2971.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
@@ -690,7 +690,7 @@ calligraphy. If you are new to this art, get yourself a good calligraphy book an
it with Inkscape. This section will show you just a few simple examples.
</flowDiv>
</flowRoot>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="3021.6" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="3021.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
@@ -700,15 +700,15 @@ going to write in a slanted or cursive hand, add some slanted guides across the
rulers as well, for example:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-en.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-en.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="3141.3" x="10"/>
+ <path id="calligraphy-f08-en.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-en.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3068.6)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="3141.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
@@ -744,7 +744,7 @@ stems. Here are some letter elements for the Uncial hand:
<path id="calligraphy-f09-en.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3236.5)" display="block"/>
<path id="calligraphy-f09-en.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3236.5)" display="block"/>
<path id="calligraphy-f09-en.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3236.5)" display="block"/>
- <rect id="d0e330" display="none" height="1e3px" width="288" y="3279.6" x="10"/>
+ <rect id="d0e330" display="none" height="1e3px" width="288" y="3279.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e330"/>
@@ -752,8 +752,8 @@ stems. Here are some letter elements for the Uncial hand:
<flowDiv xml:space="preserve">Several useful tips:
</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3303.3)"/>
- <rect id="d0e336" display="none" height="1e3px" width="258" y="3297.3" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3303.2)"/>
+ <rect id="d0e336" display="none" height="1e3px" width="258" y="3297.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e336"/>
@@ -762,8 +762,8 @@ stems. Here are some letter elements for the Uncial hand:
scroll the canvas (<flowSpan font-weight="bold">Ctrl+arrow</flowSpan> keys) with your left hand after finishing
each letter. </flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3342.5)"/>
- <rect id="d0e343" display="none" height="1e3px" width="258" y="3336.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3342.4)"/>
+ <rect id="d0e343" display="none" height="1e3px" width="258" y="3336.4" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e343"/>
@@ -775,8 +775,8 @@ nudge/scale/rotate it as needed (using mouse or keys), then press <flowSpan font
again to return to Calligraphy tool.
</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3402.9)"/>
- <rect id="d0e356" display="none" height="1e3px" width="258" y="3396.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3402.8)"/>
+ <rect id="d0e356" display="none" height="1e3px" width="258" y="3396.8" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e356"/>
@@ -787,7 +787,7 @@ irregular handwritten look. Resist the temptation to copy over letters and lett
elements; each stroke must be original.
</flowDiv>
</flowRoot>
- <rect id="d0e360" display="none" height="1e3px" width="288" y="3457.3" x="10"/>
+ <rect id="d0e360" display="none" height="1e3px" width="288" y="3457.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e360"/>
@@ -795,122 +795,122 @@ elements; each stroke must be original.
<flowDiv xml:space="preserve">And here are some complete lettering examples:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-en.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-en.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Unicial hand</tspan></text>
- <text id="calligraphy-f10-en.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
- <text id="calligraphy-f10-en.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
- <text id="calligraphy-f10-en.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
- <path id="calligraphy-f10-en.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-en.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.2)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-en.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.2)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
- <path id="calligraphy-f10-en.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3483.2)" display="block"/>
- <path id="calligraphy-f10-en.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3483.2)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4061.5649849999995" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4061.5649849999995" x="10">Conclusion</tspan>
+ <path id="calligraphy-f10-en.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-en.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">Uncial hand</tspan></text>
+ <text id="calligraphy-f10-en.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">Carolingian hand</tspan></text>
+ <text id="calligraphy-f10-en.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">Gothic hand</tspan></text>
+ <text id="calligraphy-f10-en.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">Bâtarde hand</tspan></text>
+ <path id="calligraphy-f10-en.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-en.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3483.1)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-en.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3483.1)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-en.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">Flourished Italic hand</tspan></text>
+ <path id="calligraphy-f10-en.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3483.1)" display="block"/>
+ <path id="calligraphy-f10-en.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3483.1)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4061.4467149999996" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4061.4467149999996" x="10">Conclusion</tspan>
</text>
- <rect id="d0e379" display="none" height="1e3px" width="288" y="4066.8" x="10"/>
+ <rect id="d0e379" display="none" height="1e3px" width="288" y="4066.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e379"/>
@@ -921,7 +921,7 @@ calligraphy tool can only serve as a modest introduction. And yet
it is very nice to play with and may be useful in real design. Enjoy!
</flowDiv>
</flowRoot>
- <g transform="translate(0 4116.5)">
+ <g transform="translate(0 4116.4)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.vi.svg b/share/tutorials/tutorial-calligraphy.vi.svg
index 74c154a71..d1f6b3955 100644
--- a/share/tutorials/tutorial-calligraphy.vi.svg
+++ b/share/tutorials/tutorial-calligraphy.vi.svg
@@ -142,27 +142,19 @@
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">If you have a tablet and would like to utilize the sensitivity features, you will need
-to configure your device. This configuration will only need to be performed once and
-the settings are saved. To enable this support you must have the tablet plugged in
-prior to starting inkscape and then proceed to open the <flowSpan font-style="italic">Input Devices...</flowSpan>
-dialog through the <flowSpan font-style="italic">Edit</flowSpan> menu. With this dialog open you can choose the
-preferred device and settings for your tablet pen. Lastly, after choosing those settings, switch
-to the Calligraphy tool and toggle the toolbar buttons for pressure and tilt. From
-now on, Inkscape will remember those settings on startup.
-</flowDiv>
+ <flowDiv xml:space="preserve">Nếu bạn có bàn vẽ điện tử và muốn dùng các chức năng cảm ứng độ nghiêng và lực ấn bút, bạn sẽ phải cấu hình thiết bị này. Các cấu hình chỉ cần làm 1 lần, và sẽ được lưu lại. Để bật chức năng hỗ trợ trong Inkscape, bạn phải cắm bàn vẽ vào trước khi bật Inkscape, rồi mở phần <flowSpan font-style="italic">Thiết bị nhập...</flowSpan> trong trình đơn <flowSpan font-style="italic">Tập tin</flowSpan>. Trong hộp thoại này, bạn có thể chọn thiết bị mình muốn dùng, và đặt các thiết lập cho bàn vẽ điện tử. Cuối cùng, sau khi chọn các thiết lập xong, hãy thử chuyển sang công cụ Thư pháp và bật nút tương ứng trên thanh Điều khiển công cụ để lấy thông số cảm ứng được về lực ấn bút và độ nghiêng. Sau đó, Inkscape sẽ lưu lại các thiết lập và dùng chúng mỗi khi chạy.</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="702.21" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="702.94" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Bút thư pháp của Inkscape cũng rất nhạy với <flowSpan font-style="italic">tốc độ</flowSpan> nét vẽ được thực hiện (xem phần &quot;Thu hẹp&quot; ở dưới), nên nếu dùng chuột thì bạn nên đặt tham số này là 0.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="754.8754752" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="754.8754752" x="10">Các tuỳ chọn cho công cụ Thư pháp</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="755.6098552000001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="755.6098552000001" x="10">Các tuỳ chọn cho công cụ Thư pháp</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="760.08" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="760.81" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
@@ -174,26 +166,26 @@ There are also two buttons to toggle tablet Pressure and Tilt sensitivity on and
drawing tablets).
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="833.2909452" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="833.2909452" x="10">Rộng &amp; Thu hẹp</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="834.0253252000001" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="834.0253252000001" x="10">Rộng &amp; Thu hẹp</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="838.49" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="839.23" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">Hai tham số này cho phép bạn điều chỉnh <flowSpan font-style="italic">độ rộng</flowSpan> của ngòi bút. Giá trị Rộng trong khoảng từ 1 đến 100 và (mặc định) được đo bằng đơn vị tương đối so với kích cỡ của vùng vẽ, nhưng không phụ thuộc vào mức độ thu phóng. Đó là do đơn vị đo đối với công cụ Thư pháp là phạm vi di chuyển của tay bạn, nên sẽ thuận lợi hơn khi vẽ bằng bút có độ rộng nét tỉ lệ không đổi với kích cỡ của bản vẽ, và không bị phụ thuộc vào độ thu phóng. Tuy nhiên chế độ này có thể thay đổi được, nếu bạn bấm đúp chuột vào nút Thư pháp trên thanh công cụ, và chọn ô <flowSpan font-style="italic">Dùng đơn vị tuyệt đối</flowSpan> trong phần Tuỳ chỉnh cho công cụ Thư pháp.</flowDiv>
</flowRoot>
- <rect id="d0e141" display="none" height="1e3px" width="288" y="942.2" x="10"/>
+ <rect id="d0e141" display="none" height="1e3px" width="288" y="942.94" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e141"/>
</flowRegion>
<flowDiv xml:space="preserve">Độ rộng ngòi bút có thể thay đổi thông qua các phím mũi tên <flowSpan font-weight="bold">trái</flowSpan> và <flowSpan font-weight="bold">phải</flowSpan> hoặc qua lực nhấn lên bàn vẽ nếu chức năng cảm ứng lực ấn được bật, nên bạn có thể điều chỉnh nó mà không cần phải truy cập vào Thanh điều khiển công cụ. Các phím này làm việc ngay khi bạn vẽ, nên bạn có thể thay đổi độ rộng của nét vẽ từ từ trong lúc rê chuột:</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-vi.svgtext1944" xml:space="preserve" transform="translate(10 1011.8)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-vi.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
- <path id="calligraphy-f01-vi.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1011.8)" display="block"/>
- <rect id="d0e160" display="none" height="1e3px" width="288" y="1100.8" x="10"/>
+ <text id="calligraphy-f01-vi.svgtext1944" xml:space="preserve" transform="translate(10 1012.5)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-vi.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">width=1, growing.... reaching 47, decreasing... back to 0</tspan></text>
+ <path id="calligraphy-f01-vi.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 1012.5)" display="block"/>
+ <rect id="d0e160" display="none" height="1e3px" width="288" y="1101.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e160"/>
@@ -206,32 +198,32 @@ thinning of fast strokes. Here are a few examples, all drawn with width=20 and
angle=90:
</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-vi.svgtext1987" xml:space="preserve" transform="translate(10 1179.8)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">Thu hẹp = 0 (chiều rộng cố định)</tspan></text>
- <text id="calligraphy-f02-vi.svgtext1990" xml:space="preserve" transform="translate(10 1179.8)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
- <text id="calligraphy-f02-vi.svgtext1993" xml:space="preserve" transform="translate(10 1179.8)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
- <text id="calligraphy-f02-vi.svgtext1996" xml:space="preserve" transform="translate(10 1179.8)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
- <text id="calligraphy-f02-vi.svgtext1999" xml:space="preserve" transform="translate(10 1179.8)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
- <path id="calligraphy-f02-vi.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1179.8)" display="block"/>
- <path id="calligraphy-f02-vi.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1179.8)" display="block"/>
- <rect id="d0e176" display="none" height="1e3px" width="288" y="1378.5" x="10"/>
+ <text id="calligraphy-f02-vi.svgtext1987" xml:space="preserve" transform="translate(10 1180.5)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">Thu hẹp = 0 (chiều rộng cố định)</tspan></text>
+ <text id="calligraphy-f02-vi.svgtext1990" xml:space="preserve" transform="translate(10 1180.5)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">thinning = 10</tspan></text>
+ <text id="calligraphy-f02-vi.svgtext1993" xml:space="preserve" transform="translate(10 1180.5)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">thinning = 40</tspan></text>
+ <text id="calligraphy-f02-vi.svgtext1996" xml:space="preserve" transform="translate(10 1180.5)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">thinning = -20</tspan></text>
+ <text id="calligraphy-f02-vi.svgtext1999" xml:space="preserve" transform="translate(10 1180.5)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-vi.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">thinning = -60</tspan></text>
+ <path id="calligraphy-f02-vi.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 1180.5)" display="block"/>
+ <path id="calligraphy-f02-vi.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 1180.5)" display="block"/>
+ <rect id="d0e176" display="none" height="1e3px" width="288" y="1379.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e176"/>
@@ -240,16 +232,16 @@ angle=90:
jerky movements to get strangely naturalistic, neuron-like shapes:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-vi.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1425.5)" display="block"/>
- <path id="calligraphy-f03-vi.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1425.5)" display="block"/>
- <path id="calligraphy-f03-vi.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1425.5)" display="block"/>
- <path id="calligraphy-f03-vi.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1425.5)" display="block"/>
- <path id="calligraphy-f03-vi.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1425.5)" display="block"/>
- <path id="calligraphy-f03-vi.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1425.5)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1578.6587882" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1578.6587882" x="10">Góc &amp; Độ cố định</tspan>
+ <path id="calligraphy-f03-vi.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1426.2)" display="block"/>
+ <path id="calligraphy-f03-vi.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1426.2)" display="block"/>
+ <path id="calligraphy-f03-vi.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1426.2)" display="block"/>
+ <path id="calligraphy-f03-vi.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1426.2)" display="block"/>
+ <path id="calligraphy-f03-vi.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1426.2)" display="block"/>
+ <path id="calligraphy-f03-vi.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1426.2)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1579.3734582" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1579.3734582" x="10">Góc &amp; Độ cố định</tspan>
</text>
- <rect id="d0e195" display="none" height="1e3px" width="288" y="1583.9" x="10"/>
+ <rect id="d0e195" display="none" height="1e3px" width="288" y="1584.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e195"/>
@@ -264,15 +256,15 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-vi.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-vi.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1674.3)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-vi.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1674.3)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-vi.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1674.3)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-vi.svgtext4096" xml:space="preserve" transform="translate(10 1674.3)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">Góc = 90 độ</tspan></text>
- <text id="calligraphy-f04-vi.svgtext4099" xml:space="preserve" transform="translate(10 1674.3)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">Góc = 30 (mặc định)</tspan></text>
- <text id="calligraphy-f04-vi.svgtext4102" xml:space="preserve" transform="translate(10 1674.3)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">Góc = 0</tspan></text>
- <text id="calligraphy-f04-vi.svgtext4105" xml:space="preserve" transform="translate(10 1674.3)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">Góc = -90 độ</tspan></text>
- <path id="calligraphy-f04-vi.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-vi.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-vi.svgTriangleInS)" transform="translate(10 197)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-vi.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1674.3) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-vi.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1675)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-vi.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1675)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-vi.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1675)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-vi.svgtext4096" xml:space="preserve" transform="translate(10 1675)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">Góc = 90 độ</tspan></text>
+ <text id="calligraphy-f04-vi.svgtext4099" xml:space="preserve" transform="translate(10 1675)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">Góc = 30 (mặc định)</tspan></text>
+ <text id="calligraphy-f04-vi.svgtext4102" xml:space="preserve" transform="translate(10 1675)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">Góc = 0</tspan></text>
+ <text id="calligraphy-f04-vi.svgtext4105" xml:space="preserve" transform="translate(10 1675)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-vi.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">Góc = -90 độ</tspan></text>
+ <path id="calligraphy-f04-vi.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-vi.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-vi.svgTriangleInS)" transform="translate(10 197.7)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-vi.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1675) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-vi.svguse2837" xlink:href="#calligraphy-f04-vi.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-vi.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-vi.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -281,8 +273,8 @@ jerky movements to get strangely naturalistic, neuron-like shapes:
<path id="calligraphy-f04-vi.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-vi.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-vi.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1674.3)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e211" display="none" height="1e3px" width="288" y="1826.9" x="10"/>
+ <path id="calligraphy-f04-vi.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1675)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e211" display="none" height="1e3px" width="288" y="1827.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e211"/>
@@ -296,26 +288,26 @@ keeping the angle constant will work best. Here are examples of strokes drawn at
different angles (fixation = 100):
</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-vi.svgtext4984" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">Góc = 30</tspan></text>
- <text id="calligraphy-f05-vi.svgtext4987" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">Góc = 60</tspan></text>
- <text id="calligraphy-f05-vi.svgtext4990" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">Góc = 90</tspan></text>
- <text id="calligraphy-f05-vi.svgtext4993" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">Góc = 0</tspan></text>
- <text id="calligraphy-f05-vi.svgtext4996" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">Góc = 15</tspan></text>
- <text id="calligraphy-f05-vi.svgtext4999" xml:space="preserve" transform="translate(10 1927.3)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">Góc = -45</tspan></text>
- <path id="calligraphy-f05-vi.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1927.3)" display="block"/>
- <path id="calligraphy-f05-vi.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1927.3)" display="block"/>
- <path id="calligraphy-f05-vi.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1927.3)" display="block"/>
- <path id="calligraphy-f05-vi.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1927.3)" display="block"/>
- <path id="calligraphy-f05-vi.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1927.3)" display="block"/>
- <path id="calligraphy-f05-vi.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1927.3)" display="block"/>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="2083.4" x="10"/>
+ <text id="calligraphy-f05-vi.svgtext4984" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">Góc = 30</tspan></text>
+ <text id="calligraphy-f05-vi.svgtext4987" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">Góc = 60</tspan></text>
+ <text id="calligraphy-f05-vi.svgtext4990" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">Góc = 90</tspan></text>
+ <text id="calligraphy-f05-vi.svgtext4993" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">Góc = 0</tspan></text>
+ <text id="calligraphy-f05-vi.svgtext4996" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">Góc = 15</tspan></text>
+ <text id="calligraphy-f05-vi.svgtext4999" xml:space="preserve" transform="translate(10 1927.9)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-vi.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">Góc = -45</tspan></text>
+ <path id="calligraphy-f05-vi.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1927.9)" display="block"/>
+ <path id="calligraphy-f05-vi.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1927.9)" display="block"/>
+ <path id="calligraphy-f05-vi.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1927.9)" display="block"/>
+ <path id="calligraphy-f05-vi.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1927.9)" display="block"/>
+ <path id="calligraphy-f05-vi.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1927.9)" display="block"/>
+ <path id="calligraphy-f05-vi.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1927.9)" display="block"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="2084.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
</flowRegion>
<flowDiv xml:space="preserve">Như bạn thấy, nét bút trở nên mảnh nhất khi được vẽ song song với Góc đặt bút, và rộng nhất khi vẽ vuông góc với Góc đặt bút. Các góc dương thường cho cảm giác tự nhiên, mô phỏng nét chữ viết bằng tay phải.</flowDiv>
</flowRoot>
- <rect id="d0e233" display="none" height="1e3px" width="288" y="2133.8" x="10"/>
+ <rect id="d0e233" display="none" height="1e3px" width="288" y="2134.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e233"/>
@@ -332,19 +324,19 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-vi.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2212.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
- <text id="calligraphy-f06-vi.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2212.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
- <text id="calligraphy-f06-vi.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2212.8)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Độ cố định = 0</tspan></text>
- <path id="calligraphy-f06-vi.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2212.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-vi.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2212.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-vi.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2212.8)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-vi.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-vi.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-vi.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-vi.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-vi.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-vi.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2212.8) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-vi.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-vi.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2213.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">fixation = 100</tspan></text>
+ <text id="calligraphy-f06-vi.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2213.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">fixation = 80</tspan></text>
+ <text id="calligraphy-f06-vi.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 2213.5)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-vi.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">Góc = 30</tspan><tspan id="calligraphy-f06-vi.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">Độ cố định = 0</tspan></text>
+ <path id="calligraphy-f06-vi.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 2213.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-vi.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 2213.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-vi.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 2213.5)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-vi.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-vi.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-vi.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-vi.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-vi.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-vi.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-vi.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 2213.5) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-vi.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-vi.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -353,7 +345,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-vi.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-vi.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -362,7 +354,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-vi.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-vi.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -371,7 +363,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-vi.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-vi.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -380,7 +372,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-vi.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-vi.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-vi.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -389,7 +381,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-vi.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-vi.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -398,7 +390,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-vi.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-vi.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -407,7 +399,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-vi.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-vi.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -416,7 +408,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-vi.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-vi.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -425,7 +417,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-vi.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-vi.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -434,7 +426,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-vi.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-vi.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -443,7 +435,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-vi.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-vi.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -452,7 +444,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-vi.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-vi.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -461,7 +453,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-vi.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-vi.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -470,7 +462,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-vi.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-vi.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -479,7 +471,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-vi.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-vi.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -488,7 +480,7 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-vi.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2212.8) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-vi.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 2213.5) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-vi.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-vi.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -497,17 +489,17 @@ perpendicular to the stroke, and Angle has no effect anymore:
<path id="calligraphy-f06-vi.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-vi.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e249" display="none" height="1e3px" width="288" y="2354.6" x="10"/>
+ <rect id="d0e249" display="none" height="1e3px" width="288" y="2355.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e249"/>
</flowRegion>
<flowDiv xml:space="preserve">Khi bạn đặt Độ cố định bằng 1, bạn sẽ thu được các mặt chữ cổ như Times hoặc Bodoni, giống như phần bên trái hình trên (vì chúng là các mặt chữ mô phỏng thư pháp được tạo ra với nét bút không đổi). Khi đặt Fixation bằng 0, ta thu được các mặt chữ hiện đại như Sans Serif hoặc Helvetica, giống phần bên phải.</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2428.9581432" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2428.9581432" x="10">Nét run:</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2429.6333922" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2429.6333922" x="10">Nét run:</tspan>
</text>
- <rect id="d0e258" display="none" height="1e3px" width="288" y="2434.2" x="10"/>
+ <rect id="d0e258" display="none" height="1e3px" width="288" y="2434.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e258"/>
@@ -518,7 +510,7 @@ affect your strokes producing anything from slight unevenness to wild blotches a
splotches. This significantly expands the creative range of the tool.
</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-vi.svgg3123" font-size="6px" transform="translate(10 2532.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-vi.svgg3123" font-size="6px" transform="translate(10 2533.2)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-vi.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-vi.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">chậm</tspan></text>
<text id="calligraphy-f07-vi.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-vi.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">vừa</tspan></text>
<text id="calligraphy-f07-vi.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-vi.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">nhanh</tspan></text>
@@ -532,59 +524,59 @@ splotches. This significantly expands the creative range of the tool.
<use id="calligraphy-f07-vi.svguse3153" xlink:href="#calligraphy-f07-vi.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-vi.svguse3151" xlink:href="#calligraphy-f07-vi.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-vi.svguse3149" xlink:href="#calligraphy-f07-vi.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-vi.svgtext3177" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">Nét run = 0</tspan></text>
- <text id="calligraphy-f07-vi.svgtext3111" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
- <text id="calligraphy-f07-vi.svgtext1990" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
- <text id="calligraphy-f07-vi.svgtext2991" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
- <text id="calligraphy-f07-vi.svgtext2995" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
- <text id="calligraphy-f07-vi.svgtext1993" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
- <text id="calligraphy-f07-vi.svgtext1996" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
- <text id="calligraphy-f07-vi.svgtext2999" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
- <text id="calligraphy-f07-vi.svgtext3003" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
- <text id="calligraphy-f07-vi.svgtext3007" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
- <text id="calligraphy-f07-vi.svgtext1999" xml:space="preserve" transform="translate(10 2502.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
- <path id="calligraphy-f07-vi.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2502.6)"/>
- <path id="calligraphy-f07-vi.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2502.6)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2780.3490432" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2780.3490432" x="10">Wiggle &amp; Mass</tspan>
+ <text id="calligraphy-f07-vi.svgtext3177" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">Nét run = 0</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext3111" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">tremor = 10</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext1990" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">tremor = 30</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext2991" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">tremor = 50</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext2995" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">tremor = 70</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext1993" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">tremor = 90</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext1996" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">tremor = 20</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext2999" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">tremor = 40</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext3003" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">tremor = 60</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext3007" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">tremor = 80</tspan></text>
+ <text id="calligraphy-f07-vi.svgtext1999" xml:space="preserve" transform="translate(10 2503.2)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-vi.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">tremor = 100</tspan></text>
+ <path id="calligraphy-f07-vi.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2503.2)"/>
+ <path id="calligraphy-f07-vi.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2503.2)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2781.0242921999998" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2781.0242921999998" x="10">Wiggle &amp; Mass</tspan>
</text>
- <rect id="d0e280" display="none" height="1e3px" width="288" y="2785.5" x="10"/>
+ <rect id="d0e280" display="none" height="1e3px" width="288" y="2786.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e280"/>
</flowRegion>
<flowDiv xml:space="preserve">Không giống các tham số về độ rộng và góc ở phần trước, 2 tham số này định nghĩa cách thức công cụ Thư pháp “cảm nhận” hơn là vẽ ra một thứ gì trên tài liệu của bạn. Cho nên trong phần này sẽ không có hình minh họa nào cả, và bạn sẽ phải thử thực hành nhiều lần để hiểu hơn về chúng.</flowDiv>
</flowRoot>
- <rect id="d0e283" display="none" height="1e3px" width="288" y="2846.7" x="10"/>
+ <rect id="d0e283" display="none" height="1e3px" width="288" y="2847.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e283"/>
@@ -595,7 +587,7 @@ if the mass is big, the pen tends to run away on sharp turns; if the mass is zer
wiggle makes the pen to wiggle wildly.
</flowDiv>
</flowRoot>
- <rect id="d0e289" display="none" height="1e3px" width="288" y="2896.5" x="10"/>
+ <rect id="d0e289" display="none" height="1e3px" width="288" y="2897.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e289"/>
@@ -607,39 +599,39 @@ quite small (2) so that the tool is fast and responsive, but you can increase ma
get slower and smoother pen.
</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2980.2165471999997" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2980.2165471999997" x="10">Các ví dụ về Thư pháp</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2980.8917961999996" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2980.8917961999996" x="10">Các ví dụ về Thư pháp</tspan>
</text>
- <rect id="d0e301" display="none" height="1e3px" width="288" y="2985.4" x="10"/>
+ <rect id="d0e301" display="none" height="1e3px" width="288" y="2986.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e301"/>
</flowRegion>
<flowDiv xml:space="preserve">Sau khi đã hiểu sơ sơ về các khả năng của công cụ Thư pháp, bạn hãy dùng nó để thử tạo ra một tác phẩm thư pháp xem sao! Nếu bạn chưa bao giờ tập vẽ thư pháp, hãy kiếm cho mình một cuốn sách hay về nghệ thuật này và học nó trên Inkscape. Chương này cho bạn xem một số ví dụ về thư pháp.</flowDiv>
</flowRoot>
- <rect id="d0e304" display="none" height="1e3px" width="288" y="3046.9" x="10"/>
+ <rect id="d0e304" display="none" height="1e3px" width="288" y="3047.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e304"/>
</flowRegion>
<flowDiv xml:space="preserve">Trước hết, để viết một lá thư, bạn cần phải tạo ra một cặp thước kẻ để định vị nét bút. Nếu bạn viết chữ nghiêng hay chữ thảo, hãy thêm một số đường gióng nghiêng giữa 2 thước kẻ. Ví dụ:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-vi.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-vi.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e317" display="none" height="1e3px" width="288" y="3167.8" x="10"/>
+ <path id="calligraphy-f08-vi.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-vi.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 3095.8)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e317" display="none" height="1e3px" width="288" y="3168.4" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e317"/>
</flowRegion>
<flowDiv xml:space="preserve">Sau đó phóng to để sao cho chiều cao giữa 2 thước kẻ tương ứng với độ di chuyển cổ tay của bạn, rồi đặt các tham số độ rộng và góc trước khi viết!</flowDiv>
</flowRoot>
- <rect id="d0e320" display="none" height="1e3px" width="288" y="3206.4" x="10"/>
+ <rect id="d0e320" display="none" height="1e3px" width="288" y="3207.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e320"/>
@@ -649,184 +641,184 @@ elements of letters — vertical and horizontal stems, round strokes, slanted
stems. Here are some letter elements for the Uncial hand:
</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-vi.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3262.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-vi.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3262.5)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-vi.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3262.5)" display="block"/>
- <path id="calligraphy-f09-vi.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3262.5)" display="block"/>
- <rect id="d0e333" display="none" height="1e3px" width="288" y="3305.5" x="10"/>
+ <path id="calligraphy-f09-vi.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 3263.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-vi.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 3263.2)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-vi.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 3263.2)" display="block"/>
+ <path id="calligraphy-f09-vi.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 3263.2)" display="block"/>
+ <rect id="d0e333" display="none" height="1e3px" width="288" y="3306.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e333"/>
</flowRegion>
<flowDiv xml:space="preserve">Một số mẹo nhỏ:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3329.9)"/>
- <rect id="d0e339" display="none" height="1e3px" width="258" y="3323.9" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3330.5)"/>
+ <rect id="d0e339" display="none" height="1e3px" width="258" y="3324.5" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e339"/>
</flowRegion>
<flowDiv xml:space="preserve">Nếu tay bạn đặt thoải mái trên bàn viết, đừng di chuyển nó. Thay vào đó, hãy cuộn khung vẽ (<flowSpan font-weight="bold">Ctrl+mũi tên</flowSpan>) bằng tay trái sau khi hoàn tất mỗi chữ.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3368.5)"/>
- <rect id="d0e346" display="none" height="1e3px" width="258" y="3362.5" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3369.2)"/>
+ <rect id="d0e346" display="none" height="1e3px" width="258" y="3363.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e346"/>
</flowRegion>
<flowDiv xml:space="preserve">Nếu nét bút cuối cùng của bạn trông xấu, hãy sửa lại bằng lệnh Hủy bước (<flowSpan font-weight="bold">Ctrl+Z</flowSpan>). Tuy nhiên, nếu hình dạng của nó đạt chất lượng nhưng vị trí cũng như kích thước hơi bị sai, hãy chuyển sang công cụ Chọn bằng <flowSpan font-weight="bold">phím cách</flowSpan> và di chuyển, co giãn hay xoay lại nét vẽ cho vừa ý. Sau đó nhấn <flowSpan font-weight="bold">phím cách</flowSpan> thêm lần nữa để chuyển lại về công cụ Thư pháp.</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 3440.6)"/>
- <rect id="d0e359" display="none" height="1e3px" width="258" y="3434.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 3441.2)"/>
+ <rect id="d0e359" display="none" height="1e3px" width="258" y="3435.2" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e359"/>
</flowRegion>
<flowDiv xml:space="preserve">Sau khi hoàn tất một từ, hãy chuyển sang công cụ Chọn và điều chỉnh lại cho phù hợp. Đừng làm quá, vì các bản thư pháp đẹp phải giữ lại tính bất quy tắc của nét vẽ tay. Tránh vội vàng sao chép các chữ và các thành phần của chữ: hãy vẽ những nét nguyên bản.</flowDiv>
</flowRoot>
- <rect id="d0e363" display="none" height="1e3px" width="288" y="3496.1" x="10"/>
+ <rect id="d0e363" display="none" height="1e3px" width="288" y="3496.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e363"/>
</flowRegion>
<flowDiv xml:space="preserve">Và đây là một số ví dụ hoàn chỉnh về Thư pháp:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-vi.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-vi.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3522.7)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">chữ Unicial</tspan></text>
- <text id="calligraphy-f10-vi.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3522.7)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">chữ Carolingian</tspan></text>
- <text id="calligraphy-f10-vi.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3522.7)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">chữ Gothic</tspan></text>
- <text id="calligraphy-f10-vi.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3522.7)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">chữ Bâtarde</tspan></text>
- <path id="calligraphy-f10-vi.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-vi.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3522.7)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-vi.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3522.7)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">chữ nghiêng trang trí</tspan></text>
- <path id="calligraphy-f10-vi.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3522.7)" display="block"/>
- <path id="calligraphy-f10-vi.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3522.7)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4101.218653999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="4101.218653999999" x="10">Kết luận</tspan>
+ <path id="calligraphy-f10-vi.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-vi.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3523.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">chữ Uncial</tspan></text>
+ <text id="calligraphy-f10-vi.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3523.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">chữ Carolingian</tspan></text>
+ <text id="calligraphy-f10-vi.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3523.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">chữ Gothic</tspan></text>
+ <text id="calligraphy-f10-vi.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3523.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">chữ Bâtarde</tspan></text>
+ <path id="calligraphy-f10-vi.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-vi.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 3523.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-vi.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 3523.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-vi.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">chữ nghiêng trang trí</tspan></text>
+ <path id="calligraphy-f10-vi.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 3523.3)" display="block"/>
+ <path id="calligraphy-f10-vi.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 3523.3)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="4101.815051999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="4101.815051999999" x="10">Kết luận</tspan>
</text>
- <rect id="d0e382" display="none" height="1e3px" width="288" y="4106.4" x="10"/>
+ <rect id="d0e382" display="none" height="1e3px" width="288" y="4107" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e382"/>
</flowRegion>
<flowDiv xml:space="preserve">Thư pháp là một công cụ rất lý thú; nó dùng để diễn tả cả một nghệ thuật, có thể được áp dụng cho tất cả các sáng tạo của bạn. Hãy học cách dùng Thư pháp và ứng dụng nó một cách hiệu quả trong các ảnh mà bạn thiết kế. Enjoy!</flowDiv>
</flowRoot>
- <g transform="translate(0 4157.4)">
+ <g transform="translate(0 4157.9)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter56" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/share/tutorials/tutorial-calligraphy.zh_TW.svg b/share/tutorials/tutorial-calligraphy.zh_TW.svg
index db8031da0..ba91201b8 100644
--- a/share/tutorials/tutorial-calligraphy.zh_TW.svg
+++ b/share/tutorials/tutorial-calligraphy.zh_TW.svg
@@ -51,184 +51,184 @@
</flowRegion>
<flowDiv xml:space="preserve">書法工具是 Inkscape 眾多優秀工具的其中之一。這篇教學會幫助你熟悉這個工具的使用方法,示範書法藝術的一些基本技巧。</flowDiv>
</flowRoot>
- <rect id="d0e18" display="none" height="1e3px" width="264" y="69.626" x="35"/>
+ <rect id="d0e18" display="none" height="1e3px" width="264" y="70.491" x="35"/>
<flowRoot font-family="sans-serif" font-size="7.2" font-style="italic" line-height="150%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e18"/>
</flowRegion>
<flowDiv xml:space="preserve">使用 <flowSpan font-weight="bold">Ctrl+方向鍵</flowSpan>、<flowSpan font-weight="bold">滑鼠滾輪</flowSpan> 或 <flowSpan font-weight="bold">按著滑鼠中鍵拖曳</flowSpan> 可向下捲動頁面。關於建立、選取和改變物件的基本方法,請閱讀 <flowSpan font-family="sans-serif">說明 &gt; 指導手冊</flowSpan> 中的基本教學。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="112.27024599999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="112.27024599999999" x="10">歷史與書法風格</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="113.854572" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="113.854572" x="10">歷史與書法風格</tspan>
</text>
- <rect id="d0e39" display="none" height="1e3px" width="288" y="117.47" x="10"/>
+ <rect id="d0e39" display="none" height="1e3px" width="288" y="119.05" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e39"/>
</flowRegion>
<flowDiv xml:space="preserve">依照字典中的定義,<flowSpan font-style="italic">書法</flowSpan>是指「優美的書寫」或「工整或優雅的筆跡」。基本上,書法是創造美麗或優雅的手寫藝術。這樣聽起來感覺很困難,但是經過一點練習,任何人都能掌握這種藝術的基本原則。</flowDiv>
</flowRoot>
- <rect id="d0e45" display="none" height="1e3px" width="288" y="156.83" x="10"/>
+ <rect id="d0e45" display="none" height="1e3px" width="288" y="158.41" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e45"/>
</flowRegion>
<flowDiv xml:space="preserve">書法最簡單的形式可追溯到山頂洞人的壁畫。直到西元 1440 年左右,在印刷機發明以前,書籍與其他出版物都用手書寫而成。繕寫員用手寫出了每本書或出版物的獨特複製品。繕寫員用羽毛筆和墨水在羊皮紙或犢皮紙等材料上完成書寫工作。從古至今流傳使用的文字風格包括有粗俗體、卡洛林王朝體、古黑體等。或許現今一般人最常在喜帖上見到書法。</flowDiv>
</flowRoot>
- <rect id="d0e48" display="none" height="1e3px" width="288" y="217.4" x="10"/>
+ <rect id="d0e48" display="none" height="1e3px" width="288" y="219.31" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e48"/>
</flowRegion>
<flowDiv xml:space="preserve">有三種主要的書法風格:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 241.28)"/>
- <rect id="d0e54" display="none" height="1e3px" width="258" y="235.28" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 243.18)"/>
+ <rect id="d0e54" display="none" height="1e3px" width="258" y="237.18" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e54"/>
</flowRegion>
<flowDiv xml:space="preserve">西方或羅馬</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 259.11)"/>
- <rect id="d0e58" display="none" height="1e3px" width="258" y="253.11" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 261.01)"/>
+ <rect id="d0e58" display="none" height="1e3px" width="258" y="255.01" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e58"/>
</flowRegion>
<flowDiv xml:space="preserve">阿拉伯</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 276.66)"/>
- <rect id="d0e62" display="none" height="1e3px" width="258" y="270.66" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 278.57)"/>
+ <rect id="d0e62" display="none" height="1e3px" width="258" y="272.57" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e62"/>
</flowRegion>
<flowDiv xml:space="preserve">中國或東方</flowDiv>
</flowRoot>
- <rect id="d0e66" display="none" height="1e3px" width="288" y="288.45" x="10"/>
+ <rect id="d0e66" display="none" height="1e3px" width="288" y="290.36" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e66"/>
</flowRegion>
<flowDiv xml:space="preserve">這個教學主要著重於西方書法,而另外兩種風格傾向於使用筆刷 (而非鋼筆的筆尖),這不是我們的書法工具目前的功能。</flowDiv>
</flowRoot>
- <rect id="d0e69" display="none" height="1e3px" width="288" y="318.06" x="10"/>
+ <rect id="d0e69" display="none" height="1e3px" width="288" y="319.39" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e69"/>
</flowRegion>
<flowDiv xml:space="preserve">我們有一個以前繕寫員所沒有的極大優勢,那就是<flowSpan font-family="sans-serif">復原</flowSpan>指令:如果你寫錯了,不必毀去整張紙。Inkscape 的書法工具也能夠實現一些傳統筆墨無法做到的技巧。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="360.8571079999999" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="360.8571079999999" x="10">硬體設備</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="361.295804" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="361.295804" x="10">硬體設備</tspan>
</text>
- <rect id="d0e81" display="none" height="1e3px" width="288" y="366.06" x="10"/>
+ <rect id="d0e81" display="none" height="1e3px" width="288" y="366.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e81"/>
</flowRegion>
<flowDiv xml:space="preserve">如果你使用 <flowSpan font-style="italic">繪圖板</flowSpan> (例如 Wacom) 會得到最佳的效果。所幸我們的工具極具靈活性,即使只使用滑鼠也能創造一些相當複雜的書法,雖然快速製作連綿彎曲的畫筆會有些困難。</flowDiv>
</flowRoot>
- <rect id="d0e87" display="none" height="1e3px" width="288" y="405.1" x="10"/>
+ <rect id="d0e87" display="none" height="1e3px" width="288" y="405.86" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e87"/>
</flowRegion>
<flowDiv xml:space="preserve">Inkscape 能支援繪圖筆的<flowSpan font-style="italic">壓力感應</flowSpan>和<flowSpan font-style="italic">傾斜感應</flowSpan>特性。感應功能因為需要設定,所以預設是停用的。另外,記住一點用羽毛筆或鋼筆寫的書法對壓力變化的感應也不會很靈敏,與筆刷不同。</flowDiv>
</flowRoot>
- <rect id="d0e96" display="none" height="1e3px" width="288" y="444.4" x="10"/>
+ <rect id="d0e96" display="none" height="1e3px" width="288" y="445.48" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e96"/>
</flowRegion>
- <flowDiv xml:space="preserve">如果你有繪圖板並且想使用感壓功能,需要設定一下你的裝置。只需要設置一次並儲存設定。要啟用這項支援你必須再啟動 inkscape 之前插上繪圖板然後開啟<flowSpan font-style="italic">編輯</flowSpan>選單中的<flowSpan font-style="italic">輸入裝置...</flowSpan>對話窗。你可以在開啟的對話窗中選擇偏好的裝置和設定你的繪圖筆。完成這些設定後,切換到書法工具並且按下工具列上壓力和傾斜開關按鈕。從此之後 Inkscape 在啟動時會記住這些設定值。</flowDiv>
+ <flowDiv xml:space="preserve">如果你有繪圖板並且想使用感壓功能,需要設定一下你的裝置。只需要設置一次並儲存設定。要啟用這項支援你必須再啟動 Inkscape 之前插上繪圖板然後開啟<flowSpan font-style="italic">編輯</flowSpan>選單中的<flowSpan font-style="italic">輸入裝置...</flowSpan>對話窗。你可以在開啟的對話窗中選擇偏好的裝置和設定你的繪圖筆。完成這些設定後,切換到書法工具並且按下工具列上壓力和傾斜開關按鈕。從此之後 Inkscape 在啟動時會記住這些設定值。</flowDiv>
</flowRoot>
- <rect id="d0e105" display="none" height="1e3px" width="288" y="508.08" x="10"/>
+ <rect id="d0e105" display="none" height="1e3px" width="288" y="507.12" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e105"/>
</flowRegion>
<flowDiv xml:space="preserve">Inkscape 的美工筆能感應畫筆的<flowSpan font-style="italic">速度</flowSpan> (詳見下面“細化”小節),所以如果你正在使用滑鼠,你可能會想讓這個參數值為零。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="549.5933669999998" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="549.5933669999998" x="10">書法工具選項</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="548.9542439999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="548.9542439999999" x="10">書法工具選項</tspan>
</text>
- <rect id="d0e117" display="none" height="1e3px" width="288" y="554.79" x="10"/>
+ <rect id="d0e117" display="none" height="1e3px" width="288" y="554.15" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e117"/>
</flowRegion>
<flowDiv xml:space="preserve">按 <flowSpan font-weight="bold">Ctrl+F6</flowSpan>、<flowSpan font-weight="bold">C</flowSpan> 按鍵或點擊工具列上的按鈕來切換到書法工具。你會注意到在上方工具列有 8 個選項:寬度和細化;角度和固定;端點;顫抖;擺動和質量。也有兩個按鈕可開關繪圖板的壓力和傾斜感應功能 (繪圖板)。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="608.6752489999998" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="608.6752489999998" x="10">寬度和細化</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="606.8904949999999" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="606.8904949999999" x="10">寬度和細化</tspan>
</text>
- <rect id="d0e132" display="none" height="1e3px" width="288" y="613.88" x="10"/>
+ <rect id="d0e132" display="none" height="1e3px" width="288" y="612.09" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e132"/>
</flowRegion>
<flowDiv xml:space="preserve">這組選項控制你的畫筆<flowSpan font-style="italic">寬度</flowSpan>。寬度可從 1 變化到 100 而且 (預設) 測量的單位相對於你的編輯視窗大小,但與畫面縮放無關。這樣設計是有原因的,因為在書法中的自然“測量單位”是你手移動的範圍,因而方便你的筆尖寬度使用“繪圖板”大小的固定比例,而不是用真實單位,這樣可以使其取決於畫面大小。這種運作方式不是強制的,所以可轉而使用不管畫面縮放的絕對單位。勾選於工具的偏好設定頁面上的勾選方格來切換為這種模式 (點擊兩次此工具按鈕可開啟偏好設定頁面)。</flowDiv>
</flowRoot>
- <rect id="d0e138" display="none" height="1e3px" width="288" y="686.94" x="10"/>
+ <rect id="d0e138" display="none" height="1e3px" width="288" y="684.01" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e138"/>
</flowRegion>
<flowDiv xml:space="preserve">由於會時常改變筆尖寬度,所以你不必到工具列調整寬度,直接使用<flowSpan font-weight="bold">左</flowSpan>和<flowSpan font-weight="bold">右</flowSpan>方向鍵或繪圖板的感壓功能。最棒的是你能一邊繪畫一邊使用這些快捷鍵,所以你能逐漸改變筆畫中間的寬度。</flowDiv>
</flowRoot>
- <text id="calligraphy-f01-zh_TW.svgtext1944" xml:space="preserve" transform="translate(10 734.24)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-zh_TW.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">寬度=1, 逐漸變寬.... 達到 47, 逐漸變細... 回到 0</tspan></text>
- <path id="calligraphy-f01-zh_TW.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 734.24)" display="block"/>
- <rect id="d0e157" display="none" height="1e3px" width="288" y="823.67" x="10"/>
+ <text id="calligraphy-f01-zh_TW.svgtext1944" xml:space="preserve" transform="translate(10 731.31)" display="block" font-size="6" y="4.5585475" x="9.8966846" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f01-zh_TW.svgtspan1945" y="4.5585475" x="9.8966846" sodipodi:role="line">寬度=1, 逐漸變寬.... 達到 47, 逐漸變細... 回到 0</tspan></text>
+ <path id="calligraphy-f01-zh_TW.svgpath1924" d="m9.1204 35.709c0.9316-5.078 2.4816-14.745 9.0106-14.719 8.84 10.556-4.057 43.768 0.144 55.285 4.081-15.495 6.504-31.801 12.562-46.852 1.701-4.225 2.12-7.102 6.588-4.823 2.384 13.632 0.485 27.841-0.403 41.587-0.149 2.306 1.754 8.157-0.204 6.93-4.417-2.767-1.946-5.807-0.97-10.514 1.185-5.918 1.144-6.374 2.904-12.326 2.564-8.67 7.108-28.554 19.933-24.974 2.61 0.729 2.735 7.73 2.787 9.311 0.103 3.157-0.175 7.64-0.323 10.756-1.515 4.677 1.194 25.395-8.709 19.83-1.952-1.097 7.698-31.492 8.782-34.309 25.586-40.898 19.203 22.846 17.852 33.492-0.811 5.04 0.818 6.097-8.483 3.447-0.089-0.026 0.254-1.921 0.829-5.253 1.617-9.37 6.806-35.786 16.39-39.72 3.576 0.224 7.235-0.118 10.73 0.674 3.73 0.844 2.23 28.887 1.92 32.641-0.24 2.994-0.621 5.978-0.775 8.978-0.063 1.237 1.325 3.64 0.091 3.716-11.032 0.678-10.754 2.466-9.444-2.619 3.503-10.893 14.008-46.878 28.408-47.33 11.54-0.362 13.54-2.424 18.48 4.878 3.11 4.429 3.93 45.038 1.63 45.159-15.69 0.819-13.99 1.101-12.27-9.844 0.36-1.724 0.69-3.453 1.07-5.173 1.98-9.024 5.09-20.499 11.92-27.237 1.01-0.996 2.27-1.987 3.79-1.949 18.75 0.47 17.95-0.942 19.94 14.835 0.44 2.118 0.35 27.483-0.63 27.546-4.71 0.301-9.48 0.4-14.15-0.235-1.99-0.27 5.17-25.894 5.61-27.281 1.36-8.593 19.71-40.437 32.41-21.138 6.69 10.167 3.21 27.718 1.99 38.921-1.75 10.527 0.23 15.659-14.68 10.814-0.01-0.002 0.83-4.26 1.56-6.809 3.13-11.027 6.89-23.077 15.06-31.463 26.22-13.783 24.19 31.328 20.53 44.478-3.37-0.135-7.02 0.942-10.12-0.404-0.21-0.092 0.81-4.992 2.03-9.691 2.68-10.355 5.75-20.792 10.24-30.524 2.25-4.856 5.13-11.172 9.27-14.831 7.17-6.351 14.29-1.959 16.19 5.334 0.85 5.409 1.13 6.225 1.38 11.963 0.41 9.122 0.32 18.425-0.16 27.543-0.2 3.763-0.58 5.542-0.49 9.075 0.02 0.581 0.76 1.959 0.22 1.73-2.11-0.909-5.07-1.801-5.6-4.043-0.67-2.85 12.45-27.717 14.53-31.722 2.06-3.558 4.07-7.516 6.81-10.656 3.56-4.067 12.74-6.465 14.43 0.713 3.36 14.212-0.3 31.173-2 45.454-0.48 2.491-0.19 3.545-5.29 1.152-1.02-0.478 1.34-10.519 1.37-10.67 1.76-8.363 9.58-38.515 18.93-41.057 1.59 0.313 3.37 0.116 4.77 0.941 2.25 1.332-1.17 30.392-1.62 34.351-0.21 1.859-0.46 6.587-0.94 6.758-3.28 1.164-2.09-0.65-1.69-1.846 4.08-13.812 6.71-30.096 16.16-41.568 4.61-5.589 6.27 0.264 6.42 4.665 2.19 11.71-4.29 25.935-2.39 37.33 0.09 0.553 0.51-1.001 0.69-1.531 1.23-3.624 2.55-7.183 3.96-10.745 2.94-4.381 9.38-25.422 10.47-8.378-1.09-17.044-7.53 3.997-10.47 8.378-1.41 3.562-2.73 7.121-3.96 10.745-0.18 0.53-0.6 2.084-0.69 1.531-1.82-10.95 3.73-25.953 1.73-37.33-0.26-2.091-0.58-6.88-1.22-7.073-2.02-0.614-4.83 4.713-5.34 5.563-7.01 11.669-10.21 25.33-13.36 38.413-0.2 1.558 0.17 2.846-2.65 1.846-1.06-0.377 0.12-2.248 0.22-3.369 0.93-10.706 2.69-21.446 2.19-32.228-0.16-3.486-2.79-5.505 1.39-6.453-8.84 2.405-16.81 33.016-18.26 41.057-0.47 2.592-0.8 10.549-1.04 10.67-5.64 2.8-4.81 1.053-4.38-1.152 1.57-13.192 3.25-27.488 1.88-40.738-0.16-1.591-0.45-3.175-0.88-4.716-0.3-1.051-1.91-2.124-1.28-3.017 0.83-1.181 2.77-0.861 4.19-1.12 0.81-0.147-1.66 0.319-2.34 0.784-4.48 3.071-6.62 9.015-9.47 13.296-2.16 4.536-11.63 29.999-13.52 31.722-2.53 2.298-6.1 3.246-9.42 4.043-1.75 0.418-0.18-3.583-0.15-5.375 0.25-14.98 1.18-30.1-1.48-44.936-1.48-4.337-7.05-9.614 3.52-6.853 0.6 0.157-1.28-0.676-5.22 4.918-2.71 3.843-4.15 7.08-6.06 11.432-4.31 9.831-7.72 20.012-9.91 30.524-0.42 1.977-0.74 3.971-1.09 5.961-0.22 1.241 0.57 3.269-0.61 3.73-3.07 1.21-6.6 0.269-9.9 0.404 3.11-11.191 1.28-26.437-1.66-37.429-0.67-2.528-1.31-4.502-2.98-6.518-0.48-0.582-2.47-1.298-1.73-1.454 15.54-3.293 10.91-1.03 7.53 0.923-8.01 8.227-11.69 20.567-14.39 31.463-0.34 1.364-0.68 2.726-1 4.095-0.2 0.901 0.32 2.457-0.56 2.714-17.57 5.079-11.8-0.307-10.68-10.814 1.1-10.155 1.84-20.686-0.01-30.799-0.44-2.372-1.13-6.011-2.66-8.122-0.55-0.763-3.1-1.619-2.18-1.795 3.8-0.725 7.81-0.778 11.6-0.003 1.07 0.219-1.94 1.068-2.73 1.817-5.89 5.539-8.39 13.912-11.39 21.119-1.91 6.034-3.62 11.968-4.68 18.217-0.37 2.153-0.76 5.113-0.91 7.381-0.04 0.56 0.53 1.607-0.02 1.683-4.59 0.633-9.27 0.545-13.89 0.235-0.39-0.027 0.16-0.765 0.21-1.153 0.2-1.645 0.41-4.598 0.5-6.08 0.41-6.763 0.52-13.556-0.08-20.313-2.06-16.343-10.31-14.05 8.43-14.835 0.31-0.013-2.91-0.005-6.34 4.624-6.38 8.615-9.19 19.431-11.43 29.735-1.7 10.783 1.57 10.724-14.11 9.844-0.38-0.021 0.21-0.723 0.3-1.09 0.68-2.886 0.63-2.834 0.96-6.202 1.23-12.529 2.25-25.777-1.89-37.867-2.99-5.317-9.35-6.15 5.22-4.878 1.01 0.089-1.99 0.447-2.91 0.877-2.66 1.247-4.66 3.005-6.65 5.159-10.5 11.399-15.28 26.842-19.85 41.294-2.143 5.174-0.59 3.239-11.582 2.619-0.217-0.012 1.877-22.305 2.005-24.42 0.305-5.044 0.527-10.541-0.195-15.57-0.162-1.128-0.426-2.251-0.833-3.315-0.281-0.736-1.938-1.724-1.211-2.03 2.352-0.992 5.085-0.45 7.628-0.674-9.309 3.821-14.089 26.213-16.251 35.056-0.642 2.623-1.842 9.882-1.969 9.917-10.392 2.798-7.845 1.476-7.205-3.447 1.345-10.599 3.084-21.334 2.768-32.056-0.081-2.72-0.448-5.859-1.278-8.495-0.274-0.869-1.785-1.883-1.112-2.497 1.268-1.157 3.355-0.728 5.034-1.083 0.66-0.139-1.386 0.109-1.975 0.438-3.754 2.09-5.327 6.718-7.27 10.201-4.063 9.155-6.833 18.644-8.693 28.49-0.363 1.922 0.974 4.907-0.756 5.819-1.626 0.857-3.623 0.728-5.46 0.762-0.238 0.004 0.199-0.437 0.257-0.668 0.434-1.714 0.823-3.442 1.156-5.179 0.932-4.873 1.455-9.826 2.074-14.745 0.543-5.065 1.02-10.012 0.285-15.094-0.156-1.074-0.297-2.175-0.716-3.177-0.29-0.694-1.73-1.138-1.366-1.796 0.412-0.742 2.387-1.139 2.529-0.302 0.15 0.88-1.676 0.688-2.367 1.254-0.94 0.769-1.726 1.721-2.454 2.693-7.293 9.734-9.769 22.189-12.867 33.655-1.079 5.2-0.223 8.27-5.372 10.514-2.125 0.926 0.306-4.625 0.537-6.93 1.383-13.762 2.927-27.79 1.405-41.587 2.349-3.502-1.549 0.93-1.69 1.172-1.82 3.131-2.554 5.08-3.802 8.617-3.587 10.168-6.046 20.605-8.594 31.065-0.761 3.126-0.984 9.093-4.062 10.821-4.201-11.517 8.695-44.729-0.145-55.285-5.398 2.099-7.155 9.443-8.0088 14.719h-0.3338z" transform="translate(10 731.31)" display="block"/>
+ <rect id="d0e157" display="none" height="1e3px" width="288" y="820.74" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e157"/>
</flowRegion>
<flowDiv xml:space="preserve">筆尖寬度也可以取決於速度,由<flowSpan font-style="italic">細化</flowSpan>參數進行控制。這項參數可設定的數值為 -100 到 100;零表示筆寬與速度無關,數值為正表示速度越快筆畫越細,數值為負則越快筆畫越寬。預設值 10 表示快速的筆畫會有中等程度的細化。這裡有一些例子,全部以寬度=20 且角度=90:</flowDiv>
</flowRoot>
- <text id="calligraphy-f02-zh_TW.svgtext1987" xml:space="preserve" transform="translate(10 884.15)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">細化 = 0 (等寬) </tspan></text>
- <text id="calligraphy-f02-zh_TW.svgtext1990" xml:space="preserve" transform="translate(10 884.15)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">細化 = 10</tspan></text>
- <text id="calligraphy-f02-zh_TW.svgtext1993" xml:space="preserve" transform="translate(10 884.15)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">細化 = 40</tspan></text>
- <text id="calligraphy-f02-zh_TW.svgtext1996" xml:space="preserve" transform="translate(10 884.15)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">細化 = -20</tspan></text>
- <text id="calligraphy-f02-zh_TW.svgtext1999" xml:space="preserve" transform="translate(10 884.15)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">細化 = -60</tspan></text>
- <path id="calligraphy-f02-zh_TW.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 884.15)" display="block"/>
- <path id="calligraphy-f02-zh_TW.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 884.15)" display="block"/>
- <rect id="d0e173" display="none" height="1e3px" width="288" y="1082.8" x="10"/>
+ <text id="calligraphy-f02-zh_TW.svgtext1987" xml:space="preserve" transform="translate(10 879.51)" display="block" font-size="6" y="4.5588474" x="39.896687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1988" y="4.5588474" x="39.896687" sodipodi:role="line">細化 = 0 (等寬) </tspan></text>
+ <text id="calligraphy-f02-zh_TW.svgtext1990" xml:space="preserve" transform="translate(10 879.51)" display="block" font-size="6" y="74.558846" x="62.396687" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1991" y="74.558846" x="62.396687" sodipodi:role="line">細化 = 10</tspan></text>
+ <text id="calligraphy-f02-zh_TW.svgtext1993" xml:space="preserve" transform="translate(10 879.51)" display="block" font-size="6" y="139.55885" x="60.851486" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1994" y="139.55885" x="60.851486" sodipodi:role="line">細化 = 40</tspan></text>
+ <text id="calligraphy-f02-zh_TW.svgtext1996" xml:space="preserve" transform="translate(10 879.51)" display="block" font-size="6" y="4.5588474" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan1997" y="4.5588474" x="212.39668" sodipodi:role="line">細化 = -20</tspan></text>
+ <text id="calligraphy-f02-zh_TW.svgtext1999" xml:space="preserve" transform="translate(10 879.51)" display="block" font-size="6" y="84.558846" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f02-zh_TW.svgtspan2000" y="84.558846" x="212.39668" sodipodi:role="line">細化 = -60</tspan></text>
+ <path id="calligraphy-f02-zh_TW.svgpath1948" d="m16.131 33.033c8.337-0.13 16.662 0.161 24.989 0.528 13.402 0.426 26.816 0.692 40.226 0.587 16.433-0.562 32.824-0.034 49.214 1.077 6.03 0.438 3.02 0.219 9.01 0.658v5.583c-5.99-0.439-2.98-0.22-9.01-0.657-16.39-1.111-32.781-1.639-49.214-1.077-13.41 0.104-26.824-0.162-40.226-0.588-8.327-0.366-16.652-0.658-24.989-0.527v-5.584z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1949" d="m23.278 91.5c0.014-1.878-0.022-3.758 0.044-5.635 0.023-0.672 23.428-1.148 24.344-1.161 21.837-0.012 43.599-2.002 65.414-2.705 8.77-0.16 17.54-0.064 26.31-0.069v4.355c-8.77-0.177-17.54-0.387-26.31-0.317-21.833 0.54-43.566 2.964-65.414 3.099-6.062 0.206-12.107 0.539-18.136 1.217-1.724 0.194-3.456 0.418-5.151 0.792-0.362 0.08-1.043 0.715-1.057 0.344-0.068-1.826-0.03-3.656-0.044-5.484v5.564z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1950" d="m22.674 93.072c10.861 0.324 21.731 0.214 32.598 0.577 26.23 0.718 52.498 0.983 78.728-0.078 1.19-0.058 2.38-0.117 3.57-0.175v4.438c-1.19-0.012-2.38-0.024-3.57-0.035-26.24-0.183-52.487 0.311-78.728-0.072-10.875-0.096-21.754-0.02-32.598 0.911v-5.566z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1951" d="m26.302 102.21c15.41-0.4 30.843-0.14 46.266 0.23 24.153 0.53 48.332 0.03 72.442-1.43v4.44c-24.14-0.82-48.292 0.04-72.442 0.11-15.448 0.09-30.935 0.1-46.266 2.22v-5.57z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1952" d="m29.272 112.49c15.339-0.52 30.656-2.18 46.017-2.76 21.807-0.5 43.611 0.91 65.341 2.61v3.91c-21.65-2.73-43.519-4.2-65.341-3.42-15.442 0.92-30.73 2.96-46.017 5.23v-5.57z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1953" d="m16.881 27.194c0.015-1.861-0.032-3.723 0.044-5.583 0.016-0.377 0.756 0.015 1.134 0 1.085-0.042 2.164-0.186 3.239-0.327 6.213-0.809 12.412-1.705 18.637-2.423 26.492-3.019 53.136-3.546 79.725-1.737 9.03 0.687 18.03 1.728 27 2.982v5.583c-8.97-1.253-17.97-2.295-27-2.982-26.589-1.809-53.233-1.282-79.725 1.737-0.955 0.11-22.995 3.122-23.01 2.75-0.076-1.859-0.029-3.722-0.044-5.583v5.583z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1956" d="m20.308 51.181c-0.078 0.052-0.088-0.046-0.125-0.065 0.029-1.874-0.022-3.75 0.085-5.622 0.047-0.831 23.328-1.616 24.382-1.618 32.108 2.596 64.05-1.154 95.97-4.231 1.7-0.174 3.39-0.349 5.09-0.523v5.583c-1.7 0.175-3.39 0.349-5.09 0.523-31.92 3.078-63.862 6.828-95.97 4.231-5.454 0.013-10.849 0.205-16.281 0.7-2.254 0.205-4.522 0.377-6.771 0.628-0.451 0.051-1.303 0.744-1.33 0.291-0.11-1.846-0.056-3.697-0.085-5.545 0.042 0.021 0.038 0.112 0.125 0.065v5.583z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1957" d="m27.7 26.408c13.391-0.763 26.775-0.158 40.166 0.291 25.412 0.587 50.814-0.713 76.224-0.557v5.583c-25.41-0.156-50.812 1.144-76.224 0.557-13.391-0.448-26.775-1.054-40.166-0.29v-5.584z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1971" d="m37.391 148.58c14.488 1.39 29.225 0.53 43.793 0.42 16.499 0.53 32.996-0.06 49.486-0.21 0.71-0.02 1.42-0.04 2.12-0.06v2.87c-0.7-0.06-1.41-0.13-2.12-0.19-16.46-1.33-32.953-2.41-49.486-2.3-14.333 0.11-30.148 0.05-43.793 4.63v-5.16z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1972" d="m28.867 162.61c9.62 1.25 19.65 0.06 29.358-0.24 18.741-0.41 37.482-0.37 56.215-1.12 7.98-0.73 15.98-0.8 23.97-1.18v3.58c-8-0.15-15.97-0.98-23.97-0.96-18.739 0.01-37.5-1.47-56.215 0.19-9.901 0.89-19.958 1.84-29.358 5.27v-5.54z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1973" d="m30.091 172.91c16.011 0.6 32.03-0.67 48.019-1.54 18.84-1.15 37.73-0.6 56.47-3.18 1.51-0.22 3.02-0.5 4.52-0.79v3.91c-1.51-0.02-3.02-0.01-4.52-0.04-18.83-0.81-37.643-1.38-56.47 0.21-15.79 0.86-33.543-0.42-48.019 6.87v-5.44z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1974" d="m33.517 180.71c11.863 1.62 24.051 1.83 36.033 1.73 22.542-0.69 45.39 0.63 67.59-4 1.89-0.33 3.75-0.81 5.61-1.32v3.52c-1.87 0.12-3.74 0.24-5.61 0.15-22.52-0.33-45.036 2.39-67.59 1.77-12.017 0.09-24.399 0.19-36.033 3.59v-5.44z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1975" d="m178.56 19.701c15.99-3.047 32.46-3.33 48.69-4.245 18.7-1.383 37.33 0.705 55.57 4.748v6.993c-18.49-1.496-36.99-3.527-55.57-2.44-16.22 0.515-32.47 1.009-48.69 0.668v-5.724z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1976" d="m180.36 33.236c16.02-2.031 32.13-3.111 48.26-3.687 22.39-0.874 44.84 0.411 67.22-0.708v6.786c-21.96 5.31-44.91 1.805-67.22 3.309-16.06 0.267-32.25 1.384-48.26 0.005v-5.705z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1977" d="m178.51 42.174c16.73-1.346 33.65-0.612 50.43-0.367 21.43 0.357 42.84 1.282 64.28 1.488v7.196c-21.32 2.711-42.87 0.851-64.28 0.833-16.84-0.434-33.73-1.123-50.43-3.462v-5.688z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1978" d="m179.08 60.04c11.1-3.337 22.79-3.401 34.27-3.92 24.68-1.345 49.59-2.321 74.17 0.971 0.76 0.115 1.53 0.231 2.29 0.346v7.057c-0.76 0-1.53-0.001-2.29-0.001-24.73 0.142-49.44-0.168-74.17 0.495-11.42-0.054-22.88-0.218-34.27 0.67v-5.618z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1983" d="m182.45 102.28c11.01-3.884 23.27-5.112 34.87-6.153 20.94-1.692 41.99-2.943 62.89-0.147v12.92c-20.96 0.43-41.91 1.83-62.89 1.19-11.62-0.12-23.37-0.33-34.87-2.03v-5.78z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1984" d="m175.22 121.72c14.62-4.78 29.97-6.5 45.17-8.28 20.17-2.57 40.39-0.93 60.33 2.5v12.32c-20.07 1.74-40.16 3.37-60.33 2.62-14.77-0.37-30.92 0.63-45.17-3.52v-5.64z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1985" d="m178.48 142.94c19.03-4.93 38.58-7.02 58.19-7.97 19.95-0.96 39.5 2.62 58.33 8.92v11.38c-19.44 0.4-38.87-1.86-58.33-1.07-18.63-0.1-40.59 1.38-58.19-5.52v-5.74z" transform="translate(10 879.51)" display="block"/>
+ <path id="calligraphy-f02-zh_TW.svgpath1986" d="m188.88 163.8c-1.44-1.26-0.08-3.83 0.01-5.73 0.09-2.1 29.27-4.73 31.07-4.81 24.15-1.1 48.35-0.08 72.21 3.88v13.63c-24.02 2.72-48.3 1.43-72.21-1.81-1.96-0.27-31.01-3.75-31.07-5.21-0.09-1.89-0.04-3.77-0.06-5.66 0.01 0.03 0 0.07 0.05 0.08v5.63z" transform="translate(10 879.51)" display="block"/>
+ <rect id="d0e173" display="none" height="1e3px" width="288" y="1078.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e173"/>
</flowRegion>
<flowDiv xml:space="preserve">來做一件好玩的事,將寬度和細化都設定為 100 (最大值) 並用抖動方式移動繪畫會產生奇妙自然的類似神經細胞的形狀:</flowDiv>
</flowRoot>
- <path id="calligraphy-f03-zh_TW.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1119.6)" display="block"/>
- <path id="calligraphy-f03-zh_TW.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1119.6)" display="block"/>
- <path id="calligraphy-f03-zh_TW.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1119.6)" display="block"/>
- <path id="calligraphy-f03-zh_TW.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1119.6)" display="block"/>
- <path id="calligraphy-f03-zh_TW.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1119.6)" display="block"/>
- <path id="calligraphy-f03-zh_TW.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1119.6)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1272.722313" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1272.722313" x="10">角度和固定</tspan>
+ <path id="calligraphy-f03-zh_TW.svgpath2071" d="m14.819 30.652c3.651 1.489 5.049 5.35 8.089 7.445 2.387 1.646 4.678-0.283 6.647-1.134 7.724-3.339 15.76-6.203 23.832-8.692 2.147-0.663 6.16-0.877 8.115-1.845 4.005-1.982-0.378-1.878 3.845-1.505 2.971 6.215 7.843 14.981 14.207 18.869 2.216 1.353 4.445-0.746 7.149 0.935 1.269 0.432 1.063 0.613 2.388-0.009 2.54-1.194 0.856-2.293 0.834-2.213-0.541 1.985 0.494 5.501 3.207 5.884 1.185 0.167 1.954-1.315 2.937-1.963 1.414-0.932 2.82-1.875 4.251-2.778 10.97-6.906 22.55-12.878 33.91-19.18 1.13-1.657 10.57-4.683 10.48-7.709-0.04-1.252-0.95-4.114-1.94-3.278-2.65 2.258-4.56 9.54-1.04 10.092 4.22 0.663 11.35 3.104 12.81-0.705 1.73-4.51-4.39-8.805-7.8-12.356-1.28-1.3311-0.12 3.878 1.04 5.306 0.94 1.164 19.97 2.807 22.84 3.115 3.63 3.75 8.48-12.367 10.79-7.835 2.61 5.096 0.14 11.325 0.27 16.986 0.01 0.628 0.35-1.312 0.07-1.882-1.13-2.32-1.85-5.296-4.19-6.555-1.3-0.696-0.77 2.962-0.13 4.237 0.54 1.064 2.11 1.259 3.19 1.843 7.64 4.12 15.73 7.458 23.6 11.156 0.62 0.316 1.16 1.023 1.86 0.948 1.09-0.116 2.58-2.339 4.06-1.951 1.55 0.406 1.97 9.563 8.72 7.78 6.11-1.612-1.03-7.983 2.11-6.085 0.82 0.353 4.38 2.062 5.45 1.848 6.43-1.283 19.87-23.683 27.52-28.6 2.43-1.0916 3.07-1.5393 5.7-2.0985 11.16-2.3748 19.18 12.874 27.07 9.0455 0.39-0.479 0.79-0.958 1.18-1.437l0.91 3.291-1.92-0.162c-12.15-1.929-19.58-15.478-32.72-8.1-7.85 5.087-11.59 13.639-17.92 20.174-2.19 2.259-8.33 5.664-9.53 8.402-0.79 1.794 0.05 5.007 0.36 6.749-0.14 1.518 0.37 3.911-2.46 3.881-3.85-0.041-3.34-4.717-5.84-6.334-0.86-0.558-5.11-1.696-6.14-1.751-1.24-0.067-5.03 2.357-5.94 0.985-0.97-1.449 0.1-3.595-0.8-5.084-0.34-0.578-1.23-0.63-1.85-0.945-3.84-1.806-25.24-12.888-26.86-13.027-1.43-0.121-2.98 2.088-4.09 1.236-2.84-2.171-4.33-5.633-5.8-8.798-0.49-1.049 0.04-4.578 0.12-3.435 0.35 5.307-2.02 11.292 0.71 15.938 1.8 3.062 11.11-12.124 2.46-9.842-3.41-0.365-21.19-3.779-22.92-3.123-1.76 0.67-2.5 4.87-4.04 3.816-4.69-3.206-11.08-8.037-10.02-13.425 0.79-4.0178 8.62-1.7648 12.89-1.1338 5.61 0.8317 1.32 11.999 1.24 12.154-0.42 0.78-1.83-0.823-2.7-0.542-3.18 1.023-6.47 8.289-10.6 7.759-5.78 3.207-38.921 19.804-41.079 23.915-2.072 3.945 0.975 6.044-3.026 9.272-3.213 2.593-4.551-5.141-6.611-5.927-3.757-2.239-2.234-4.933-4.453-7.975-1.312-1.799-12.874-14.709-13.8-14.784-0.625-0.051-1.161 0.45-1.741 0.675-0.734-1.056-1.016-2.554-2.172-3.185-2.133-1.163-10.398 2.579-12.238 3.194-5.092 1.7-10.15 3.514-15.132 5.486-10.281 4.069-12.706 6.125-5.27 16.65l-14.089-21.683z" transform="translate(10 1115.2)" display="block"/>
+ <path id="calligraphy-f03-zh_TW.svgpath2072" d="m32.6 78.132c-1.229-4.078 0.099-10.602-3.557-13.811-1.529-1.341-7.807 1.273-7.959 0.908-1.559-3.741-2.69-7.955-1.975-11.919 0.646-3.589 9.444 2.774 12.407 1.429 3.295-1.704 0.301 0.271 2.926-3.623 1.054-1.565 2.429-2.91 4.636-2.441 7.034 1.496 2.511 8.956 3.657 12.58 0.579 1.833 1.813 1.943 3.379 2.566 1.269 0.131 4.688 1.931 5.991 1.113 1.932-1.214 1.966-7.031 4.609-7.143 3.629-0.153 3.721 6.3 6.413 7.806 1.789 1.001 5.075 1.285 7.088 1.915 4.959 1.175 11.366 9.218 16.51 5.012 2.081-1.701 1.532-4.669 4.315-5.48 1.653-0.496 2.805 1.23 4.302 1.216 0.75-0.007 3.366-2.194 3.725-2.499 8.173-6.949 7.973-16.009 11.583-25.153 0.49-3.596 4.56-5.995 5.78-9.137 0.86-2.199-1.72-9.962 2.96-9.895 4.83 0.069 3.82 6.228 5.37 8.732 0.87 1.406 5.52 3.447 6.95 4.458 2.28 1.495 4.1 3.457 6.07 5.268 3.13 2.88 5.57-4.281 8.23-1.827 0.21 0.187-2.01 4.142-2.17 6.47-0.27 4.141 2.76 5.099 5.92 7.181 1.42 3.67 5.51-2.64 6.86 0.119 1.39 2.832-0.69 2.75 1.54 5.421 0.2 0.238 13.83 9.271 14.63 9.624 2.05 0.914 3.38-1.026 4.75-2.03 1.96-2.025-1.25 2.771 0.98 5.405 0.45 0.531 27.81-1.372 28.74-2.509 1.46-1.791-2.84-7.468-4.12-5.555-5.95 8.923 4.81 7.172 0.08 7.788-0.49-4.296-4.26-9.474-1.46-12.889 1.94-2.371 4.86 3.932 7.69 5.277 1.27 0.605 7.69-0.566 8.3-0.663 8.25-1.318 18.04-2.648 24.82-7.736 3.3-2.479 3.06-7.196 6.34-8.68 10.53-4.454 23.34-5.79 29.65-16.16 2.18-3.588 3.14-7.676 5.25-11.305l0.38 0.453c-2.08 3.646-3.07 7.748-5.28 11.328-6.4 10.344-19.14 11.752-29.72 16.2-8.27 14.64-20.48 13.621-36.18 17.176-1.1 0.249-3.34 0.048-3.19 1.11 0.37 2.489 3.31 8.689 4.29 6.353 1.52-3.648-1.39-7.739-2.08-11.609-0.08 3.823 3.24 7.571 2.23 11.273-0.62 2.275-5.81-1.721-6.89-1.791-2.21-0.144-4.31 1.052-6.51 1.315-6.34 0.759-12.81 1.097-19.21 1.213-1.05 0.019-2.31-0.591-3.17-0.01-1.24 0.839-3.02 6.534-6.51 5.132-0.76-0.305-0.27-1.541-0.41-2.312 0.72-2.047 2.2-4.072 0.95-6.255-1.71-2.993-11.14-8.957-14.57-9.602-3.52-0.661-1.46 1.336-4.69 1.347-2.62 0.008 0.05-7.377-3.72-6.89-11.13-7.325-5.01-0.738-13.92-1.349-2.69-0.184 2.77-8.159 2.87-8.928 0.31-2.433-5.85-5.247-7.01-6.819-0.96-0.679-5.59-4.686-6.89-4.438-0.43 0.081-5.99 5.319-3.04 5.605 1.77 0.172-1.23-3.552-2.83-4.308-3.65-1.728-6.33 6.962-7.64 8.867-2.44 6.269-2.58 13.59-6.34 19.333-2.11 3.236-7.418 5.693-8.955 8.873-0.764 1.581-0.167 3.552-1.109 5.11-4.71 7.135-19.34-4.526-24.573-6.262-2.536-0.796-6.834-3.009-9.27-1.034-1.553 1.26-1.455 5.015-3.486 4.783-2.072-0.236-3.624-5.316-5.255-6.316-1.412-0.865-4.824 0.374-6.119-1.129-3.63-1.436-10.059 2.408-12.124-1.599-1.218-2.362 2.998-2.077 1.347-5.563-1.337-2.822-1.227-2.32-3.5-1.926-8.695 3.971 9.759 19.23-0.534-2.039-2.765-5.713-2.652 6.504-0.595 7.793 4.115 2.579 6.945-4.602 7.291-7.115l-5.248 24.197z" transform="translate(10 1115.2)" display="block"/>
+ <path id="calligraphy-f03-zh_TW.svgpath2073" d="m24.067 97.773c5.208-7.575 18.839-32.899 32.069-26.448 5.169 6.538 6.374 15.078 10.397 22.298 0.662 1.189 0.789 3.491 2.206 3.447 2.075-0.065 6.109-3.936 7.254-5.56-3.769-5.695-4.985 0.12 0.487 4.392 2.441 1.906 3.576 1.503 5.875-0.123 8.54-7.974 16.078-17.599 22.155-27.422 0.23-0.367 1.92-4.48 2.06-4.499 1.95-0.268 3.17 2.272 4.98 3.009 5.91-0.552 12.56 3.445 18.36 2.623 3.14-0.443 2.95-4.898 6.52-4.516 3.24 0.346 2.07 7.043 2.29 8.987-0.28 2.344 3.62 2.043 4.23 3.473 0.3 0.696-0.84 2.723-0.29 4.012 3.2 7.47 7.28-4.302 8.02-6.22 3.93-0.537 8.47-2.786 7.91 4.593-1.51 19.866-1.27 6.201-7.22 8.494-0.5 0.192 2.63 9.838 3.74 10.094 0.65 0.152 6-2.491 6.26-1.729 6.83 19.612-0.63 6.302-2.9 14.032 8.82 1.28 8.38 2.29 0.42-17.106-2.23-5.436-4.51 8.716 0.62 9.656 8.96 1.63 24.85-2.05 33.71-3.493 2.89-1.614 23.48-2.694 24.85-4.511 1.17-1.573 0.58-5.362 3.31-6.261 4.43-1.459 2.4 7.807 2.75 8.683 0.2 0.527 5.04 1.824 5.1 1.842 20.1 3.93 17.56-6.262 27.07-16.41 2.03-0.396 2.36-3.852 3.72-4.695 1.15-0.719 2.8-0.208 4.07-0.733 6.62-2.75 17.37-7.124 21.75-12.735l0.75 2.344c-5.41-0.43-24.54 12.867-29.98 16.318-9.56 10.291-7.18 20.461-27.49 16.481-4.74-1.396-6.87-2.468-10.14 2.33-1.74 2.56 4.37-7.515-2.74-6.297-7.67 1.314-15.28 2.957-22.96 4.217-3.22 0.53-35.02 3.34-36.01 4.46-2.37 2.72-5.42 11.16-7.24 8.08-11.18-18.948-9.06-17.88-0.07-18.479 1.93 0.884-0.53-0.445-0.62 0.854-0.23 3.271-1.05 6.925 0.58 9.815 1.28 2.27 4.58-3.65 4.8-6.21 0.02-0.259-6.19-15.39-7.31-15.011-7.04 2.377-2.83 14.844 3.44 9.098-1.72-17.839-18.37 4.354-16.18-11.167 0.19-1.374-0.06-1.64-0.51-2.866-1.22-0.882-3.15-0.679-4.05-1.262-0.76-0.494 1.26-1.414 1.37-2.283 0.22-1.782 0.3-4.194-1.64-5.302-4.91-2.816-13.08-0.481-18.33-2.621-3.15 0.658-2.02-0.202-3.35 2.609-3.87 0.947 0.57-3.769-3.31-1.212-6.122 4.036-13.519 23.235-22.255 27.469-5.785 4.068-2.336 16.628-11.004 15.728-2.424-0.25-4.455-0.87-5.482-3.18-0.238-3.94 2.272-7.5 2.274-11.318 0.001-1.148-3.014-4.856-3.539-5.926-2.49-5.077-3.889-10.526-6.205-15.658-1.143-2.533-1.015-2.131-2.688-4.08-11.307-5.855-34.036 23.431-12.157 8.251l-19.727 17.644z" transform="translate(10 1115.2)" display="block"/>
+ <path id="calligraphy-f03-zh_TW.svgpath2074" d="m29.654 2.3471c1.311 3.4234 2.285 10.077 5.934 12.149 0.993 0.563 2.229-0.59 3.341-0.894 7.004-1.909 13.934-4.0584 20.951-5.9266 3.595-0.9573 8.107-1.1798 11.57-2.3687 6.34-2.1768 1.37-8.2767 9.1-3.5631-0.325 1.7841 1.443 11.469-3.688 9.8464-0.728-0.23-1.295-1.588-1.933-1.184-0.728 0.46-0.299 1.673-0.126 2.486 1.664 7.842 17.874 24.172 24.051 30.016 2.816 1.051 8.856 10.763 12.336 9.919 5.33-1.291 4.11-5.907 9.04-2.706 1.34 0.708 3.58 1.575 4.04 3.146 0.78 2.661-2.49 10.129-2.98 10.732-0.64 0.788-2.25-0.69-3.14-0.157-0.62 0.377-3.56 25.868-3.79 28.211 1.25 4.473-2.8 10.837-1.28 15.177 1.69 4.83 2.51 1.75 3.18 6.55 0.39 2.79-3.18 4.8-2.18 7.36 0.39 0.99 3.25 3.56 4.25 0.26 1.74-5.66 1.63-11.69 2.44-17.54-11.33-9.597-8.22 1.74-5.49 8.45l-0.03 0.58c-4.48 7.64-7.31 15.73-16.773 6.78 0.8-5.96 0.653-12.1 2.403-17.87 2.03-6.714 8.27 6.45 11.71 5.07 0.05-0.01 1.21-13.904 1.28-15.163 0.83-8.667 1.89-17.335 3.39-25.923 0.18-1.042 1.83-6.87-2.1-6.092-4.64 0.918-2.39 8.065-1.71 5.745-5.85-4.304-1.14-5.073-2.78-11.483-1.1-4.29-10.49-6.272-12.107-10.535-8.671-8.19-17.2-17.43-23.005-27.724-1.656-2.936-3.161-5.414-4.751-8.4817-0.483-0.9308-1.02-3.6294-1.57-2.7325-1.383 2.257-0.984 5.1357-1.475 7.7032 8.347 1.85 6.589-5.5959 3.736-6.2988-1.79-0.441-35.685 9.0068-35.809 9.1828-2.776 3.946-0.551 9.778-1.632 14.097l-4.403-26.818z" transform="translate(10 1115.2)" display="block"/>
+ <path id="calligraphy-f03-zh_TW.svgpath2076" d="m164.9 34.629c7.56-1.214 6.63 7.145 11.54 10.087 3.95 2.361 15.55-9.023 17.67-11.691 2.87-1.98 1.2-5.211 2.68-7.662 1.74-2.885 5.93-0.615 8.07-3.329 1.88-2.367 1.48-7.852 5.64-6.325 2.22 1.324 3.23 3.845 5.35 5.258 1.68 1.115 4.18 1.145 6.07 1.78 1.75 0.585 5.85 3.415 7.61 3.195 2.51-0.314 4.18-3.734 5.37-5.454 2.9 0.582 3.7 4.127 4.93 6.327 1.48 2.66 3.86 4.481 5.35 7.049 3.65 6.273 3.96 14.768 5.43 21.675 0.05 6.787 5.18 12.425 4.45 18.856-0.38 3.4-2.87 5.927-2.96 9.574 0.33-0.779 0.76 5.132 1.81 4.05 1.15-1.195 0.77-3.171 1.45-4.655 0.73-1.596 1.36 2.552-1.39 7.013-3.14 5.08-1.17 8.827 4.82 10.323 7.88 0.4 14.49-4.344 21.09-7.79l0.19 0.552c-6.69 3.494-13.39 8.258-21.38 7.818-7.62-1.91-4.28-4.713-7.57-7.14-1.56-1.157-3.75 0.28-5.34-0.198-1.55-0.468-0.64-12.676 3.92-12.187 3.94-4.63 2.33-19.349 0.45-25.839-0.97-4.519-1.98-25.198-9.8-25.03-3.13 0.067-4.13 3.162-6.61 3.732-2.52-2.302-2.21-5.763-4.37-8.116-0.87-0.944-2.4-1.049-3.6-1.576-5.75-2.532-11.26-4.378-14.14 2.644-1.39 2.098-3.69-2.464-5.88-2.769-3.63-0.505-3.43 4.208-5.74 5.457-4.34 2.339 2.52-1.867-3.22 0.345-0.43 0.165-2.2 2.713-2.34 2.907-2.56 3.194-5.36 6.115-8.89 8.38-2.05 1.314-7.55 2.523-8.81 4.483-2.29 3.537-4.66 12.911 2.05 12.659l-13.9-24.403z" transform="translate(10 1115.2)" display="block"/>
+ <path id="calligraphy-f03-zh_TW.svgpath2079" d="m178.84 99.8c-0.1 2.88-3.47 1.04-1.85 4.69 0.84 1.9 3.93 6.45 6.45 6.56 2.76 0.13 16.62-18.126 18.61-20.892 5.53-3.226-0.42-9.547 3.2-13.305 0.39-0.403 7.86-2.334 5.89-3.693-1.83-1.259-3.74 0.682-1.88 2.233 3.86 2.771 5.3-1.616 8.56-2.713 2.95-0.996 5.19 1.605 7.14-1.725 4.35-2.406 10.07 3.599 13.46-2.542 0.91-1.648 0.7-3.858 2.08-5.209 2.72-1.206 6.32 1.078 8.81-0.949 1.13-0.917 1.47-4.062 3.15-4.232 2.32-0.235 3.27 3.47 4.36 4.042 1.49 0.783 8.5-2.995 9.62-3.49 8.17-3.877 13.98-10.407 19.71-16.923l0.32 0.494c-5.76 6.556-11.64 13.099-19.87 16.987-1.19 0.529-8.96 2.529-9.68 3.511-1.2 1.618-0.21 4.499-1.91 5.645-1.87 1.264-5.3-4.585-9.11 6.589-7.17 4.366-5.95-9.051-14.25 6.688-0.67 1.27-1.56 1.865-3.01 2.12-5.22-0.243-11.93 1.859-12.25 7.051-0.42 2.793-4.22 7.009-7.14 3.542-2.18-2.599 3.05-3.875-1.98-7.095-2.98-1.906-3.44 1.901-4.87 3.448-2.97 4.14-6.02 8.223-9.41 12.078-2.06 2.34-8.16 6.19-9.31 8.88-1.64 3.83 1.21 10.59-1.54 14.01-3.85 4.78-2.87 0.23-3.3 2.76v-28.56z" transform="translate(10 1115.2)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1268.393796" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1268.393796" x="10">角度和固定</tspan>
</text>
- <rect id="d0e192" display="none" height="1e3px" width="288" y="1277.9" x="10"/>
+ <rect id="d0e192" display="none" height="1e3px" width="288" y="1273.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e192"/>
@@ -243,15 +243,15 @@
<path id="calligraphy-f04-zh_TW.svgpath4777" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.2)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <path id="calligraphy-f04-zh_TW.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1326.2)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-zh_TW.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1326.2)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f04-zh_TW.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1326.2)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
- <text id="calligraphy-f04-zh_TW.svgtext4096" xml:space="preserve" transform="translate(10 1326.2)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">角度 = 90 度</tspan></text>
- <text id="calligraphy-f04-zh_TW.svgtext4099" xml:space="preserve" transform="translate(10 1326.2)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">角度 = 30 (預設)</tspan></text>
- <text id="calligraphy-f04-zh_TW.svgtext4102" xml:space="preserve" transform="translate(10 1326.2)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">角度 = 0</tspan></text>
- <text id="calligraphy-f04-zh_TW.svgtext4105" xml:space="preserve" transform="translate(10 1326.2)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">角度 = -90 度</tspan></text>
- <path id="calligraphy-f04-zh_TW.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-zh_TW.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-zh_TW.svgTriangleInS)" transform="translate(10 -151.1)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
- <g id="calligraphy-f04-zh_TW.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1326.2) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
+ <path id="calligraphy-f04-zh_TW.svgpath2832" d="m111.33 102.81h92.82" display="block" transform="translate(10 1321.6)" stroke="#000" stroke-dasharray="0.65013618 1.9504085" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".65014" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-zh_TW.svgpath2834" d="m111.36 103.08l88.17-50.902" display="block" transform="translate(10 1321.6)" stroke="#000" stroke-dasharray="0.68750000 2.0625000" xmlns:cc="http://creativecommons.org/ns#" stroke-width=".6875" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f04-zh_TW.svgpath2838" sodipodi:nodetypes="cc" stroke="#000" stroke-width=".6875" fill="none" style="color:#000000" transform="translate(10 1321.6)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" d="m111.47 130.33v-118.78" stroke-dasharray="0.68750000 2.0625000" display="block"/>
+ <text id="calligraphy-f04-zh_TW.svgtext4096" xml:space="preserve" transform="translate(10 1321.6)" display="block" font-size="6" y="4.5585475" x="88.336723" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4097" y="4.5585475" x="88.336723" sodipodi:role="line">角度 = 90 度</tspan></text>
+ <text id="calligraphy-f04-zh_TW.svgtext4099" xml:space="preserve" transform="translate(10 1321.6)" display="block" font-size="6" y="52.500549" x="202.46759" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4100" y="52.500549" x="202.46759" sodipodi:role="line">角度 = 30 (預設)</tspan></text>
+ <text id="calligraphy-f04-zh_TW.svgtext4102" xml:space="preserve" transform="translate(10 1321.6)" display="block" font-size="6" y="104.26855" x="207.52388" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4103" y="104.26855" x="207.52388" sodipodi:role="line">角度 = 0</tspan></text>
+ <text id="calligraphy-f04-zh_TW.svgtext4105" xml:space="preserve" transform="translate(10 1321.6)" display="block" font-size="6" y="139.26855" x="87.677307" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f04-zh_TW.svgtspan4106" y="139.26855" x="87.677307" sodipodi:role="line">角度 = -90 度</tspan></text>
+ <path id="calligraphy-f04-zh_TW.svgpath4108" style="color:#000000" marker-end="url(#calligraphy-f04-zh_TW.svgTriangleOutS)" d="m144.5 1564.1c2.0412 4.3309 3.2095 9.0215 3.4381 13.804" display="block" marker-start="url(#calligraphy-f04-zh_TW.svgTriangleInS)" transform="translate(10 -155.7)" stroke="#000" marker="none" xmlns:cc="http://creativecommons.org/ns#" stroke-width="1.6875" fill="none"/>
+ <g id="calligraphy-f04-zh_TW.svgg2827" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1321.6) matrix(.36245 -.20926 .20926 .36245 -207.78 -450.15)">
<use id="calligraphy-f04-zh_TW.svguse2837" xlink:href="#calligraphy-f04-zh_TW.svgpath2835" transform="matrix(-1 .0000015541 .0000015541 1 279.99 -.00021757)" height="2515.0000" width="320.00000" y="0.0000000" x="0.0000000"/>
<path id="calligraphy-f04-zh_TW.svgpath2835" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f04-zh_TW.svgpath2836" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -260,34 +260,34 @@
<path id="calligraphy-f04-zh_TW.svgpath2204" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f04-zh_TW.svgpath2205" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <path id="calligraphy-f04-zh_TW.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1326.2)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
- <rect id="d0e208" display="none" height="1e3px" width="288" y="1478.4" x="10"/>
+ <path id="calligraphy-f04-zh_TW.svgpath2853" d="m156.54 76.72c-5.31-7.767-14.75-11.811-23.75-13.131-18.92-1.651-34.885 12.692-53.777 11.114-4.414-0.852-6.386-3.82-5.414-8.228 3.432-15.575 26.471-25.039 39.211-29.804 9.87-3.425 20.2-4.911 30.54-5.903l-10.88 6.284c-10.35 0.992-20.67 2.476-30.54 5.902-1.86 0.698-3.757 1.329-5.597 2.093-1.703 0.707-6.339 3.611-5.023 2.319 1.79-1.758 4.183-2.839 6.51-3.778 0.3-0.122-3.126 1.734-6.726 5.389-3.478 3.533-8.572 10.426-6.527 15.827 0.885 2.336 3.108 3.108 5.328 3.615 18.895 1.579 34.855-12.764 53.775-11.113 9.01 1.32 18.44 5.363 23.75 13.13l-10.88 6.284z" transform="translate(10 1321.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#d2d2d2"/>
+ <rect id="d0e208" display="none" height="1e3px" width="288" y="1473.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e208"/>
</flowRegion>
<flowDiv xml:space="preserve">每一種傳統書法風格都有自己普遍的運筆角度。例如,安瑟爾字體 (Uncial hand) 書寫時使用 25 度角。更複雜的手法及富有經驗的書法家時常會在書寫時改變角度,而 Inkscape 能按<flowSpan font-weight="bold">上</flowSpan>和<flowSpan font-weight="bold">下</flowSpan>方向鍵或藉由繪圖板的傾斜感應功能達成這種效果。不過書法訓練課程剛開始時,保持固定角度是最好的練習方式。這有幾個用不同角度書寫的筆畫範例 (固定 = 100):</flowDiv>
</flowRoot>
- <text id="calligraphy-f05-zh_TW.svgtext4984" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">角度 = 30</tspan></text>
- <text id="calligraphy-f05-zh_TW.svgtext4987" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">角度 = 60</tspan></text>
- <text id="calligraphy-f05-zh_TW.svgtext4990" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">角度 = 90</tspan></text>
- <text id="calligraphy-f05-zh_TW.svgtext4993" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">角度 = 0</tspan></text>
- <text id="calligraphy-f05-zh_TW.svgtext4996" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">角度 = 15</tspan></text>
- <text id="calligraphy-f05-zh_TW.svgtext4999" xml:space="preserve" transform="translate(10 1549.8)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">角度 = -45</tspan></text>
- <path id="calligraphy-f05-zh_TW.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1549.8)" display="block"/>
- <path id="calligraphy-f05-zh_TW.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1549.8)" display="block"/>
- <path id="calligraphy-f05-zh_TW.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1549.8)" display="block"/>
- <path id="calligraphy-f05-zh_TW.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1549.8)" display="block"/>
- <path id="calligraphy-f05-zh_TW.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1549.8)" display="block"/>
- <path id="calligraphy-f05-zh_TW.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1549.8)" display="block"/>
- <rect id="d0e227" display="none" height="1e3px" width="288" y="1706.1" x="10"/>
+ <text id="calligraphy-f05-zh_TW.svgtext4984" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="4.5585475" x="27.677305" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4985" y="4.5585475" x="27.677305" sodipodi:role="line">角度 = 30</tspan></text>
+ <text id="calligraphy-f05-zh_TW.svgtext4987" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="4.5585475" x="84.742744" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4988" y="4.5585475" x="84.742744" sodipodi:role="line">角度 = 60</tspan></text>
+ <text id="calligraphy-f05-zh_TW.svgtext4990" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="4.5585475" x="147.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4991" y="4.5585475" x="147.24278" sodipodi:role="line">角度 = 90</tspan></text>
+ <text id="calligraphy-f05-zh_TW.svgtext4993" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="4.5585475" x="232.24278" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4994" y="4.5585475" x="232.24278" sodipodi:role="line">角度 = 0</tspan></text>
+ <text id="calligraphy-f05-zh_TW.svgtext4996" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="92.058548" x="267.2428" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan4997" y="92.058548" x="267.24280" sodipodi:role="line">角度 = 15</tspan></text>
+ <text id="calligraphy-f05-zh_TW.svgtext4999" xml:space="preserve" transform="translate(10 1543.5)" display="block" font-size="6" y="134.55855" x="39.742786" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f05-zh_TW.svgtspan5000" y="134.55855" x="39.742786" sodipodi:role="line">角度 = -45</tspan></text>
+ <path id="calligraphy-f05-zh_TW.svgpath4901" d="m45.448 18.016c3.5-0.314 14.489-6.113 14.025 0.4-5.461 10.157-10.585 20.538-15.402 31.033-1.488 3.587-14.036 28.168-3.499 25.42 9.088-3.824 17.5-8.081 27.499-8.489 2.124-0.12 4.202 0.173 6.269 0.607l-22.113 12.767c-2.067-0.434-4.145-0.727-6.269-0.607-9.999 0.407-18.411 4.665-27.499 8.489-10.537 2.748 2.011-21.833 3.499-25.42 4.817-10.495 9.941-20.876 15.402-31.033 0.464-6.513-10.525-0.714-14.024-0.4l22.112-12.767z" transform="translate(10 1543.5)" display="block"/>
+ <path id="calligraphy-f05-zh_TW.svgpath4917" d="m148.1 20.769c4.28-11.918 20.14-2.827 26.34 2.18 21.24 25.454 17.89 66.509 15.98 97.261 0-6.98-0.07-13.96 0.01-20.943 0-0.271 33.3-18.644 36.53-20.376v22.159c-9.58 5.14-19.54 9.73-28.69 15.62-0.61 0.39-6.71 5.71-7.61 5.26-0.17-0.08-0.16-0.34-0.23-0.51-0.01-7.79-0.01-15.58-0.01-23.368 0.49-7.968 0.32-24.258 0.71 9.248 0.07 6.31 0.2-4-0.27-11.545-1.1-17.731-3.87-37.184-16.42-50.652-6.2-5.007-22.06-14.098-26.34-2.18v-22.154z" transform="translate(10 1543.5)" display="block"/>
+ <path id="calligraphy-f05-zh_TW.svgpath4927" d="m220.36 12.834c-59.48-0.882 23.45-0.134 36.62 1.963 15.65 3.042 8.53 21.8 5.58 32.443-0.75 4.642-3.89 10.297-2.28 15.112 0.4 1.171 4.16 2.238 2.93 2.279-6.32 0.208-12.67 0.377-18.97-0.17-0.85-0.074 0.57 0.523 10.53-3.033 7.34-2.619 14.44-5.759 21.54-8.948h22.16c-15.18 6.819-72.39 32.651-58.07-5.24 2.96-10.643 10.07-29.401-5.58-32.443-6.57-1.046-13.18-1.481-19.82-1.826-3.37-0.175-13.5-0.338-10.13-0.352 6.66-0.029 13.32-0.019 19.98-0.008 1.4 0.002-2.79 0.181-4.19 0.186-7.48 0.028-14.97 0.024-22.45 0.037h22.15z" transform="translate(10 1543.5)" display="block"/>
+ <path id="calligraphy-f05-zh_TW.svgpath4942" d="m20.12 106.67c8.492-5.41 17.954-6.958 27.898-6.27 19.875 1.69 29.405 15.47 42.96 29.18 0.731 0.74 2.886 3 2.149 2.26-25.227-25.09-13.515-12.66-5.887-8.01 16.19 9.76 30.39 1.41 44.82-7.24l15.67 15.67c-14.43 8.64-28.63 16.99-44.82 7.23-10.031-6.1-16.97-14.81-25.449-23.31-0.734-0.74-2.891-2.99-2.148-2.26 4.53 4.43 9.01 8.92 13.511 13.38 1.501 1.49-3.004-2.99-4.699-4.25-5.923-4.41-13.222-6.17-20.442-6.99-9.943-0.68-19.406 0.86-27.898 6.28l-15.665-15.67z" transform="translate(10 1543.5)" display="block"/>
+ <path id="calligraphy-f05-zh_TW.svgpath4945" d="m83.624 25.219c5.169-6.605 10.672-13.197 19.206-15.209 20.89-0.1537 14.03 32.098 12.63 44.706 0.19 7.561-8.83 47.624 10.14 33.551 13.21-10.672 8.5-10.954 18.61-2.432 5.31 2.929 11.25 0.339 16.38-1.749l-11.08 19.184c-5.13 2.09-11.07 4.68-16.37 1.75-10.12-8.521-5.4-8.239-18.62 2.43-18.966 14.08-9.94-25.987-10.14-33.548 1.4-12.608 8.26-44.86-12.624-44.706-8.537 2.012-14.041 8.604-19.209 15.209l11.077-19.186z" transform="translate(10 1543.5)" display="block"/>
+ <path id="calligraphy-f05-zh_TW.svgpath4983" d="m176.46 143.11c16.1-12.64 38.58-16.96 58.6-18.04 14.69-1.24 29 4.13 43.62 3.7 2.8-0.08 5.39-0.38 8.14-0.97 1.4-0.3 5.54-1.43 4.15-1.1-5.78 1.38-11.55 2.83-17.32 4.24 20.66-9.48 17.77-24.9-4.56-26.51-9.85-1.31-42.27 8.01-3.99-2.14l-21.4 5.73c15.39-4.15 30.65-9.713 46.79-9.32 22.33 1.61 25.22 17.02 4.56 26.5-8.47 2.41-22.91 7.72-33.73 9.02-15.95 1.91-31.67-4.9-47.66-3.42-9.4 0.51-29.91 5.9 4.12-3.5 1.22-0.34-2.44 0.67-3.64 1.06-5.88 1.93-11.72 4.77-16.28 9.02l-21.4 5.73z" transform="translate(10 1543.5)" display="block"/>
+ <rect id="d0e227" display="none" height="1e3px" width="288" y="1699.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e227"/>
</flowRegion>
<flowDiv xml:space="preserve">正如所見,書寫與筆尖角度平行時筆畫最細,而垂直書寫則最寬。角度為正是最自然和傳統的右手書法。</flowDiv>
</flowRoot>
- <rect id="d0e230" display="none" height="1e3px" width="288" y="1734.9" x="10"/>
+ <rect id="d0e230" display="none" height="1e3px" width="288" y="1728.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e230"/>
@@ -299,19 +299,19 @@
<path id="calligraphy-f06-zh_TW.svgpath4781" d="m5.77 0l-8.65 5v-10l8.65 5z" fill-rule="evenodd" sodipodi:nodetypes="cccc" transform="scale(-.8)" stroke="#000" stroke-width="1pt"/>
</marker>
</defs>
- <text id="calligraphy-f06-zh_TW.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1783.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">固定 = 100</tspan></text>
- <text id="calligraphy-f06-zh_TW.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1783.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">固定 = 80</tspan></text>
- <text id="calligraphy-f06-zh_TW.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1783.1)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">固定 = 0</tspan></text>
- <path id="calligraphy-f06-zh_TW.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 1783.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-zh_TW.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 1783.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-zh_TW.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 1783.1)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
- <path id="calligraphy-f06-zh_TW.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-zh_TW.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-zh_TW.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-zh_TW.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-zh_TW.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <path id="calligraphy-f06-zh_TW.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1783.1) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
- <g id="calligraphy-f06-zh_TW.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
+ <text id="calligraphy-f06-zh_TW.svgtext6476" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1776.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="19.524405" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6477" y="4.5585475" x="19.524405" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6479" y="11.758548" x="19.524405" sodipodi:role="line">固定 = 100</tspan></text>
+ <text id="calligraphy-f06-zh_TW.svgtext6481" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1776.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="119.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6482" y="4.5585475" x="119.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6484" y="11.758548" x="119.52438" sodipodi:role="line">固定 = 80</tspan></text>
+ <text id="calligraphy-f06-zh_TW.svgtext6486" sodipodi:linespacing="120.00000%" display="block" transform="translate(10 1776.6)" xml:space="preserve" line-height="120.00000%" font-size="6" y="4.5585475" x="219.52438" xmlns:cc="http://creativecommons.org/ns#" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f06-zh_TW.svgtspan6487" y="4.5585475" x="219.52438" sodipodi:role="line">角度 = 30</tspan><tspan id="calligraphy-f06-zh_TW.svgtspan6489" y="11.758548" x="219.52438" sodipodi:role="line">固定 = 0</tspan></text>
+ <path id="calligraphy-f06-zh_TW.svgpath5108" d="m213.97 69.663c-3.43-6.136-2.82-13.35-0.61-19.796 4.01-9.569 12.54-16.2 22.15-19.527 9.27-2.977 18.97-2.32 28.35-0.279 11.24 2.823 19.58 11.481 22.96 22.414 2.37 12.142 2.25 25.093-0.77 37.116-2.96 10.262-9.6 19.689-19.1 24.829-9.72 4.67-21.09 4.1-30.08-1.92-10.03-7.65-14.84-18.238-15.78-30.571-0.56-11.353 5.78-20.748 15.72-25.636 11.77-5.564 23.9-2.212 31.84 7.875 6.88 10.553 4.86 24.51-4.37 32.895-5.16 4.227-11.13 5.027-17.3 2.803l2.79-7.126c3.31 1.536 6.59 0.809 9.43-1.399 6.41-5.485 7.77-15.324 3.4-22.5-5.55-7.416-14.04-9.612-22.43-5.674-7.15 3.465-11.82 9.966-11.45 18.187 0.75 10.05 4.33 18.46 12.47 24.836 6.49 4.57 15.04 4.75 22.15 1.49 7.64-4.03 12.87-11.851 15.29-19.968 2.74-10.683 2.75-22.195 0.87-33.016-2.46-8.308-8.81-14.962-17.28-17.161-7.99-1.771-16.29-2.438-24.21 0.037-7.41 2.537-14.16 7.5-17.42 14.81-1.48 4.163-2.07 9.223-0.25 13.037l-6.37 4.244z" transform="translate(10 1776.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5116" d="m14.48 65.761c-3.008-10.389 3.114-21.31 11.13-27.601 16.202-11.213 36.073-15.13 52.851-3.22 13.738 11.479 21.929 29.308 22.069 47.188-0.904 16.803-17.18 27.632-31.896 32.402-12.429 2.51-28.614 0.51-36.966-10-7.732-12.115-0.566-25.626 8.256-34.878 10.488-10.422 22.548-13.268 34.841-5.28 8.181 6.27 9.589 15.534 2.904 23.325-6.655 6.029-20.559 14.873-27.767 5.049-1.207-1.742-1.271-3.421-0.91-5.431l6.626-3.825c-0.361 2.006-0.297 3.687 0.91 5.43 3.103 4.233 7.325 5.312 12.375 3.857 1.362-0.391 5.139-2.336 3.959-1.552-1.546 1.031-3.161 1.969-4.827 2.792-1.167 0.575 4.261-2.816 3.008-2.495 6.685-7.791 5.277-17.056-2.904-23.325-4.349-2.825-9.49-5.179-14.797-5.096-2.013 0.032-7.482 2.525-5.904 1.275 1.455-1.15 3.156-1.954 4.747-2.91 2.037-1.222-7.967 4.807-5.635 4.359-8.822 9.252-15.988 22.765-8.256 34.875 8.352 10.51 24.537 12.51 36.966 10 1.81-0.59 6.715-3.32 5.34-2.01-1.124 1.07-2.633 1.65-3.987 2.41-1.778 1 3.459-2.17 5.076-3.41 7.054-5.41 12.028-12.609 12.216-21.735-0.137-17.883-8.332-35.711-22.07-47.189-7.307-5.186-14.715-7.789-23.759-7.376-3.5 0.158-7.046 0.627-10.452 1.458-2.18 0.532-7.399 4.145-6.378 2.15 0.041-0.081 8.248-5.219 0.99-0.666-8.015 6.292-14.138 17.211-11.13 27.605l-6.626 3.824z" transform="translate(10 1776.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5131" d="m113.93 55.575c0.1-7.929 4.48-14.883 10.09-20.161 14.87-12.804 31.29-11.471 47.09-2.026 15.97 10.213 26.09 29.324 22.8 48.338-5 18.464-23.93 31.854-42.46 34.334-14.6 0.87-26.99-12.79-28.9-26.622 0.01-16.139 14.93-29.526 30.29-31.885 13.66-0.565 25.64 8.648 24.07 22.885-4.49 15.177-22.31 20.572-34.76 11.488-0.51-0.514-1.02-1.026-1.53-1.54l6.41-4.175c0.47 0.444 0.93 0.891 1.39 1.336 2.69 1.861 5.56 3.419 8.81 4.109 4.02 0.856 7.45-1.048 6.86-0.388-1.07 1.218-2.8 1.648-4.08 2.657-3.74 2.969 14.53-10.097 9.84-10.56 2.07-13.369-9.87-21.765-22.51-20.488-3.55 0.771-17.14 5.862-17.88 23.275 1.48 13.262 13.66 26.118 27.52 24.618 12.78-2.21 23.08-7.51 29.83-26.192 3.69-18.385-6.39-36.974-21.9-46.706-6.89-4.028-14.08-7.391-22.26-7.013-2.79 0.128-5.63 0.619-8.3 1.471-0.84 0.267-3.09 1.569-2.48 0.928 1.06-1.134 2.68-1.569 3.94-2.484 1.39-1.015-5.91 3.426-4.38 2.735-5.68 4.893-10.02 11.292-10.51 18.953l-6.99 3.113z" transform="translate(10 1776.6)" display="block" xmlns:cc="http://creativecommons.org/ns#" fill="#cbcbcb"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5132" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.062189 -.93098 -.93098 .062189 1532.9 59.391)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5788" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.41163 .83734 .83734 .41163 -1225.7 -653.03)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5789" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.062189 -.93098 -.93098 .062189 1627.6 57.761)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5790" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.41163 .83734 .83734 .41163 -1127.1 -651)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5791" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.062189 -.93098 -.93098 .062189 1727.6 56.842)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <path id="calligraphy-f06-zh_TW.svgpath5792" sodipodi:rx="36.461613" sodipodi:ry="36.461613" marker-start="url(#calligraphy-f06-zh_TW.svgTriangleInL)" stroke="#000" marker="none" stroke-width=".375" sodipodi:end="6.5569837" fill="none" style="color:#000000" sodipodi:start="5.8427480" transform="translate(10 1776.6) matrix(-.41163 .83734 .83734 .41163 -1024.4 -648.5)" xmlns:cc="http://creativecommons.org/ns#" sodipodi:insensitive="true" sodipodi:type="arc" d="m144.5 1564.1a36.462 36.462 0 0 1 2.12 25.4" sodipodi:open="true" sodipodi:cy="1579.6672" sodipodi:cx="111.51856" display="block"/>
+ <g id="calligraphy-f06-zh_TW.svguse5793" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.22117 -.12769 .097624 .16909 -162.16 -176.71)">
<path id="calligraphy-f06-zh_TW.svguse4227" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4228" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4229" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -320,7 +320,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4232" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4233" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
+ <g id="calligraphy-f06-zh_TW.svguse5794" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.22117 -.12769 .097624 .16909 -148.57 -205.1)">
<path id="calligraphy-f06-zh_TW.svguse4235" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4236" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4237" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -329,7 +329,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4240" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4241" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
+ <g id="calligraphy-f06-zh_TW.svguse5795" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.22117 -.12769 .097624 .16909 -96.443 -194.96)">
<path id="calligraphy-f06-zh_TW.svguse4243" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4244" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4245" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -338,7 +338,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4248" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4249" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
+ <g id="calligraphy-f06-zh_TW.svguse5796" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.22117 -.12769 .097624 .16909 -100.7 -130.46)">
<path id="calligraphy-f06-zh_TW.svguse4251" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4252" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4253" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -347,7 +347,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4256" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4257" sodipodi:rx="9.4238768" sodipodi:ry="18.847754" style="color:#000000" sodipodi:type="arc" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block" sodipodi:cy="1610.5809" sodipodi:cx="145.72865"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
+ <g id="calligraphy-f06-zh_TW.svguse5797" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.22117 -.12769 .097624 .16909 -131.84 -176.3)">
<path id="calligraphy-f06-zh_TW.svguse4259" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4260" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4261" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -356,7 +356,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4264" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4265" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
+ <g id="calligraphy-f06-zh_TW.svguse6461" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.23554 -.098701 .075459 .18008 -30.76 -207.1)">
<path id="calligraphy-f06-zh_TW.svguse4267" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4268" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4269" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -365,7 +365,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4272" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4273" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
+ <g id="calligraphy-f06-zh_TW.svguse6462" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.12769 -.22117 .16909 .097625 -145.9 -85.067)">
<path id="calligraphy-f06-zh_TW.svguse4275" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4276" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4277" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -374,7 +374,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4280" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4281" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
+ <g id="calligraphy-f06-zh_TW.svguse6463" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.18058 -.18058 .13806 .13806 -57.936 -141.12)">
<path id="calligraphy-f06-zh_TW.svguse4283" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4284" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4285" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -383,7 +383,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4288" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4289" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
+ <g id="calligraphy-f06-zh_TW.svguse6464" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.24225 -.080853 .061817 .18520 50.754 -169.93)">
<path id="calligraphy-f06-zh_TW.svguse4291" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4292" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4293" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -392,7 +392,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4296" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4297" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
+ <g id="calligraphy-f06-zh_TW.svguse6465" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.21307 -.14080 .10764 .16290 -63.894 -129.52)">
<path id="calligraphy-f06-zh_TW.svguse4299" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4300" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4301" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -401,7 +401,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4304" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4305" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
+ <g id="calligraphy-f06-zh_TW.svguse6466" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.11412 -.22847 .17467 .087249 -144.32 -35.779)">
<path id="calligraphy-f06-zh_TW.svguse4307" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4308" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4309" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -410,7 +410,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4312" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4313" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
+ <g id="calligraphy-f06-zh_TW.svguse6470" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(-.21040 .14475 -.11066 -.16086 415.51 292.33)">
<path id="calligraphy-f06-zh_TW.svguse4315" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4316" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4317" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -419,7 +419,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4320" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4321" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
+ <g id="calligraphy-f06-zh_TW.svguse6471" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(-.14475 -.21040 .16086 -.11066 2.1484 237.01)">
<path id="calligraphy-f06-zh_TW.svguse4323" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4324" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4325" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -428,7 +428,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4328" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4329" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
+ <g id="calligraphy-f06-zh_TW.svguse6472" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.25459 -.020155 .015408 .19464 224.84 -236.83)">
<path id="calligraphy-f06-zh_TW.svguse4331" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4332" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4333" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -437,7 +437,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4336" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4337" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
+ <g id="calligraphy-f06-zh_TW.svguse6473" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.020155 .25459 -.19464 .015409 550.55 54.655)">
<path id="calligraphy-f06-zh_TW.svguse4339" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4340" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4341" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -446,7 +446,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4344" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4345" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
+ <g id="calligraphy-f06-zh_TW.svguse6474" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(.25459 -.020155 .015408 .19464 209.33 -220.31)">
<path id="calligraphy-f06-zh_TW.svguse4347" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4348" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4349" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -455,7 +455,7 @@
<path id="calligraphy-f06-zh_TW.svgpath4352" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4353" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <g id="calligraphy-f06-zh_TW.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1783.1) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
+ <g id="calligraphy-f06-zh_TW.svguse6475" xmlns:cc="http://creativecommons.org/ns#" display="block" transform="translate(10 1776.6) matrix(-.097494 .23604 -.18046 -.074536 537.46 177.11)">
<path id="calligraphy-f06-zh_TW.svguse4355" d="m139.04 1527.7h14.52s-0.02 51.9 15.34 51.9c-8.74 47.3-10.02 37-10.84 46.8-8.77 5.4-16.35 6.4-19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4356" d="m140.95 1527.7h-14.52s0.02 51.9-15.34 51.9c8.74 47.3 10.02 37 10.84 46.8 8.78 5.4 16.36 6.4 19.73 6" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
<path id="calligraphy-f06-zh_TW.svgpath4357" d="m140.95 1527.3h-14.52s0.02 51.9-15.34 51.9c8.74 47.2 10.02 36.9 10.84 46.7 10.62-5 18.57-6.1 19.39 3.7" sodipodi:nodetypes="ccccc" fill-rule="evenodd" fill="#fff"/>
@@ -464,24 +464,24 @@
<path id="calligraphy-f06-zh_TW.svgpath4360" d="m140.13 1527.6v52.9" stroke="#000" stroke-width="3.325" fill="none"/>
<path id="calligraphy-f06-zh_TW.svgpath4361" style="color:#000000" d="m155.15 1610.6c0 10.409-4.2192 18.848-9.4239 18.848s-9.4239-8.4384-9.4239-18.848c0-10.409 4.2192-18.848 9.4239-18.848s9.4239 8.4384 9.4239 18.848z" transform="matrix(1.066 .050345 -.034293 .72608 40.018 415.84)" display="block"/>
</g>
- <rect id="d0e245" display="none" height="1e3px" width="288" y="1925.1" x="10"/>
+ <rect id="d0e245" display="none" height="1e3px" width="288" y="1918.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e245"/>
</flowRegion>
<flowDiv xml:space="preserve">以印刷方面來說,最大固定值形成最大程度的筆畫寬度對比 (左上圖) 便是古羅馬襯線字型的特色,諸如 Times 或 Bodoni (因為這些字型從歷史角度來看是在模仿固定筆尖的書寫方式)。固定值和寬度對比皆為零 (右上圖),用於其他的書寫方式,使人聯想到無襯線字形,例如 Helvetica。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1990.61108" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="1990.61108" x="10">顫抖</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="1982.3406700000003" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="1982.3406700000003" x="10">顫抖</tspan>
</text>
- <rect id="d0e254" display="none" height="1e3px" width="288" y="1995.8" x="10"/>
+ <rect id="d0e254" display="none" height="1e3px" width="288" y="1987.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e254"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">顫抖</flowSpan>是為了使書寫筆畫有更自然的外觀。在控制列上可調整顫抖的數值範圍從 0 到 100。它會使你的筆畫有可能產生從些微不均勻到不受控制的斑點和汙點不同的情形。這項功能可有效擴大書法工具的創作幅度。</flowDiv>
</flowRoot>
- <g id="calligraphy-f07-zh_TW.svgg3123" font-size="6px" transform="translate(10 2074.1)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
+ <g id="calligraphy-f07-zh_TW.svgg3123" font-size="6px" transform="translate(10 2065.6)" font-family="sans-serif" sodipodi:insensitive="true" fill="black">
<text id="calligraphy-f07-zh_TW.svgtext3115" xml:space="preserve" display="block" y="12.058847" x="0.87408441"><tspan id="calligraphy-f07-zh_TW.svgtspan3117" y="12.058847" x="0.87408441" sodipodi:role="line">慢</tspan></text>
<text id="calligraphy-f07-zh_TW.svgtext3119" xml:space="preserve" display="block" y="21.308847" x="0.87408441"><tspan id="calligraphy-f07-zh_TW.svgtspan3121" y="21.308847" x="0.87408441" sodipodi:role="line">中</tspan></text>
<text id="calligraphy-f07-zh_TW.svgtext1987" xml:space="preserve" display="block" y="30.558847" x="0.87408441"><tspan id="calligraphy-f07-zh_TW.svgtspan1988" sodipodi:role="line" x="0.87408441" y="30.558847">快</tspan></text>
@@ -495,289 +495,289 @@
<use id="calligraphy-f07-zh_TW.svguse3153" xlink:href="#calligraphy-f07-zh_TW.svgg3123" transform="translate(158 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-zh_TW.svguse3151" xlink:href="#calligraphy-f07-zh_TW.svgg3123" transform="translate(0 46.5)" height="1052.3622" width="744.09448" y="0" x="0"/>
<use id="calligraphy-f07-zh_TW.svguse3149" xlink:href="#calligraphy-f07-zh_TW.svgg3123" transform="translate(158 0)" height="1052.3622" width="744.09448" y="0" x="0"/>
- <text id="calligraphy-f07-zh_TW.svgtext3177" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">顫抖 = 0</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext3111" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">顫抖 = 10</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext1990" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">顫抖 = 30</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext2991" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">顫抖 = 50</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext2995" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">顫抖 = 70</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext1993" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">顫抖 = 90</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext1996" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">顫抖 = 20</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext2999" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">顫抖 = 40</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext3003" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">顫抖 = 60</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext3007" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">顫抖 = 80</tspan></text>
- <text id="calligraphy-f07-zh_TW.svgtext1999" xml:space="preserve" transform="translate(10 2044.1)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">顫抖 = 100</tspan></text>
- <path id="calligraphy-f07-zh_TW.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2044.1)"/>
- <path id="calligraphy-f07-zh_TW.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2044.1)"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2322.092183" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2322.092183" x="10">擺動和質量</tspan>
+ <text id="calligraphy-f07-zh_TW.svgtext3177" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="5.0588455" x="132.37408" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3179" y="5.0588455" x="132.37408" sodipodi:role="line">顫抖 = 0</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext3111" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="35.058846" x="62.374077" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3113" sodipodi:role="line" x="62.374077" y="35.058846">顫抖 = 10</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext1990" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="80.021095" x="62.337463" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1991" y="80.021095" x="62.337463" sodipodi:role="line">顫抖 = 30</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext2991" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="125.48337" x="62.359436" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2993" sodipodi:role="line" x="62.359436" y="125.48337">顫抖 = 50</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext2995" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="170.94562" x="62.353577" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2997" sodipodi:role="line" x="62.353577" y="170.94562">顫抖 = 70</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext1993" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="216.40787" x="62.308167" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1994" y="216.40787" x="62.308167" sodipodi:role="line">顫抖 = 90</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext1996" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="34.558846" x="212.52852" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan1997" y="34.558846" x="212.52852" sodipodi:role="line">顫抖 = 20</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext2999" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="80.021095" x="212.39668" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3001" sodipodi:role="line" x="212.39668" y="80.021095">顫抖 = 40</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext3003" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="125.48337" x="212.41719" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3005" sodipodi:role="line" x="212.41719" y="125.48337">顫抖 = 60</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext3007" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="170.94562" x="212.4333" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan3009" sodipodi:role="line" x="212.4333" y="170.94562">顫抖 = 80</tspan></text>
+ <text id="calligraphy-f07-zh_TW.svgtext1999" xml:space="preserve" transform="translate(10 2035.6)" display="block" font-size="6px" y="216.40787" x="212.42744" font-family="sans-serif" sodipodi:insensitive="true" fill="black"><tspan id="calligraphy-f07-zh_TW.svgtspan2000" y="216.40787" x="212.42744" sodipodi:role="line">顫抖 = 100</tspan></text>
+ <path id="calligraphy-f07-zh_TW.svgpath2977" style="color:black" d="m194.8 36.948c1.29-0.601 0.52 0.12 1.45 0.334 2.52-1.549 1.81 0.053 4.27-0.637 1.28-0.353 2.32-0.038 3.05 0.498 1.8-0.453 2.87-0.127 5.81 1.097 2.18-0.635 4.16-0.293 6.51-0.5 0.47 0.614 2.73 0.499 3.68 0.565 2.15-0.487 4.27-0.787 6.4-0.947 0.09 0.904 2.65 0.428 3.16 0.371 0.97-0.199 1.99 0.119 2.95 0.353 3.23-0.916 1.37 0.381 4.37-0.736-1.4 1.416 2.09 0.494 2.79 0.471 1.79-0.518 2.38-0.587 3.64-0.103 1.98-0.245 3.54 0.196 5.01 0.846 2.31-0.853 4.52-1.043 6.89-1.084 2.98 0.261 4.09 0.374 7.43-0.322 2.95-1.036 2.53 0.415 5.43-0.677 0.54 0.998 3.39 0.209 4.83-0.366 0.6 0.226 1.92 0.846 2.29 0.951 2.08-0.124 2.09-0.087 4.66-0.851-0.42 0.435-1.05 0.738-1.26 1.306-0.44 1.218 2.55-0.475 3.84-0.646 3.72-1.462 2.08 0.493 4.02-0.398 1.03 0.606 2.48 0.244 3.79 0.032l-6.76 4.912c-0.98 0.178-2.68 0.636-3.41-0.307-1.5 0.136-1.43-0.769-3.76 0.205-0.39-0.003-2.47 0.179-2.31-0.854-1.96 0.96-2.76-0.059-4.91 1.033-0.92-0.204-1.81-0.565-2.74-0.626-1.53 0.202-3.24 0.498-4.71 0.32-1.39 0.241-2.82-0.298-4.47 0.06-2.95 1.367-5.38 0.149-8.62 1.069-1.86-0.304-3.62-0.397-5.45 0.035-2.69-0.374-3.59-0.573-5.9-0.195-1.06 0.196-4.39 1.037-2.47-0.752-2.06 0.611-2.64-0.038-5.16 1.252-0.38-0.158-1.16-1.143-2.83-0.38-0.74-0.22-2.25-0.119-2.96-0.353-1.29 0.117-2.93 0.676-4.12 0.329-0.78 0.139-3.32 0.012-5.05-0.026-1.39-0.302-2.92-0.125-4.75 0.205-1.79-0.35-4.33 0.555-5.31-0.411-2.58-0.158-4.44-1.312-7-0.339-0.9-0.3-1.85-0.634-2.8-0.538-0.56 0.109-3.54 0.497-2.55-0.61-3.06 0.929-0.72-0.19-3.1 0.872l6.13-4.458z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath2979" style="color:black" d="m191.44 45.785c0.85-0.474 1.35-0.514 3.24-0.714 2.47 0.162 6.67 0.512 10.06 1.743 12.81-0.778 25.78 1.534 38.22-0.166 10.12 1.116 20.05 1.409 30.45 0.476 2.99-0.579 5.63 0.081 8.53-0.262 1.81-0.607 3.98 0.525 4.73 0.775 0.58-0.186 1.16-0.371 1.74-0.556l-5.99 4.353c-0.21-0.086-0.42-0.171-0.62-0.257-1.94 0.04-3.98-0.145-5.78-0.01-2.6 0.167-5.31-0.094-8.03-0.112-10.12-1.252-20.06 0.842-30.26-0.622-12.6 0.741-24.81-0.501-37.34-0.484-4.02-0.442-8.51 0.434-11.8-0.455-1.25-0.141-1.67-0.24-3.07 0.596l5.92-4.305z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath2981" style="color:black" d="m192.55 54.078c-1.33 0.624 3.92 0.871 4.86 0.859 10.59 0.589 20.64 1.961 31.08 1.747 10.55 0.419 21.58-1.876 32.01-0.449 5.62-0.57 11.28 0.465 16.7 0.442 2.26-0.493 3.21 0.593 5.87-0.231 1.85 0.112 3.71 0.066 5.56 0.099l-5.39 3.917c-2.84 0.507-4.5 0.397-6.7 0.729-1.47 0.036-3.04-0.185-4.29-0.939-5.62-0.086-11.24 0.999-16.8-0.346-10.77 0.83-21.03-0.616-31.9 0.352-10.5-0.125-20.86-1.101-31.15-1.742-0.89 0.107-7.04 1.778-5.85-0.078l6-4.36z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath2985" style="color:black" d="m35.08 38.403c0.886-0.358 1.917-0.172 2.754-0.277 2.607 0.256 4.942 0.268 7.572 0.412 3.225 0.229 6.356 0.231 9.589 0.267 2.04 0.749 4.189 0.52 6.404 0.483 2.484 0.06 5.022 0.028 7.484-0.054 1.779 0.139 3.525 0.185 5.295 0.05 1.709-0.295 3.307 0.132 4.972 0.329 1.49-0.433 2.816 0.162 4.174 0.332 1.234-0.464 2.543-0.181 3.757-0.136 1.729-0.381 1.722 0.333 3.593-0.088 1.27-0.025 2.457 0.197 3.896 0.009 1.531-0.27 2.792 0.134 4.328-0.095 1.172 0.101 1.912 0.416 2.972 0.577 1.62-0.544 1.72 0.248 3.09 0.491 1.29 0.089 2.63-0.095 3.92-0.134 1.06 0.245 1.85 0.25 3.02 0.308 1.47-0.004 2.77-0.196 4.18-0.116 1.25 0.153 2.21 0.199 3.43 0.033 1.43-0.084 2.77-0.011 4.24-0.111 1.12 0.086 2.79 0.126 3.88 0.208 1.44-0.005 2.88-0.138 4.3-0.221 0.33 0.31 2.46 0.061 3.49-0.056 1.05 0.286 2.22 0.181 3.33 0.07 0.8 0.297 1.1 0.027 1.96 0.048l-5.82 4.228c-0.99 0.09-1.13 0.54-1.84-0.13-1.66 0.452-2.18-0.047-3.95 0.374-0.87-0.089-2.16-0.062-3.04-0.273-1.55 0.34-2.72 0.321-4.25 0.194-1.43 0.062-2.71-0.253-4.17 0.001-1.5 0.123-2.81-0.253-4.24 0.104-1-0.031-2.23-0.348-3.37-0.074-1.04-0.009-2.49-0.136-3.73-0.21-1.27 0.048-2.47 0.196-3.72 0.176-1.12-0.187-2.1-0.101-3.108-0.56-1.425 0.083-2.343-0.123-3.658-0.039-1.705-0.084-1.931-0.614-3.021-0.453-1.172-0.053-2.824-0.168-4.167-0.022-1.3 0.039-2.492 0.007-3.917 0.007-1.219 0.15-2.226 0.103-3.458-0.009-1.141-0.077-2.264 0.185-3.426-0.117-1.829 0.272-2.797-0.024-4.633-0.074-1.593-0.07-3.125-0.388-4.724-0.422-1.963 0.186-3.817 0.333-5.762 0.29-2.296-0.164-4.564-0.249-6.86-0.407-2.27 0.468-4.646-0.046-6.95-0.148-2.935 0.031-6.019-0.295-8.961-0.699-2.754-0.205-5.592 0.459-8.134 0.04-0.985 0.19-1.957 0.275-2.41 0.027l5.689-4.133z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath2987" style="color:black" d="m33.526 48.165c0.829 0.287 1.929-0.108 2.914-0.105 3.657 0.013 7.31 0.812 10.998 0.753 4.922 0.693 9.874-0.276 14.801 0.057 4.247 0.47 8.268 0.488 12.575 0.147 4.828 0.995 9.8 0.017 14.792 0.591 4.882 0.467 9.572-1.713 14.414-0.86 3.94-0.9 8-0.02 11.87-0.606 4.03 0.708 8.11 0.547 12.16 1.208 2.77-0.064 5.34 0.293 8.05-0.161 1.13-0.049 2.92 0.447 3.54 0.47 1.41-0.824 2.36-0.242 3.16-0.183l-5.48 3.98c-1.12 0.125-2.28 0.444-3.4 0.365-1.27 0.011-2.61-0.099-4.03-0.133-2.3-0.228-4.9-0.033-7.37-0.367-4.16-0.705-8.3-0.369-12.48-0.954-3.77 0.556-7.46 0.12-11.216 0.192-4.947 0.864-10.144 0.541-15.137 1.348-4.876-0.953-9.767-0.183-14.649-0.719-4.215 0.544-8.459-0.126-12.716-0.025-4.764 0.178-9.602-0.534-14.428-0.351-3.713-0.57-7.905 0.353-11.297-0.507-0.988 0.124-2.338 0.425-3.234 0.338l6.163-4.478z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath2989" style="color:black" d="m26.426 62.007c1.763-1.881 5.862-5.061 9.257-4.321 7.252 0.625 14.596 0.199 21.912 0.035 14.612 0.201 29.327-1.609 43.885-0.14 11.75-0.217 23.6 0.38 35.31 1.253 4.25-0.171 2.3-0.16 5.86-0.094l-6.12 4.405c-2.99-0.572-1.29-0.358-5.11-0.45-11.3-0.723-22.59-1.494-33.896-2.255-14.855-0.384-29.698 0.096-44.538 0.657-7.759-0.009-15.492 1.094-23.238 0.889l-3.322 0.021z" sodipodi:nodetypes="cccccccccccc" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3011" style="color:black" d="m33.461 83.415c-1.31 2.484 5.61-3.81 2.313-0.253-1.291 1.663 3.907-0.478 4.236-0.632-0.293 1.592 4.092 0.455 5.697 0.885 1.587 0.366 4.504 0.542 6.327 0.054 0.663 0.753 3.266 0.482 4.581 0.296 3.021-0.57 1.517 1.058 4.486 0.562 1.725-0.572 2.828 0.078 3.425 0.16 6.01-2.452-2.493 1.702 3.3 0.121 1.689-0.852 3.013-0.432 4.586-0.803-0.715 1.618 2.974 0.029 4.523-0.272-0.271 1.009 2.02 0.807 3.058 0.691 6.659-2.697-1.221 0.446 2.867 0.472 1.791-1.045 2.68-0.351 4.362-0.641-1.784 1.695 2.983 0.208 4.192 0.156 1.098 0.072 2.187 0.389 3.285 0.321 4.382-1.528 1.48 1.779 5.901-0.217 1.83-0.08 2.16 0.453 3.98 0.502 6.26-1.925 0.38 2.159 5.28-0.456 0.67 0.085 1.05 0.919 2.45 0.947 2.78-1.301 2.38-0.329 3.69-0.238 3.38-1.463-0.06-0.076 3.08 0.257 2.52-0.209 0.27-0.946 4.73-0.632 3.54-0.829 0.63 0.977 5.94-0.596 1.02-0.08 2.35 0.992 3.23 1.536 5.22-2.555 1.74 0.418 6.3-1.552 0.19 1.716-0.1 1.202 2.76 0.551l-5.24 3.802c-0.96 0.498-5.2 1.276-3.88 0.269-1.65 0.378-2.76 0.579-3.78-0.282-3.43 1.739-2.92-0.724-6.8 1.06-1.4-0.115-2.77-0.53-4.17-0.687-4.37 1.711-2.09-0.537-3.79-0.055-1.29 0.264-2.41-0.248-3.93 0.362-0.85 0.259-3.08 0.194-2.6-0.55-3.66 1.428-2.05 0.039-5.05 0.934 1.73-2.092-2.71 0.711-4.072-0.428-0.615-0.068-3.472 0.36-4.197-0.396-1.828 0.326-6.925 2.098-4.727-0.575-3.694 1.651-0.439-0.699-4.362 0.462-0.658 0.094-3.941 0.56-4.219-0.136-2.309 0.473-2.563 0.009-3.781 0.218-1.138 0.111-4.174 0.808-3.431-0.062-1.432 0.046-2.147-0.035-4.227 0.158-0.99-0.012-2.101-0.839-4.338 0.139-1.026 0.205-2.084-0.195-3.129-0.257-1.391-0.05-2.344 0.239-3.775 0.226-3.896 1.324 1.438-2.093-3.888 0.163-0.661-0.115-3.286-0.23-3.061-1.655-2.447 0.819-4.191 0.034-5.66 0.539-2.348-0.106-3.539 0.588-5.972-0.346-1.93 0.304-5.984 0.511-6.631-0.153-0.412 0.103-2.293 0.421-3.348-0.013-3.961 0.884 3.494-2.784-2.896 0.676l6.375-4.632z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3021" style="color:black" d="m33.458 94.024c2.933-1.819 1.772-0.698 5.947 0.083 8.524-0.15 17.163 0.365 25.984-0.571 4.573 1.527 9.157 0.557 13.798 0.532 3.168-0.096 6.077 0.139 9.052 0.048 3.278 0.435 6.616-0.839 9.725-0.244 3.196 0.638 5.196 0.302 8.476-0.084 2.59 0.576 5.4 0.371 7.83-0.451 3.44 1.794 8.43-0.094 12.52 1.022 3.41-1.339 6.88-0.894 10.42-0.531 1.35 0.371 1.31-0.226 2.68 0.049l-5.44 3.952c-3.07 1.402-0.35-0.2-2.97 0.163-3.12-0.702-6.55 1.228-9.54-0.105-4.93 0.274-9.6-0.338-14.49 0.411-0.92-0.272-4.21-0.232-6.18-0.754-2.563 0.128-7.327 1.502-8.133-0.164-3.18 0.905-6.895 0.857-10.152 0.553-2.889 0.37-6.269 0.348-9.495 0.274-5.869 1.281-7.706-2.561-14.538 0.006-8.429-1.855-16.913-1.212-25.309 0.079-1.733-0.628-7.075 0.667-5.288-0.56l5.103-3.708z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3023" style="color:black" d="m32.767 104.9c1.044 0.29 5.146 0.46 7.748 0.27 16.106 2.01 32.482 0.07 48.676 1.05 16.089 0.14 31.409 0.36 47.059-1.64 2.78 1.82 5.81 0.1 8.67-0.72l-7.49 5.5c-2.64-0.18-5.18 0.46-7.84 0.09-14.78-2.49-30.074 0.79-45.002 0.11-16.755-0.13-33.246-1.29-49.913-0.17-4.666-0.95-8.09-0.33-7.39-0.5l5.482-3.99z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3025" style="color:black" d="m195.21 82.699c-3.35 3.447-1.05 1.432 2.04 0.087-1.56 1.739-1.27 2.186 0.92 1.606 2.4-0.45 4.77-2.558 4.15 0.908 1.99-1.32 4.75-0.504 5.53-0.394 2.11 0.771 9.03-3.405 7.3-0.669 2.41-0.613 4.07-0.637 5.57-0.543-0.43 4.082 4.83-3.024 1.92 1.797 4-0.984 7.83-3.662 3.12 0.577 2.83-2.21 5.35-1.471 7.41-0.996 0.35 1.18 5.31 0.198 5.69 0.179 3.47-0.968 0.65 0.752 3.13 0.518 1.27-0.599 4.6-1.225 4.22 0.129 2.34-0.412 5.11-0.523 7.49-0.347 1.17 0.485 5.7-1.441 4.4 0.123 2.3-1.014 1.63-0.086 3.41 0.047 2.07 0.269 6.28-3.431 3.6-0.332 1.65-0.923 3.74-1.015 5.23-1.72-0.75 0.347 1.34 1.113 2.16 1.199-0.33 1.346 3.3-0.621 4.87-1.392-0.48 0.432-2.07 1.353-1.43 1.294 4.33-0.401 1.48-0.57 3.75-1.205 2.08-0.754 2.97 0.182 4.48-0.328 1.42-1.019 2.56 0.463 3.49 0.599 3.95-2.108 1.51-0.271 4.38-1.042l-6.91 5.023c-0.61 0.188-2.02-0.393-1.68-0.929-2.87 1.581-2.71 0.713-4.51 0.152-1.84 0.299-4.89 0.694-6.89 2.161 3.03-3.345-1.84-0.328-2.66 0.493 4.13-4.599-1.58 2.084-1.05-1.805-2.28 1.027-3.52 0.542-5.55 1.381 2.61-2.76-2.18 0.628-3.35 0.421-0.07-0.013-1.13-1.958-3.91 0.371-1.41 0.004-0.79-1.887-3.88 0.297-0.61-1.136-0.85-1.103-2.28-1.666-3.44 1.621-4.94-0.128-8.87 1.353-1.92-1.331-3.81 0.408-4.62 0.162-5.2 1.123 1.19-2.283-3.58-0.203-1.85 0.062-3.98 0.646-4.22-1.284-2.65 0.803-4.22 1.331-6.63 0.458-0.78 0.371-2.99-0.644-4.1 0.041-1.56-0.428-3.31-0.104-4.83 0.434 3.04-3.743-1.92 1.06-2.24-1.875-5.67 2.623-3.19-0.488-8.52 1.552-1.83-0.36-1.32-2.374-4.52-0.336-0.67-0.009-3.55 0.241-4.1-1.03-3.3 1.635-0.94-1.024-3.7 0.361-0.43 0-0.66-1.382-0.26-1.246l6.03-4.381z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3033" style="color:black" d="m196.24 101.77c2.85-1.29 6.99-0.49 10.23 1.14 14.46-1.35 28.78 1.11 43.44 0.58 8.29 3.28 16.99-1.59 25.02-1.26 1.28 0.05 1.79 2.39 3.07 2.55 3.76 0.49 7.5-1.29 11.28-1.38 1.17-0.05 2.34-0.11 3.51-0.17l-5.22 4.16c-1.1 0-2.19-0.01-3.28-0.01-12.75 0.28-25.26 0.75-37.91-1.09-14.95 1.33-29.71-1.02-44.58 0.32-6.44-2.14-10.97 0.61-12.51 0.18l6.95-5.02z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3039" style="color:black" d="m194.76 95.461c2.04-0.272 4.02-1.406 6.57-1.698 6.35-0.954 14.15-1.585 21.65-1.52 8.18 1.795 5.42 0.845 15.47-1.263 4.38-0.916 5.68 1.657 10.73 0.517 3.54 2.778 7.34-0.138 11.48 1.431 3.43 1.543 8.09 1.261 13.67 1.335 4.92-1.05 8.99-0.967 13.86-0.541 0.96 1.397 3.31 1.058 5 0.951l-4.82 3.505c-1.63-0.062-3.37-0.276-4.76-1.132-5.03 1.27-10.34 0.8-15.05 1.382-3.29-0.259-12.1-1.153-12.55-2.178-4.83 0.593-9.32-0.322-14.08 0.487-8.84 0.939-15.04-3.582-24.4-0.491-6.44-2.044-17.67 4.934-21.79 1.708-2.55 0.428-5.7 2.506-6.25 1.336l5.27-3.829z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3041" style="color:black" d="m33.23 133.02c9.323-6.44-0.804-0.11 3.574-1.21 1.919-0.76 4.042-0.83 6.079-1.14 1.832 0.91 3.358 0.62 5.142-0.24 2.092-0.26 2.081 0.61 3.142 1.27 0.295 0.75 2.066 0.8 5.784-0.62-0.748 1.03 3.154-0.24 4.3-0.2-1.013 0.82 2.736 0.65 3.911 0.08-0.678 0.64-2.939 1.7-2.034 1.91 2.811 0.66 3.819-1.49 4.737-1.28 3.573-1.55 0.501-0.26 2.548 0.6 1.274-0.56 2.754-0.42 4.142-0.52 5.074-2.09-0.063 0.21 3.506-0.04 3.999-1.45-3.021 2.91 3.269 0.25 4.183-1.99 4.168-0.07 5.91-0.72 2.509-0.32 2.58-0.11 2.451 1.07 1.909 0.24 6.129-2.97 5.109 0.5 2.622-0.96 3.119 0.39 5.48-0.72-1.449 0.5 2.81-0.94 3.69 0.43 2.33-0.26 5.02-1.78 4.29 0.35 0.34-0.58 5.19-1.71 2.72 0.81 2.66-1.83 4.81-1.34 6.37-2.12-3.23 2.55 3.12 0.21 4.24-0.2 3.92-1.62 2.86 1 1.04 2.73 3.92-3.15 3.43-0.73 6.55-2.11 2.22-0.26 3.76-0.58 2.65 0.61 1.82-0.59 2.01 0.75 2.05 0.76 3.33-2.2 1.61-0.05 4.6-0.86 4.97-2.1-0.78 1.59 2.52 0.71 0.35-0.12 0.7-0.24 1.04-0.37l-5.7 4.15c0.39-0.41 0.77-0.82 1.16-1.23-4.72 2.78-2.03-0.22-6.17 1.93-8.12 2.67 4.98-4.29-3.39-0.04-0.69-0.1-0.34-1.65-3.34-0.01-0.94-0.33 0.66-2.18-2.47-0.53-4.83 0.84 3.34-3.84-2.45-0.87-1.64 0.3-7.56 3.1-4.42-0.27-5.61 2.29-0.68-0.06-5.06 0.8-3.52 1.93-0.92 0.33-1.82-1.2-6.99 2.89-0.28-1.29-6.15 1.69-1.17-0.62-1.49-1.99-4.262-0.37-1.385-0.03-1.861-1-4.856 0.4-6.63 1.38 4.435-3.72-4.068-0.36 4.159-5.39-9.944 3.95-3.2-1.81-8.026 3.42 0.218-0.86-6.637 1.97-0.15-0.1-5.494 0.99-3.284-1.19-2.173 0.71-2.641 0.06-4.984 0.99 4.147-5.88-2.606 0.71-4.352 0.66 1.188-1.01 2.683-1.74 3.563-3.02 0.172-0.25-7.708 4.23-4.984 1.56-7.138 2.73 7.835-5.25-3.708 0.25-1.538-0.96-0.093-2.36-6.043 1.8 3.373-3.06 1.066-2.19 0.164-3.05-0.875 0.38-7.936 3.89-4.876 0.62-2.651 0.52-5.168 0.59-7.638 1.89 4.038-4.18-0.567 0.27-1.6-2.31 0.457-4.26-2.753 0.99-4.294-0.38-13.227 4.03 8.358-4.43-6.692 1.58 3.027-2.96-4.082 1.99 0.754-1.93l1.997-1.45z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3043" style="color:black" d="m33.328 141.73c-2.02 2.14 1.79 0.27 2.043 0.21 5.094-2.14 4.93 0.64 7.709 0.18 4.275 3.75 8.609-2.4 14.075-2.5 1.042-0.01-1.336 1.93-1.082 2.94 0.17 0.67 1.323 0.43 1.984 0.64 4.548-1.22 9.915-3.95 16.148-0.6 3.636 3.01 12.01-3.17 15.953-0.78 3.682 1 5.593 1.64 8.754 2.56 3.688-0.21 15.238-6.08 15.158-0.72 5.19-0.93 10.22-1.89 15.51-2.25 2.25 0.11 4.16-0.71 6.25-0.21 3.05-1.5-1.12 1.93-0.72 1.88 3.18-0.38 3.84-3.09 2.21-0.17 0.33-0.1 0.67-0.19 1-0.29l-5.23 3.8c-0.47 0.19-0.94 0.39-1.4 0.58-7.36 3.17 2.31-2.28-2.65-0.87-2.26-0.78-3.96 0.1-6.38 0.33-0.85 0.13-8.1 0.33-11.17-0.9-6.68 1.88-11.47 0.81-18.234 2.92 0.13-3.52-8.947-0.71-11.276-0.74-4.446-1.72-9.299-1.43-12.954-1.4-2.873 0.14-14.343 1.24-13.345-1.43-1.125 0.3-11.49 2.85-12.239 2.53-0.983-0.42 2.32-2.69 1.281-2.94-3.059-0.73-5.794 3.53-8.969 2.94 2.233-8.88-10.979 5.74-4.411-2.57-1.821 0.86-5.206 2.31-3.51 0.85l5.495-3.99z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3049" style="color:black" d="m34.434 150.81c-3.75 1.6 4.367-1.63 8.084 0.29 15.586 2.18 30.861 2.92 47.026-0.32 12.686 2.2 25.026 0.12 37.626-0.76 6.8-1.76 8.22-0.26 15.48-2.86 4.27 0.51 0.4 2.25 4.86 3.01l-3.61 2.59c-3.37 0.77-5.5 1.76-8.29-0.53-3.58 1.37-7.29 1.81-10.3-0.85-13.13 3.04-24.54 4.42-37.82 0.91-16.419 4.3-33.702 4.7-50.631 2.89-5.568-0.21-5.772-1.55-10.064 1.18l7.639-5.55z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3051" style="color:black" d="m195.06 130.69c-0.12 1.46 2.15-0.55 3.05-1.13-0.22 1.94-2.17 3.39 2.5 0.54 4.59-1.52-0.07 2.1 3.36 0.02-4.3 5.3 6.34-4.96 1.17 1.6 1.56-0.88 5.27-3.76 3.37-0.01 3.16-1.53 6.71-3.12 4.97-0.96-2.21 2.27 2.2 0.24 3.05 0.05 7.29-4.58-3.8 4.41 3.32-0.14 1.24 0.89 4.76-1.05 3.55 0.89-0.21 1.75 5.13-1.86 3.6 0.31 3.79-2.16 2.75 1.31 4.92 0.57 2.56-1.34 3.43-1.75 4.45-0.11 11.6-6.55-3.45 3.27 4.25-0.96 0.72 1.7 0.62 1.26 3.88-0.71-3.02 4.22 1.02 1.36 2.49 0.47-1.73 2.96 0.43 1.75 3.89-0.64-1.45 4.09 3.54-0.43 1.29 3.33 9.27-5.26-2.26 2.23 7.06-1.76 2.94-0.98 3.05 0.17 2.99 0.52 0.77-0.33 1.65 0.23 2.44 0.51 5.64-3.96-0.41 2.11 6.43-2.88-5.27 4.09 0.49 0.99 0.65 0.91-4.06 3.75 1.62 0.32 3.27-0.58 3.42-2.61 0.64 1.19 4.66-1.01-1.69 0.79 1.53 0.9 2.37 0.61 6.53-2.81-3.34 1.09 2.24 0.64 2.97-0.96 5.74-4.34 3.05-0.02-0.38 0.44-0.76 0.89-1.14 1.33l-4.26 3.52c-0.13-0.02-0.26-0.03-0.39-0.05-0.71 0.16-2.49-0.19-2.04-0.83-0.37-0.05-6.75 2.45-3.19 0.14 2.92-4.24-2.13 1.01-3.64 0.51 0.24-0.36 1.1-1.24 0.73-1.07-9.9 4.67 2.62-0.48-2.72-0.02-3.54 1.27-4.15 2.24-5.2 2.37 0.46-0.84 2.05-1.89 1.38-2.51-0.79-0.73-1.76 1.17-2.64 1.75-2.34 1.16-2.8 0.67-3.15 0.16-3.66 1.77-2.32-0.05-4.08 0.85-0.11-0.01-0.68-0.95-2.68-0.78-0.74 0.24-6.08 1.45-4.6-0.3-9.67 5.71 5.29-4.28-5.72 0.36 0.51-0.57 1.19-0.99 1.52-1.71 0.64-1.38-2.88 2.11-3.98 1.18-6.61 4.13 2.98-4.4-3.69 0.51-5.17 2.55 2.21-3.17-3.9 0.73-1.46 0.04-1.47 0.43-1.71-1.15-9.6 5.4 4.46-4.29-4.13-0.16-3.31 0.98-2.56-0.18-5.19-0.43-2.39 0.56-2.44-0.28-4.87 0.84-3.63 0.4-0.34-1.73-3.31-1.09-0.64 0.41-9.14 5.3-2.6-0.46-0.9 0.22-5.49 2.4-3.09-0.06-0.98 0.46-5.85 2.95-4.56 0.61-2.87 1.32-1.31 0.88-0.54-1.02 0.49-1.19-1.96 1.68-3.11 1.71-0.56 0.01 0.79-0.92 1.19-1.37-5.25 1.94 2.71-4.8-6.84 3.08 8.59-7.9 1.99-2.14-0.83-2.11-0.81 0.4-3.03 0.46-2.63-0.44-0.96 0.38-5.49 3.2-2.28 0.5l5.62-4.65z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3059" style="color:black" d="m191.81 140.43c7.61-5.26-5.16 4.15 4.82 0.56 10.48 1.31 19.84-3.33 30.41-0.66 15.66 3.63-10.95-1.84 12.17-0.61 1.07 0.06 1.5 2.41 2.56 2.22 3.62-0.66 6.63-3.88 10.24-4.54 0.83-0.16 0.64 1.96 1.38 2.41 0.98 0.58 2.2 0.25 3.3 0.38 5.7-0.33 9.09-0.92 14.89-0.81 3.93 1.18 9.92 0.4 15.44-0.24 1.56 2.36 4.82 0.55 6.67 0.22l-6.87 5.68c-1.14-0.35-3.74-0.31-3.26-3.03-4.92 2.01-12.63 4.03-16.81 1.35-8.21 2.03-2.99-0.53-4.2-1.32-1.7-1.11-7.2 4.51-9.06 0.78-10.88 3.65-22.5-2.78-33.63 3.5-0.01-1.69 1.45-4.85-0.02-5.07-3.51-0.51-6.64 3.05-10.15 3.58-3.75 0.58-14.74-1.69-19.45 1.36-2.55-0.42-3.37-1.04-2.9-2.06l4.47-3.7z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3061" style="color:black" d="m192.05 149.86c-0.39 1.61 7.94-0.68 11.16 0.18 8.77 6.69 12.51 2.6 22.98 2.24 2.9-0.1 5.69 2.06 8.58 1.71 19.93-5.74 10.73-4.41 27.44-5.28 17.21 4.03-3.5 0.39 20.43-1.16 2.04-0.14 3.96 1.17 5.94 1.76 2.49-0.22 4.97-0.44 7.46-0.66l-4.6 3.82c-15.37-3.88 11.53 1.98-17.57 2.38-1.95 0.02-3.34-2.29-5.01-3.44-3.81 0.43-7.62 0.85-11.42 1.28-19.64 0.19-38.45 4.95-57.87 0.36-6.38-0.56-10.91-0.27-12.95 1.3l5.43-4.49z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3063" style="color:black" d="m40.122 174.55c-3.022 2.64-3.242 3.22 0.862 0.78 2.568-0.55 3.238-1.35 1.761 1.15 1.632-0.82 3.618-0.6 5.335-1.22 0.831 1.83 2.661 0.54 4.231 0.05-0.271 1.27 3.382-0.35 4.684-0.81-5.002 2.63 2.138 0.88 2.18 0.9 3.535-1 2.166 0.27 5.12-0.33 0.53-0.14 1.722-0.96 1.591-0.42-0.833 3.39-2.058 3.02 5.101-0.15 4.133-1.9 0.65-0.54-0.618 1.44-0.883 1.38 4.671-3.88 4.347-2.27-0.319 1.57-2.288 2.25-3.432 3.37 7.295-4.62 0.548-0.38 6.466-1.4 0.457-0.14 1.624-0.82 1.37-0.41-5.769 9.2 9.057-6.83 0.457 2.16 2.044-1.41 6.807-2.23 7.068-2.38 3.127 0.37-4.737 2.54-3.595 3.88 1.238 1.45 3.085-3.21 4.961-2.86 1.53 0.29-2.695 1.79-3.459 3.15-0.931 1.65 3.452-1.59 5.139-2.47-0.315 0.41-1.408 1.43-0.944 1.21 13.063-6.07-4.061 1.88 4.28-0.82 5.586-2.47-0.697 1.84 4.665-1.1 4.428 1.25-2.535 4.37 3.528 1.09 7.54-4.06-6.535 6.11 3.72 0.02-0.08 0.99 1.75 0.92 3.27 0.19 0.33 0.54 4.11-0.23 5.16-0.53-6.3 8.18 7.03-10.19 3.29-0.64-0.63 1.62-9.6 6.79-1.19 1.73 0.07 0.81 2.47 0.51 2.74 0.48 5.11-2.73 3.98 0.14 6.3-0.76-0.91 0.88-3.97 2.59-2.71 2.64 2 0.07 4.39-1.03 7.1-2.11 9.68-2.89-7.67 3.28 3.67-0.71 5.55-1.95-10.87 6.4 0.75 0.29 2.74-2.25 1.73 1.17 1.6 1.47 6.44-3.98 3.35-0.1 8.16-2.74-7.66 7.95 7.87-4.65 0.29 2.29l-1.21 0.88c-12.62 8.2 1.43-1.87-8.99 4.02 8.15-7.27-0.43 0.52-1.29-2.25-6.17 1.94 0.87-3.08-8.98 3.9 2.54-2.19 4.33-3.77 0.94-3.48-0.88 0.31-5.12 0.97-5.17 0.04-4.94 1.59-1.74-0.44-6.03 0.56 4.82-4.96-6.69 4.49-1.68-1.24-1.8 1.16-3.39 2.71-5.38 3.49-3.21 1.25 4.67-3.93 1.53-3.31-3.51 1.02-5.83 1.8-8.304 2.82 6.194-5.43-0.018-1.34-3.079-0.35 7.173-8.46 4.573-2.63-0.353-2.53-5.981 2.7 0.379-2.28-3.842-0.81-4.264 2.42-1.18 0.25-5.014 1.2-0.259-1.36-0.963-2.74-3.193-0.36-1.088-0.92-3.068-1.06-5.223-0.18 4.716-5.24 0.051-1.03-2.911-0.55-3.413 1.7 3.168-3.79-4.535 0.11-4.426 1.07-0.425-1.57-0.924-2.5-2.471 1.43-4.349 1.81-7.961 3.02 4.349-5.25-1.287-1.39-4.03-1.36-7.628 3.1 3.309-1.01-0.085-1.27-0.926-0.08-2.451 0.83-5.674 2.06-0.018 0.01-4.319 2-2.574-0.61-3.939 0.42 2.508-2.68-3.553 0-5.227 0.97 1.271-2.49-3.062-0.91-7.709 4.49 0.382-2.08-7.241 2.6 0.874-0.76 2.091-1.26 2.622-2.29 0.745-1.45-5.419 2.84-4.695 1.38-0.663 0.17-1.308 0.59-1.988 0.52-3.949-0.46 3.354-1.8 1.822-1.82l6.809-4.94z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3065" style="color:black" d="m35.295 184.15c-1.408 1.51 1.402 0.44 5.589-1.76-12.237 9.34 3.61 2.76 10.17 5.03 8.759-3.13 16.485-0.26 25.246-0.35 9.491 0.09 9.269-1.78 18.563-0.05 0.603 1.05 9.457 1.66 12.527 1 4.9 1 15.6-6.9 6.46 1.39 6.55-4.12 5.23-0.43 11.46-3.72-6.09 5.2 1.16 1.4 3.35 1.86 11.4-5.84-14.23 11.74 10.33-2.68-13.96 9.61-0.14 3.56 3.76 1.44-1.35 1.15-2.9 2.1-4.03 3.45-0.99 1.18 2.82-1.2 4.26-1.72l-8.31 6.03c4.56-4.39 4.71-3.88-0.18-1.76-6.53 2.14 6.54-5.75-6.97 0.89-4.29 1.01-4.86 0.19-4.14-1.82-1.12 0.49-9.44 3.74-6.53 0.36-2.63 1.07-5.24 2.36-8.05 2.81-12.281 1.96 12.15-5.71 0.68-1.96-3.44 0.68-5.93-0.46-10.007 1.17 1.997-4.52-4.99-0.27-7.216-1.29-5.846-2.66 10.353-3.72-1.834-2.26-4.605-0.44-18.728 3.61-18.544 0.04-9.58-1.59-16.709 3.05-25.664 0.66-7.072-4.98-11.206-3.31-17.449 0.13 4.387-7.42-8.41 5.65 0.592-2.58l5.937-4.31z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3067" style="color:black" d="m32.946 195.27c-2.487 2.52 4.616-3.2 4.416-1.87-0.565 3.75-6.982 3.94 0.344 2.88 9-6.79 13.232 0.14 21.812-0.32 14.758-0.77 5.673-3.62 15.935 0.97 10.537-0.69 45.807-1.32 53.777 2.17 11.68-2.26 6.7-2.53 14.93-1.08l-2.49 1.8c-2.28-8.7 0.23-4.11-15.62 1.58-18.46-2.52-35.268-1.66-53.557-2.32-10.323-6.7 0.774-1.23-18.514 0.91-3.143 0.35-5.37-4.94-9.066-2.79-2.98 0.45-5.633 2.26-8.6 2.8-0.914 0.17-1.787-0.5-2.681-0.76-16.15 6.54-2.325 2.06-3.609-0.51-0.01-0.02-3.711 2.26-2.394 0.4l5.317-3.86z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3069" style="color:black" d="m192.94 177.31c7.39-5.49-3.93 3.95 6.42-3.77-0.45 1.49-6.75 7.09-0.41 2.76 8.47-4.85-7.26 6.27 2.64 0.31 1.79 0.63 3.62-1.14 5.35-1.95 8.49-4.84-12.11 8.78 0.5 0.82 1.29-0.82 0.12 0.75 0.17 1.11 5.14-3.51 3.91-2.17 2.51-0.44 11.16-7.08-8.05 6.5 7.66-4.01-7.33 6.36 3.47-1.22-2.34 4.94 7.55-4.91 2.66 0.23 8.04-3.49 9.87-2.93-12.17 6.23 1.76 1.22-0.84 0.83-1.69 1.66-2.53 2.49-13.12 8.88 6.61-5.15 5.21-3.49-0.11 0.13-7.27 6.14-2.1 3.02-0.73 2.2 6.97-4.72 5.64-2.92-1.92 2.61-8.15 6.56 0.94 0.29-1.62 3.43 1.04-0.55 0.94 3.07-5.13 7.24 9.6-8.92 3.86 0.04 5.6-2.19-4.69 3.79 3.59-0.67 7.92-5.52-4.76 5.29 5.6-1.76-5.45 5.71 2.64 2.22 3.17 2.12 0.63-0.31 1.21-0.83 1.88-0.91 1.37-0.17-3.35 2.16-2.7 3.53 0.57 1.19 3.41-3.36 8.59-4.34 5.41-0.94-2.37 5.1 4.19 2-2.25 3.34 3.48 0.01 4.11-0.45-5.16 5.69 5.73-4.12 0.41 1.84 6.27-4.9 0.14 0.19 5.17-2.53 4.6-2.87-0.16-0.1-0.98 1.64-1.07 2.26 7.52-5.54 5.92-3.73-1.54 1.75-3.39 3.09-5.08 4.64 2.47-1 10.48-6.28 6.3-1.87 3.57 1.68 3.01-5.84 6.09-2.79 1.2 1.19-2.46 2.32-3.69 3.47 2.23-1.32 2.65-1.08 5.35-1.94-1.22 3.18 2.97-0.79 0.86 1.7 2.77-0.75 7.54-5.37 0.28 1.48-2.57 0.29-2.32 0.47 0.43-0.87l5.04-2.24c-0.34 0.19-0.68 0.38-1.02 0.58-2.05 1.34-4.1 2.69-6.16 4.04-3.19 1.48-0.35-0.4-2.3 0.1-0.92 0.34-2.44 1.76-2.81 0.75-0.61-1.62 7.67-5.85 3.36-3.62-10.06 6.76 1.11-2.05-8.47 4.53 2.14-2.62 3.86-4.44-0.09-2.6-8 4.03 3.17-3.75-7.13 2.55-5.03 2.67 0.44-1.24 0.99-3.2-5.84 3.74 1.09-1.98-5.7 3.1 6.24-7.4-3.28 3.39-1.93-0.75-2.01 1.22-4.05 1.9-3.23-0.28-4.47 2.3-4.51 0.64-9.19 2.12-4.49-0.43 2.03-3.36-1.82-3.23-1.24 0.8-12.72 6.25-6.8 0.91-3.84 1.57-5.11 2.23-2.66-0.69-9.46 6.44 7.95-5.92-3.42 1.63-0.69 0.47-2.5 2.13-2.13 1.31 0.75-1.68 4.98-3.79 1.07-1.66-1.51-1.37 2.17-3.64-2.7-0.91-1.81-0.44 3.42-4.87-6.58 1.43 7.15-7.81-10.78 7.25-0.66-2.05-9.55 5.16 8.22-7.65-6.83 3.16 4.77-4.6 4.48-4.48 0.71-3.25 4.03-4.46-3.03 0.96-4.46 0.52 3.83-5.4-1.48 0.46-3.2-0.34-0.99 0.54-2.69 2.83-2.96 1.62-0.32-1.46 3.88-2.9 2.28-3.34-4.06 2.83-5.21 3.73-6.83 3.95-2.6 0.05 1.3-2.25-2.75-0.2-8.36 4.55 5.38-4.41-1.22-1.48-1.42 0.15 0.35-1.58-3.38 0.31-2.08-0.09-0.63-1.48-2.37-0.47 0.65-0.78 2.77-2.82 1.93-2.34-15.65 8.96 3-0.62-5.12 3.44l4.79-3.96z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3071" style="color:black" d="m190.23 185.83c1.04 0.83-1.94 0.19 3.42 0.19 2.64-0.81 0.07 2.75 0.97 2.93 5.61 1.1 19.44-13.58 12.08-0.15 5.37-0.81 10.88-4.59 16.16-5.42 6.23-0.98-0.61 4.72 10.3 0.59 1.04 0.12 2.14-0.06 3.11 0.37 1.64 0.71 3.75 4.34 6.03 3.69 8.04-2.28 7.63-7.3 7.08-0.5 8.15-3.47 11.37-0.35 17.91-0.37 7.86-2.14 3.08 1.7 6.66 2.04 3.77-0.33 7.08-0.51 10.3-1.73-5.01 4.82 6.23-1.19 6.48-1.22-0.36 0.47-0.05 1.72 0.5 1.79l-2.18 1.96s-7.51 5.82-5.69 2.9c3.6-4.47 0.28 0.01-1.34 0.09-0.72 0.04 0.91-1.28 1.36-1.93-0.04-0.23 0.08-0.67-0.12-0.69-1.12-0.13-2.13 1.18-3.27 0.95-1.12 0.6-2.24 1.21-3.36 1.81 0.46-0.87 2.25-2.89 1.39-2.61-2.31 0.77-3.93 3.32-6.2 4.22-2.99 1.17 6.34-7.38-1.96-1.9-3.62-2.06-2.85-1.1-10.03 0.93 2.62-7.89-9.11-0.01-13.25-3.74-6.08 1.59-4.19-0.81-9.41-0.4-3.41 0.26-6.59 3.39-9.96 2.75-0.88-0.16-0.07-2.03-0.1-3.04-11.07 3.38-9.1-1.31-9.39-1.35-1.72-0.27-12.55 2.66-14.03 3.52-2.13-5.26-10.81 1.88-15.35-0.78 2.47-8.34-6.94 5.32-1.17-2.14l3.06-2.76z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3079" style="color:black" d="m194.03 193.29c-1.54 1.64 1.6 2.4 3.06 4.7 6.5 0.53 16.92-5.61 23.01-3.3 1.32 0.51 0.93 2.99 1.4 4.49 2.74-0.48 5.47-0.95 8.21-1.43 5.58-9.87 14.06 3.95 16.16 3.82 5.84-0.38 14.81-10.05 19.4-2.24 15.24-10.72 5.47 3.85 20.03-3.16 4.96 4.55 2.01-2.02 9.7-0.74 7.41 1.22-12.73 8.57 1.88 2.46l-1.75 1.6c-18.59 11.89-2.14 3.17-4.77 0.17-2.33-2.67-11 8.6-9.5 0.53-4.92 2.52-12.27 5.35-14.27-2.06-2.93 0.86-25.37 8.38-25.86 8.09-2.63-1.52 6.35-8.26 3.53-9.22-6.49-2.2-12.54 10.25-19.74 5.46-9.53-8.18-22.62 7.44-30.5-1.77-1.41-0.11-3.67 0.83-4.21-0.67-0.24-0.65 1.3-1.9 0.69-1.96-0.66-0.06-8.42 5.83-2.63 0.86l6.16-5.63z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3081" style="color:black" d="m34.721 222.34c-0.966 2.04 7.341-5.22 5.73-3.63-11.581 11.4-7.123 5.65-5.51 5.06 4.098-1.81 6.492-3.38 5.644-1.66-1.804 0.78 0.873 1.23-1.246 3.62 12.204-7.37-0.007 1.24 6.19-2.55 1.863-0.11 3.206-3.74 4.997-2.99 1.161 0.48-1.222 2.24-2.122 3.12-0.681 2.06-0.202 1.39 5.37-1.43-3.52 3.42 3.648-0.26 4.276-0.59 0.217 0.76-5.146 3.54-3.527 3.38 1.997-0.2 3.773-1.41 5.55-2.34 3.35-1.14-2.705 2.09-3.681 3.46-0.777 1.09 2.294-1.39 3.423-2.11 18.599-11.88-10.243 7.27 6.209-3.23-5.401 5.25 1.921 0.99 2.204 0.87-0.623 0.59-1.44 1.04-1.87 1.79-0.612 1.06 2.255-0.99 3.327-1.59 8.247-4.62-4.596 2.86 1.636 0.19 14.52-8.14-9.442 8.2 6.789-2.22-2.009 1.61-4.23 2.99-6.026 4.83-1.608 1.65 7.447-5.08 6.135-3.18-1.307 1.88-10.001 7.15-0.462 1.12 11.211-5.78-3.206 2.29 4.283 0.13 1.751 1.34 7.189-2.71 2.171 2.17 2.101-0.8 7.554-3.12 7.345-2.9-1.115 1.16-2.434 2.11-3.652 3.16 1.782-0.28 9.839-6.01 10.819-5.44 1.717 0.98-6.346 4.06-1.063 1.89-6.937 3.72 1.745 1.16 2.74 0.72 2.32 0.75-1.718 2.83 5.12-1.91-0.01 6.08 4.04-9.93-2.39 3-1.06 2.12 4.34-1.96 6.38-3.18-2.19 4.21 3.52 0.26 5.19-0.6-6.61 7.31 5.93-5.37 1.82 2.02 9.65-5.22-4.25 5.45 6.97-1.1-3.74 5.01 5.38-4.6 2.25 1.15 7.32-3.77-1.26 2.63 6.84-2.63-12.58 11.94 7.7-5.83 0.2 2.36 2.86-1.15 9.43-6.57 1.67-0.03l-6.9 5.35c6.95-5.83 0-0.41-2.4 0.24 0.68-1.3 3.05-6.19-2.86-0.18 6.87-7.36-5.51 2.98 0.14-2.71-3.26 0.66-3.75 0.6-6.33 1.81-13.1 3.57 4.38-4.27-7.53 1.51 9.73-8.95-6.77 5.07-1.36-2.36-12.346 7.16 18.04-11.6-7.23 3.18-0.175 0.1 0.06-0.4 0.08-0.6 1.21-1.05 2.42-2.09 3.62-3.14-4.163 1.99-2.35-0.23-5.743 1.75-1.165 0.67-3.548 2.65-4.257 0.96-8.644 3.26 4.725-3.4-3.867 0.09-3.794 1.38-3.019 0.34-1.515-2.44-1.416 0.52-5.42 2.12-6.313 1.64-0.614 0.26-5.858-1.05-5.831 0.49-8.999 1.69 9.293-7.07-6.085 1.18 5.718-5.92-15.163 9.77 1.746-3.77-10.077 6.52-3.432 1.43-1.097-1.93-9.675 6.39-5.75 2.68-11.999 6.09-3.664 1.79 0.403-2.54 0.48-2.82-0.382 0.24-14.09 6.85-3.012-0.26-0.467 0.07-1.68 0.57-1.401 0.19 6.205-8.42-8.968 7.27-0.747-1.14-12.336 7.7 1.667-2.12-8.274 3.49 0.558-0.94 1.03-1.94 1.674-2.82 0.564-0.78-11.936-0.7-2.661 1.09-1.911 0.68-3.862 1.27-5.709 2.11 9.332-8.22-14.134 9.34 0.858-2.77-18.557 11.63 6.819-5.14-9.293 4.04 3.826-4.62 1.559-3.43-3.435 0.05 1.334-1.09 5.717-3.47 4.002-3.28-3.353 0.36-9.818 8.33-0.873-0.05 0.394-0.37-1.953 0.88-1.514 0.57l5.907-4.29z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3087" style="color:black" d="m31.329 236.03c2.537-2.4 5.546-2.74 4.719-1.75 3.01 1.48 10.636-6.19 7.905 1.56 4.867 0.63 8.805-5.66 13.57-4.96 1.379 0.21-3.032 3.31-1.731 3.81 0.748 0.29 9.716-0.97 11.707-1.79 3.668-1.89 10.847-0.91 8.687 3.2 19.286-9.98 0.387 2.33 15.12-3.28 4.971-2.54 4.368 0.66 8.874 1.59 5.91 1.35 6.77-1.92 12.98-3.92 0.68-0.22-1.15 1.34-0.82 1.97 0.28 0.55 1.24 0.01 1.86 0.02 3.66 1.11 8.9-3.51 9.67 1.11 8.17-5.06 4.14-0.76 11.16-3.9-9.36 5.87 1.05 2.61 1.1 2.6l-5.3 3.85c-1.4 0.41-5.89 2.17-3.25-1.02-3.67 2.12-5.54 1.92-8.31 1.87-5.76 0.93-8.75-1.86-16.35 3.79 4.03-5.41-0.8-4.93-6.982-3.29-4.294-2.35-9.593 1.71-14.132 2.24 2.767-4.1-5.308-3.1-9.13-1.08 1.614-4.87-11.397 2.25-12.62-0.34-6.456 0.21-12.099 1.23-16.05-2.51-8.437 2.8-7.699-0.5-15.41 3.9 10.308-8.88-4.887 2.83 0.608-2.13l2.125-1.54z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3093" style="color:black" d="m31.665 242.47c5.934-4.62 0.021 1.17 3.404 1.37 5.799 0.35 4.995-3.63 4.506 2.53 7.841-0.41 16.603-2.74 24.439-2.42 2.14 0.09 3.798 2.43 5.939 2.45 23.15 0.2 5.518-5.72 20.901 0.77 4.89-0.66 9.746-2.29 14.676-1.98 2.66 0.17 4.61 3.23 7.28 3.37 9.28 0.49 18.29-5.89 27.5-4.6 1.59 0.23 1.21 2.99 1.81 4.48l3.67-2.67c-21.21 6.1-13.59-1.3-29.29 0.11-11.08 0.99-21.377 6.85-32.732 6.43-10.384-8.39-13.602-3.78-26.342-3.6-6.936 0.1-13.217-5.82-20.751-0.28-5.778-3.18-18.552 2.78-10.769-1.78l5.759-4.18z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3097" style="color:black" d="m192.53 223.6c-4.38 4.86 14.98-13.39 2.68-0.94 3.15-0.26-4.79 4.95 3.9-0.92-5.01 4.02 3.43-0.47 3.5-0.49-2.35 3.05-0.78 1.07 2.76-0.73 0.69-0.36-1.82 0.98-1.66 1.85 0.15 0.78 1.2-0.74 1.8-1.12 5.9-3.71-5.12 4.32-4.12 4.74 0.93 0.39 7.23-6.38 3.6-1.28-0.09 0.75 12.08-8.05 10.85-6.45-3.34 4.34-14.4 12.2-3.19 3.94 5.2-3.61 1.82 0.94 1.44 1.5 1.24-0.1 8.85-5.84 1.43 1.56 4.92-3.39 6.26-3.41 3.3-0.21 4.94-2.56 9.76-8.27 4.54-1.43 3.71-1.23 7.61-7.73-0.91 2.07-1.78 2.05 4.38-2.8 6.48-4.38-2.25 5.09 12.77-9.64 1.03 1.62 1.92-0.71 0.46 0.88 2.82 0.04-0.83 1.33 5.77-4.74 4.6-3.16-1.13 1.54-2.68 2.57-4.02 3.85-0.98 0.99-4.09 3.67-2.95 2.97 4.65-2.87 9.06-8.06 4.87-3.33 10.72-8.24-4.03 4.23 4.75-1.61 0.47-0.27 1.79-1.26 1.43-0.8-10.01 12.54 4.23-3.01-0.88 2.75 11.22-6.71-6.63 4.32 6.33-2.95 4.55-3.08-3.04 2.32-2.06 2.59 5.96 1.67-2.45 2.58 1.72 0.21 4.02-2.76 2.49-0.67 4.07-1 10.81-8.29-3.07 3.74 3.39-0.27-2.44 4.64 7.71-6.57 1.63 1.68 0.63 0.49 6.58-3.52 5.64-2.23 10.17-6.66-8.64 6.7 0.84 1.76 4.89-1.65-4.73 4.64 2.59 0.24 1.5 0.85 4.67-1.69 7.75-3.81-13.07 12.89 7.67-4.6-0.03 3.43-7.58 4.77 5.78-4.67 4.85-2.83-1.03 2.05-3.51 2.57-4.71 4.5-3.41 5.49 8.83-8.59 1.86-0.72 7.97-4.27-0.06 1.43 7.24-2.99-1.83 2.29-0.82 2.98 1.15 1.6 1.59 2.01 9.11-7.95 1 1.65-0.52 1.44 4.84-2.87 7.08-3.59-1.39 3.05-7.47 5.83 4.72-1.58l-8.45 7.28c2.45-3.15-3.09 1.34-3.93 0.89-7.62 5.31 1.39-1.81 0.25-1.48-1.61 0.47-4.98 4.67-4.33 2.87 0.2-0.55 0.7-0.86 1.05-1.29-0.67 0.4-5.73 2.17 0.62-3.03-4.89 3.52-10.24 6.7-2.52-0.42-2.57 1.68-17.35 11.31-9.37 4.81 3.51-4.05 1.12-2.03-0.87-1.92 0.95-4.96-6.52 4.65-3.4-0.47 4.43-6.02-7.66 5.66-2.87-0.39-4.58 2.83 0.45-0.06 0.36-1.17-0.21-2.59-0.52 1.34-5.57 4.01-0.41 0.21 1.67-1.31 0.65-1.39 5.39-7.86-14.5 12.11 0.55-2.96-1.48 1.13-3.34 5.03-4.43 3.39-1.09-1.63 2.86-2.43 4.06-3.94 0.01-0.01-13.33 11.9-4.47 2.09-9.54 6.53 12.94-11.22-5.48 1.64 6.23-6.75-4.27 2.48-4.9 1.57 1.47-1.79 6.52-6.06 4.54-5.2-20.39 8.89 3.55 1.47-4.77 2.9-0.2 0.03-4.02 1.9-2.64-0.24-1.04 0.49-7.52 2.41-0.43-2.13-2.7 2.03-8.51 5.13-0.67-1.85-18.54 13.61 3.1-2.71-8.61 4.93-0.73 0.33-1.59 0.07-2.34 0.35-0.86 0.31-2.96 2.34-2.32 1.6 1.49-1.75 3.29-3.11 4.93-4.66-3.52 2.43-5.22 2.67-6.54 3.17 4.7-5.43 0.74-1.25-2.74-0.16 0.71-0.74 3.09-2.29 2.14-2.23-1.74 0.11-6.07 4.77-5.24 2.42 4.8-5.31-0.1-0.37-0.29-1.36-0.18-0.91 4.34-3.51-0.5-0.44-5.78 2.72 3.06-3.29-2.97 0.85-0.91 0.62-3.45 2.78-2.71 1.89 1.58-1.92 3.54-3.36 5.31-5.04-12.39 6.32 3.64-3.29-8.06 4.13 3.71-5.7-3.7 2.48-1.29-1.64-0.97-0.27-10.14 5.49-3.39-1.16 3.35-5.02-7.88 5.29-2.61-0.75-5.47 3.81 0.22-1.63-5.97 2.64 5.07-5.18 2.4-2.55-0.5-2.09-0.3 0.17-7.14 4.87-4.35 1.31-2.17 0.96-8.43 5.62-0.75-0.73l2.71-2.33z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3103" style="color:black" d="m189.88 233.47c6.83-4.72-7.11 6.88 6.21-1.27-1 1.36-4.38 3.29-3.01 4.06 2.89 1.63 5.64-4.45 8.84-4.4 5.57 0.08-17.28 13.39 4.99 0.97 1.71-0.75 3.3-2.06 5.12-2.25 1.4-0.14 2.45 2.09 3.86 2 3.52-0.2 6.89-3.15 10.37-2.46 0.81 0.15 0.26 1.91 0.39 2.87 8.13 2.83 16.14-1.24 24.42-2.64-4.82 10.25 5.49 2.55 9.53 1.1 2.51-0.17 3.62 0.78 6.5 0.29 2.39 4.41 5.36-3.58 8.72-0.18 17.17-8.07-4.85 6.38 4.89 1.47 1.47-0.2 6.44-3.03 6.12-2.39-0.62 1.25-3.71 3.44-2.5 3.19 3.3-0.67 9.02-7.89 2.83-0.65 25.52-15.75-15.46 7.87 7.45-2.95 0.9-0.61 1.79-1.21 2.68-1.82l-8.22 7.09c-0.56 0.31-1.11 0.62-1.66 0.93 4.68-5.48-1.57 2.12-3.19 1.68-9.88-2.7 10.08-5.42 1.84-3.98-7.26 3.27-0.32-1.9-7.79 2.82-1.46 0.93-3.73 4.64-4.36 2.83-0.67-1.93 2.58-2.82 3.87-4.23-13.98 7.79 9.02-10.96-8.68 1.84 5.1-8.66 2.71-0.78-3.87-0.19-1.63 0.15 3.44-2.3 3.37-4.24-0.12-3.39-8.61 8.64-7.79 4.32 1.93-6.36 0.64 0.59-4.18 0.3-2.07-0.12 19.06-18.1-6.31 2.95 1.77-1.85 5.25-2.76 5.3-5.55 0.03-2.39-3.25 3.43-5.27 3.55-1.24 0.07 2.44-4.61 1.25-4.17-7.39 2.77-6.42 6.93-6.91 1.48-3.41-0.4-6.39-1.23-9.84-0.2-4.9 1.45-9.5 7.64-14.32 5.86-1.53-0.57 1.43-3.39 2.15-5.09-2.8 0.42-9.55-0.5-10.99-0.22-2.48 0.48-5.69 5.7-7.04 3.19-2.36-4.4 14.58-11.45-0.67-4.04-2.04-5.73-20.98 12.87-10.61-0.79-13.5 8.85-3.55 0.61-6.34 1.38l2.85-2.46z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3109" style="color:black" d="m187.36 243.29c0.89-0.67 3.43-3.62 4.55 0.94 13.37-3.69 27.03-0.73 40.71-2.39 7.85 11.8-5.12-5.04 14.67 0.32 8.66 2.34-9.84 10.52 2.82 9.3 12.35-4.5 6.67-3.44 16.89-4.24 1.99 12.64 15.43-7.73 28.08 1.53l-1.53 1.38c-2.57 0.35-4.74 1.34-7.08-0.64-0.79-0.67-0.8-2.93-1.75-2.82-7.55 0.88-13.75 8.05-21.71 4.09-2.75-0.92-5.21-3.04-8.01-3.68-10.72-2.47-20.91 10.34-31.26 2.68-2.67 0.06-5.35-0.18-8 0.19-3.48 0.48-7.78 5.29-10.34 2.33-2.14-2.5 5.91-7.19 3.88-9.82-2.46-3.2-17.5 7.56-21.86 5.7-2.41-2.35 2.71-6.5-3.45-1.82l3.39-3.05z" transform="translate(10 2035.6)"/>
+ <path id="calligraphy-f07-zh_TW.svgpath3175" style="color:black" d="m111.59 9.6633c0.82 0.0314 1.65 0.0498 2.47 0.0728 5.55 0.2034 11.11 0.243 16.66 0.2849 7.74 0.038 15.48-0.0233 23.22-0.057 5.4-0.1361 10.79 0.055 16.18 0.212 3.48 0.112 6.95 0.1 10.43 0.082 1.55-0.021 3.1-0.03 4.65-0.043 1.35 0.002 2.69 0.006 4.04 0.006 1.34 0.007 2.67-0.004 4.01-0.011 0.94 0.117 1.86-0.089 2.75-0.188l-5.83 4.441c-0.95 0.03-1.9 0.089-2.84 0.051-1.33-0.007-2.66-0.018-3.98-0.011-1.36 0.002-2.71 0.006-4.06 0.011-1.51-0.011-3.02-0.014-4.52-0.061-3.39-0.088-6.77-0.198-10.16-0.303-5.29-0.185-10.59-0.441-15.89-0.39-7.69-0.034-15.38-0.095-23.06-0.057-5.82 0.043-11.64 0.088-17.45 0.285-0.89 0.024-1.78 0.042-2.68 0.073l6.06-4.3977z" transform="translate(10 2035.6)"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2313.5692710000008" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2313.5692710000008" x="10">擺動和質量</tspan>
</text>
- <rect id="d0e275" display="none" height="1e3px" width="288" y="2327.3" x="10"/>
+ <rect id="d0e275" display="none" height="1e3px" width="288" y="2318.8" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e275"/>
</flowRegion>
<flowDiv xml:space="preserve">不同於寬度和角度,最後這兩個參數是定義工具「感覺」起來如何,而不是影響工具產生的效果。所以在這一小節不會有任何插圖;反而只要你自己去嘗試這兩個參數從中獲得想法。</flowDiv>
</flowRoot>
- <rect id="d0e278" display="none" height="1e3px" width="288" y="2366.6" x="10"/>
+ <rect id="d0e278" display="none" height="1e3px" width="288" y="2358.1" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e278"/>
</flowRegion>
<flowDiv xml:space="preserve"><flowSpan font-style="italic">擺動</flowSpan>是筆移動時與紙張之間的阻力。預設為最小值 (0),而這項參數愈大會使紙張愈「光滑」:如果質量很大,筆往往會在轉彎處失控;如果質量為零,且擺動值高會使筆瘋狂扭動。</flowDiv>
</flowRoot>
- <rect id="d0e283" display="none" height="1e3px" width="288" y="2405.8" x="10"/>
+ <rect id="d0e283" display="none" height="1e3px" width="288" y="2397.6" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e283"/>
</flowRegion>
<flowDiv xml:space="preserve">物理上,<flowSpan font-style="italic">質量</flowSpan>是導致慣性的因素;Inkscape 書法工具的質量越大,會比滑鼠游標移動慢更多且筆畫中的小轉彎和扭轉處會更為平滑。預設的質量相當小 (2) 所以書法工具反應快速,但你能增加質量使筆尖移動較慢且較平滑。</flowDiv>
</flowRoot>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2458.990731" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="2458.990731" x="10">書法範例</tspan>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="2450.5356300000008" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="2450.5356300000008" x="10">書法範例</tspan>
</text>
- <rect id="d0e295" display="none" height="1e3px" width="288" y="2464.2" x="10"/>
+ <rect id="d0e295" display="none" height="1e3px" width="288" y="2455.7" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e295"/>
</flowRegion>
<flowDiv xml:space="preserve">現在你已經曉得書法工具的基本功能,你可試著寫一些實際的書法。如果你對這門藝術不熟悉,自己找一本書法書籍並用 Inkscape 來學習。這一小節只會示範一些簡單的例子讓你看。</flowDiv>
</flowRoot>
- <rect id="d0e298" display="none" height="1e3px" width="288" y="2504.2" x="10"/>
+ <rect id="d0e298" display="none" height="1e3px" width="288" y="2495.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e298"/>
</flowRegion>
<flowDiv xml:space="preserve">首先,開始學習寫一些字,你需要建立一組基準線引導你。如果你要寫斜體或草書,同樣地加入一些跨越那兩條基準線的斜參考線,如下:</flowDiv>
</flowRoot>
- <path id="calligraphy-f08-zh_TW.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f08-zh_TW.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 2540.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <rect id="d0e311" display="none" height="1e3px" width="288" y="2613.5" x="10"/>
+ <path id="calligraphy-f08-zh_TW.svgpath3323" d="m10.513 15.8h290.3" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath3324" d="m10.513 44.257h290.3" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8580" style="color:#000000" d="m141.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8581" style="color:#000000" d="m166.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8582" style="color:#000000" d="m191.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8583" style="color:#000000" d="m216.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8584" style="color:#000000" d="m241.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f08-zh_TW.svgpath8585" style="color:#000000" d="m266.27 60.735l16.19-60.437" display="block" transform="translate(10 2531.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <rect id="d0e311" display="none" height="1e3px" width="288" y="2604.5" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e311"/>
</flowRegion>
<flowDiv xml:space="preserve">然後放大畫面如此一來基準線間的高度相當於你的手最自然的移動範圍,調整寬度和角度,然後自己練習寫看看!</flowDiv>
</flowRoot>
- <rect id="d0e314" display="none" height="1e3px" width="288" y="2642.3" x="10"/>
+ <rect id="d0e314" display="none" height="1e3px" width="288" y="2633.2" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e314"/>
</flowRegion>
<flowDiv xml:space="preserve">身為書法初學者要做的第一件事大概是練習文字的基本元素 — 橫、豎、圓、撇。下面有一些安瑟爾字體 (Uncial hand) 的字形元素:</flowDiv>
</flowRoot>
- <path id="calligraphy-f09-zh_TW.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 2679.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-zh_TW.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 2679.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f09-zh_TW.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 2679.9)" display="block"/>
- <path id="calligraphy-f09-zh_TW.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 2679.9)" display="block"/>
- <rect id="d0e327" display="none" height="1e3px" width="288" y="2722.9" x="10"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8610" d="m10.513 1.4559h290.3" display="block" transform="translate(10 2670.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8611" d="m10.513 29.913h290.3" display="block" transform="translate(10 2670.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8631" d="m28.442 4.8689c5.087-5.4229 10.288-7.0634 10.025 0.7726-0.092 5.9105-0.936 11.822-0.548 17.732 0.431 2.413 0.39 5.042 3.359 4.222 5.238-2.893-6.553 4.514-0.972-0.118l5.917-2.413c-3.013 2.668-6.826 4.113-10.572 5.56-3.052 0.568-3.131-2.153-3.563-4.634-0.402-5.92 0.438-11.839 0.538-17.758 0.242-6.5974-4.123-3.8738 3.218-7.2488 0.613-0.2819-2.159 0.9679-1.564 1.2854l-5.838 2.5993z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8642" d="m43.085 3.1675c5.029-2.6743 7.801-5.5588 10.236 0.0497 1.726 5.2046 0.957 10.78 0.864 16.165 0.181 2.744-0.651 5.951 0.584 8.329 2.574 0.536 5.818-1.506-3.001 2.289-1.9 0.818 3.223-2.623 4.597-4.169l5.91-2.432c-3.082 3.522-8.3 8.643-13.244 7.124-1.617-2.281-0.349-5.856-0.686-8.546 0.09-5.353 0.866-10.897-0.823-16.075-2.292-5.2865-7.702-0.9292 1.401-5.3338l-5.838 2.5993z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8644" d="m58.728 5.594c1.01-2.7917 8.7-7.3762 10.789-3.8006 1.195 4.7495 0.688 9.6466 0.492 14.474 0.014 2.959 0.09 5.898-0.069 8.852-0.979 3.346 4.543 1.249 3.903 1.587-8.82 4.649-4.895 2.606-2.966 1.13 2.352-2.079-0.562 0.545 1.547-1.503l5.817-2.647c-2.082 2.1 0.795-0.576-1.53 1.543-2.399 1.891-11.856 9.037-12.51 2.701 0.144-2.954 0.107-5.893 0.069-8.853 0.186-4.793 0.707-9.6475-0.442-14.372-1.713-2.889-9.439 2.5572 1.488-3.0056 0.407-0.207-1.273 0.8818-0.856 1.068l-5.732 2.8266z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8647" d="m88.988 3.5669h13.962c3.4 0.0526 6.75-1.0978 10.1-0.538l-5.68 2.9135c-3.36-0.4316-6.7 0.6614-10.08 0.5852h-13.965l5.663-2.9607z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8651" d="m88.332 8.4479c4.293 0.9962 8.782 0.3496 13.138 0.0215 3.29-0.2538 6.6-0.3486 9.9-0.3741l-5.67 2.9617c-3.3 0.032-6.592 0.133-9.881 0.39-4.379 0.329-8.824 0.897-13.15-0.038l5.663-2.9611z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8654" d="m87.942 14.723c3.562 0.134 7.098-0.197 10.648-0.427 3.88-0.289 7.77-0.157 11.65-0.44l-5.65 2.977c-3.88 0.271-7.777 0.136-11.656 0.439-3.551 0.235-7.092 0.539-10.655 0.412l5.663-2.961z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8656" d="m86.938 20.302h8.441c3.9-0.105 7.821 0.209 11.711-0.169 1.46-0.132 2.92-0.156 4.39-0.177l-5.67 2.964c-1.46 0.025-2.92 0.054-4.38 0.195-3.887 0.355-7.812 0.036-11.714 0.147h-8.441l5.663-2.96z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8668" d="m130.55 5.003c-2.86-0.364-11.77 3.1282-2-0.5935 0.51-0.194-0.94 0.5466-1.4 0.8466-1.47 0.9694-2.71 2.0912-3.95 3.3363-5.49 6.2106-4.63 15.432 3.43 18.657-2.72 3.812 16.46-2.642 12.96-1.221-7.97 3.241-3.19 1.21-1.11-0.424l5.79-2.701c-6.46 5.084-15.13 9.42-23.43 7.047-8.06-3.225-8.92-12.446-3.43-18.657 4.89-4.9189 11.93-8.8025 18.93-8.9908l-5.79 2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8671" d="m151.47 3.6085c-2.72-0.0444-9.78 3.0733 0.19-1.0704 0.37-0.1531-0.69 0.3941-1.03 0.6108-1.44 0.93-2.67 2.0701-3.86 3.2884-4.68 4.5667-5.34 11.204-0.88 16.1 4.3 4.731 10.11 4.654 15.94 3.481 2.32-0.439 8.75-3.028-0.95 1.062-1.61 0.679 2.81-2.135 3.9-3.496l5.79-2.7c-3.54 4.412-9.13 6.51-14.53 7.835-5.83 1.173-11.64 1.249-15.94-3.481-4.46-4.896-3.8-11.533 0.87-16.1 4.26-4.3395 10.22-7.6531 16.29-8.2303l-5.79 2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8700" d="m152.25 8.0156c3.63-6.2319 15.31-8.2112 21.94-6.2059 7.9 4.4498 7.17 17.466 0.82 22.962-4.61 2.72-9.52 5.15-14.76 6.259l5.79-2.701c10-2.113-6.15 3.298 3.18-0.857 6.35-5.496 7.07-18.513-0.82-22.962-3.07-0.9302-6.07-0.972-9.23-0.381-1.05 0.1975-4.05 1.3409-3.12 0.8136 9.12-5.1376 2.85-1.9127 1.99 0.3712l-5.79 2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8705" d="m174.95 7.3185c6.25-7.1109 20.64-9.6534 27.45-2.0885 8.01 13.572-5.76 22.718-17.98 24.819-1.72 0.234-3.4 0.095-5.1-0.212l5.8-2.7c1.69 0.306 3.37 0.445 5.09 0.211 1.47-0.253 5.54-1.947 4.37-1.014-1.08 0.862-2.44 1.301-3.7 1.841-3.45 1.466 4.45-2.192 6.42-5.5 2.67-4.483 1.88-10.446-0.69-14.744-3.24-3.6063-7.44-4.7606-12.24-4.4726-1.45 0.087-5.41 1.6054-4.31 0.6547 1.17-1.0121 2.75-1.4279 4.09-2.1876 1.26-0.7109-4.66 1.9724-3.4 2.6922l-5.8 2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8711" d="m214 6.7046c3.51-2.7111 9.01-8.0683 12.47-3.7249 2.59 4.4358 3.2 9.6463 4.74 14.495 0.72 2.704 2.13 5.133 3.39 7.606-0.93 2.661 4.22 2.169 3.8 2.371-9.13 4.345-5.13 2.475-3.13 1.07l0.96-0.726 5.8-2.7c-0.33 0.242-0.65 0.483-0.97 0.725-3.55 2.504-10.32 7.893-12.25 1.961-1.26-2.473-2.67-4.902-3.39-7.606-1.54-4.849-2.16-10.06-4.74-14.496-0.7-0.8855-4.08-0.9847-3.06-1.476 9.96-4.7933 4.17-2.2166 2.17-0.2002l-5.79 2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8713" d="m237.92 4.3941c-13.77 6.8489 1.62-4.9758 4.47-2.5521 3.15 3.6062 3.38 8.179 4.72 12.538 1.43 3.31 2.72 6.684 4.09 10.022 1.7 5.7 12.34-0.596 1.89 4.235l0.75-0.513 5.79-2.701-0.75 0.513c-3.48 1.633-11.15 7.092-13.47 1.167-1.37-3.338-2.66-6.712-4.09-10.023-1.34-4.358-1.58-8.9311-4.72-12.537-2.35-1.9975-2.93-0.1845 4-3.3564 0.17-0.0792-11.41 9.3044-8.47 5.9083l5.79-2.7008z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8725" d="m269.05 5.3873c2.1-2.0986 10.45-7.2855 10.2-2.8943-1.99 5.9246-4.93 11.628-8.52 16.724-1.84 2.52-3.71 5.101-5.25 7.799 1.73 1.173 4.67-0.56 6.57-1.342l-5.79 2.746c-1.9 0.783-4.84 2.516-6.57 1.343 1.54-2.698 3.41-5.279 5.24-7.799 3.6-5.096 6.53-10.8 8.53-16.724 0.04-0.8717-3.01-0.9189-2.24-1.3007 9.54-4.7197 5.48-2.9735 3.62-1.2989l-5.79 2.7469z" transform="translate(10 2670.3)" display="block"/>
+ <path id="calligraphy-f09-zh_TW.svgpath8727" d="m280.52 5.4551c2.1-2.633 7.05-5.9631 9.47-4.456-1.8 7.1986-7.38 13.179-11.15 19.461-0.87 2.437-5.43 7.541-0.6 6.049 0.9-0.133 1.73-0.456 2.57-0.799l-5.68 3.035c-0.84 0.343-1.67 0.666-2.57 0.799-4.83 1.492-0.27-3.612 0.6-6.05 3.77-6.281 9.36-12.261 11.15-19.46-0.61-0.3801-2.76 0.329-2.14-0.0186 9.3-5.1467 5.52-3.6581 4.03-1.5951l-5.68 3.0348z" transform="translate(10 2670.3)" display="block"/>
+ <rect id="d0e327" display="none" height="1e3px" width="288" y="2713.3" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e327"/>
</flowRegion>
<flowDiv xml:space="preserve">一些有用的秘訣:</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 2746.6)"/>
- <rect id="d0e333" display="none" height="1e3px" width="258" y="2740.6" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 2737)"/>
+ <rect id="d0e333" display="none" height="1e3px" width="258" y="2731" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e333"/>
</flowRegion>
<flowDiv xml:space="preserve">如果你的手在繪圖板上很舒適,手不要離開。反而,在完成每個字母後用你的左手捲動頁面 (<flowSpan font-weight="bold">Ctrl+方向鍵</flowSpan>)。</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 2776.2)"/>
- <rect id="d0e340" display="none" height="1e3px" width="258" y="2770.2" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 2765.7)"/>
+ <rect id="d0e340" display="none" height="1e3px" width="258" y="2759.7" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e340"/>
</flowRegion>
<flowDiv xml:space="preserve">如果你最後一道筆畫很糟,直接按 <flowSpan font-weight="bold">Ctrl+Z</flowSpan> 復原。不過,假如字的形狀很棒但位置或大小有輕微偏離,最好暫時切換到選取工具 (<flowSpan font-weight="bold">空白鍵</flowSpan>) 並依需求調整/縮放/旋轉 (使用滑鼠或鍵盤),然後再按一次<flowSpan font-weight="bold">空白鍵</flowSpan>回到輸法工具。</flowDiv>
</flowRoot>
- <circle cy="0" cx="0" r="2" transform="translate(15 2828)"/>
- <rect id="d0e353" display="none" height="1e3px" width="258" y="2822" x="20"/>
+ <circle cy="0" cx="0" r="2" transform="translate(15 2816.6)"/>
+ <rect id="d0e353" display="none" height="1e3px" width="258" y="2810.6" x="20"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e353"/>
</flowRegion>
<flowDiv xml:space="preserve">已經完成一個字母,就再次切換到選取工具去調整筆畫一致性和字母間距。可是不要做過頭了;好的書法必須保留稍微不規則的手寫樣貌。要抵抗去複製字母和字母元件的誘惑;每一筆畫都必須用手寫。</flowDiv>
</flowRoot>
- <rect id="d0e357" display="none" height="1e3px" width="288" y="2861.4" x="10"/>
+ <rect id="d0e357" display="none" height="1e3px" width="288" y="2850" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e357"/>
</flowRegion>
<flowDiv xml:space="preserve">而這裡有一些完整的文字範例:</flowDiv>
</flowRoot>
- <path id="calligraphy-f10-zh_TW.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-zh_TW.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2887.3)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">安瑟爾體 (Unicial)</tspan></text>
- <text id="calligraphy-f10-zh_TW.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2887.3)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">卡洛林王朝體 (Carolingian)</tspan></text>
- <text id="calligraphy-f10-zh_TW.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2887.3)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">哥德體 (Gothic)</tspan></text>
- <text id="calligraphy-f10-zh_TW.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2887.3)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">法國哥德體 (Bâtarde)</tspan></text>
- <path id="calligraphy-f10-zh_TW.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <path id="calligraphy-f10-zh_TW.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 2887.3)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
- <text id="calligraphy-f10-zh_TW.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2887.3)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">花斜體 (Flourished Italic)</tspan></text>
- <path id="calligraphy-f10-zh_TW.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 2887.3)" display="block"/>
- <path id="calligraphy-f10-zh_TW.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 2887.3)" display="block"/>
- <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3466.1108259999996" x="10" font-family="sans-serif" fill="#000000">
- <tspan y="3466.1108259999996" x="10">結論</tspan>
+ <path id="calligraphy-f10-zh_TW.svgpath10059" d="m10.513 15.825h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10060" d="m10.513 44.282h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10134" d="m10.513 90.825h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10135" d="m10.513 119.28h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10280" d="m10.513 185.82h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10281" d="m10.513 214.28h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10452" d="m10.513 270.82h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10453" d="m10.513 299.28h290.3" display="block" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.59489660 1.7846897" stroke-width=".59490" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-zh_TW.svgtext10638" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2875.9)" sodipodi:linespacing="120.00000%" font-size="6" y="4.5585475" x="141.33449" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10639" sodipodi:role="line" x="141.33449" y="4.5585475">安瑟爾體 (Uncial)</tspan></text>
+ <text id="calligraphy-f10-zh_TW.svgtext10644" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2875.9)" sodipodi:linespacing="120.00000%" font-size="6" y="79.558548" x="134.52438" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10645" sodipodi:role="line" x="134.52438" y="79.558548">卡洛林王朝體 (Carolingian)</tspan></text>
+ <text id="calligraphy-f10-zh_TW.svgtext10648" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2875.9)" sodipodi:linespacing="120.00000%" font-size="6" y="172.05855" x="141.78998" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10649" sodipodi:role="line" x="141.78998" y="172.05855">哥德體 (Gothic)</tspan></text>
+ <text id="calligraphy-f10-zh_TW.svgtext10652" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2875.9)" sodipodi:linespacing="120.00000%" font-size="6" y="257.05853" x="139.54298" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10653" sodipodi:role="line" x="139.54298" y="257.05853">法國哥德體 (Bâtarde)</tspan></text>
+ <path id="calligraphy-f10-zh_TW.svgpath10657" d="m57.076 430.38h213.69" display="block" sodipodi:nodetypes="cc" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10658" d="m57.075 461.87h213.7" display="block" sodipodi:nodetypes="cc" transform="translate(10 2875.9)" stroke="#aeaeae" stroke-dasharray="0.65820036 1.9746010" stroke-width=".65820" sodipodi:insensitive="true" fill="none"/>
+ <text id="calligraphy-f10-zh_TW.svgtext10681" line-height="120.00000%" xml:space="preserve" display="block" transform="translate(10 2875.9)" sodipodi:linespacing="120.00000%" font-size="6" y="359.55853" x="124.28999" font-family="sans-serif" sodipodi:insensitive="true" fill="#000000"><tspan id="calligraphy-f10-zh_TW.svgtspan10682" sodipodi:role="line" x="124.28999" y="359.55853">花斜體 (Flourished Italic)</tspan></text>
+ <path id="calligraphy-f10-zh_TW.svgpath10071" d="m56.566 28.63c12.545-7.048-5.072 5.5-7.647 10.139-1.877 4.847 5.578 1.714 5.35 1.806-9.236 3.702 1.244-1.941 3.786-4.247 0.395-0.382 0.791-0.765 1.186-1.147l5.912-2.757c-0.395 0.382-0.79 0.765-1.186 1.148-4.173 3.783-20.211 16.539-20.96 7.954 4.066-7.324 12.118-12.278 19.471-15.653l-5.912 2.757z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10086" d="m45.263 21.47c2.914-4.191 10.292-8.167 14.4-3.949 5.017 6.646 6.851 14.929 9.933 22.522-0.295 3.139 6.287 0.048 5.075 0.624-9.182 4.37-5.447 2.58-3.345 1.301l5.912-2.757c-2.739 1.666-10.917 7.983-13.555 3.589-3.081-7.593-4.915-15.876-9.933-22.522-1.291-1.326-7.021-0.635-5.36-1.452 9.886-4.856 4.044-2.525 2.785-0.113l-5.912 2.757z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10102" d="m122.06 18.373c-2.93-0.309-11.85 3.332-1.6-0.87 1.77-0.724-2.96 2.549-4.16 4.107-5.97 8.607-0.53 17.464 8.19 19.846-1 1.959 11.43-2.08 10.02-1.438-8.13 3.694-3.74 1.697-1.65-0.148l5.79-2.873c-5.4 4.777-12.81 8.586-19.95 7.332-8.72-2.382-14.16-11.239-8.2-19.846 4.13-5.357 10.86-8.798 17.36-8.983l-5.8 2.873z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10103" d="m124.89 15.5c3.29 0.4 6.64 0.545 9.96 0.66 1.83-0.104 3.6 0.31 5.39 0.61l-5.79 2.701c-1.79-0.301-3.56-0.715-5.39-0.61-3.33-0.115-6.67-0.261-9.97-0.661l5.8-2.7z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10106" d="m133.22 18.993v-0.016c1.9-0.938 3.78-1.928 5.7-2.814 1.23-0.566-0.37 2.687-0.46 4.039-0.26 4.254-0.3 8.527-0.44 12.788-0.63 8.707-0.6 17.39-0.11 26.096 0.23 1.997-0.4 4.236 0.48 5.704-8.32 4.897-3.41 1.494 0.14-0.936l5.69-2.896c-3.72 2.551-7.12 5.261-11.53 6.729-0.87-1.468-0.25-3.707-0.48-5.704-0.48-8.707-0.52-17.389 0.11-26.097 0.28-8.503-2.38-16.432 6.6-19.789l-5.7 2.896z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10119" d="m144.58 20.053c3.18-2.209 8.25-4.575 11.19-3.988-3.2 5.245-5.8 10.465-5.9 16.842 0.41 9.359 9.82 9.73 16.42 7.094 6.07-4.059-6.91 4.724 2.57-2.216l5.79-2.804c-4.4 3.215-9.22 5.607-14.15 7.824-6.6 2.637-16.02 2.266-16.42-7.093 0.1-6.377 2.7-11.598 5.9-16.842-4.05-0.81-6.6 2.242 0.39-1.622l-5.79 2.805z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10120" d="m170.33 16.195c1.44-0.014 2.8-0.577 4.15-1.019 1.7 1.369 1.14 4.79 1.18 7.048-0.05 3.785 0.37 7.587 0.15 11.369-0.08 2.237-0.2 4.455-0.39 6.682 0.01 0.471-0.04 0.939-0.06 1.409l-5.73 2.829c0.02-0.469 0.07-0.938 0.06-1.409 0.19-2.226 0.31-4.444 0.39-6.682 0.22-3.782-0.2-7.583-0.15-11.369-0.04-2.258 0.52-5.679-1.18-7.048-1.35 0.443-2.71 1.005-4.15 1.019l5.73-2.829z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10125" d="m186.03 17.94c-14.66 6.79-0.05 0.024 0.39-0.198 1.78-0.898-3.61 1.681-5.42 2.5-2.3 1.036 4.55-2.162 6.83-3.222 1.72-0.796-6.86 3.151-5.13 2.389 3.34-1.476 7.54-4.672 11.44-3.185 2.99 2.646 4.35 6.638 5.84 10.244 1.49 3.854 3.3 7.562 5.02 11.313 1.35 3.556 3.04 4.33 6.7 2.924 3.96-2.436-7.11 4.479-2.14 0.493l5.79-2.7c-2.79 2.24-6.18 3.462-9.44 4.907-3.66 1.407-5.35 0.633-6.7-2.924-1.72-3.75-3.53-7.458-5.02-11.312-1.49-3.606-2.85-7.599-5.84-10.244-1.53-0.584-6.39 0.917-4.92 0.183 2.72-1.361 12.44-5.803-1.39 0.613-1.74 0.807 3.47-1.641 5.21-2.441 2.23-1.02-4.43 2.059-6.62 3.162-0.44 0.224 15.92-7.456-0.4 0.199l5.8-2.701z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10128" d="m195.49 28.425c0-0.009-1.41 0.771-1.41 0.769 11.71-7.73-4.54 3.392-7.47 7.035-4.94 8.515 7.92 1.307 11.01-0.446 5.28-3.605-6.7 5.061-1.87 0.936l5.8-3.809c-3.03 2.583-6.41 4.592-9.73 6.683-3.08 1.752-15.95 8.96-11 0.446 5.35-6.668 13.61-10.972 20.46-15.424l-5.79 3.81z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10130" d="m229.6 45.031c-3.54 0.053-7.11 0.281-10.17-1.781-5.89-4.452-5.44-10.632-3.43-17.005 3.6-7.759 15.08-11.83 23.37-11.009 5.58 0.962 8.13 5.238 8.82 10.44 0.41 5.416 0.09 10.84 0.26 16.268l-5.53 2.58c-0.18-5.428 0.15-10.851-0.26-16.268-0.7-5.201-3.24-9.478-8.82-10.439-9.33-0.924-8.25-1.074-12.31 5.847-2.01 6.374-2.46 12.553 3.44 17.006 3.06 2.062 6.62 1.834 10.17 1.781l-5.54 2.58z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10133" d="m242.97 27.259c1.02-4.275 5.02-8.063 8.84-10.053 9.52-6.146 20.14-1.19 22.4 9.973 0.98 10.61-5.37 14.217-13.98 17.744l5.54-2.58c0.23-0.023 0.47-0.046 0.7-0.069-1.56 0.775-3.12 1.55-4.68 2.325-1.07 0.527 2.1-1.189 2.94-2.043 3.22-3.307 4.2-8.351 3.95-12.797-1.05-5.178-5.26-10.132-9.98-12.529-2.99-1.518-6.49 0.047-5.57-0.526 1.33-0.831 2.81-1.385 4.21-2.078-3.82 1.99-7.81 5.778-8.84 10.053l-5.53 2.58z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10157" d="m40.751 96.808c12.003-10.547 18.807-7.751 23.457 2.133 2.906 5.939 5.364 14.889 12.816 16.549l-10.49 4.5c-7.453-1.66-9.911-10.61-12.816-16.55-1.374-2.92-2.845-6.117-5.468-8.071-0.89-0.663-4.465-0.426-3.299-1.021 3.101-1.584 6.308-2.859 9.468-4.267 1.16-0.517-4.232 1.857-3.177 2.225l-10.491 4.502z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10158" d="m60.484 99.139c-5.016 4.191-10.338 8.261-14.311 13.511-2.045 6.77 11.148 0.49 11.031 0.54-14.379 6.54 0.61-1.59 3.878-4.2l9.653-4.5c-4.791 3.83-36.041 23.5-34.215 12.66 3.973-5.25 9.295-9.32 14.311-13.51l9.653-4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10160" d="m76.131 105.67c5.607-4.91 16.259-6.145 25.359-7.431 3.75-0.515 1.95-0.272 5.4-0.731l-9.065 4.622c-3.456 0.46-1.655 0.21-5.402 0.73-6.312 0.89-29.02 6.17-7.222-1.81l-9.07 4.62z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10168" d="m90.443 103.47c-0.368-3.45-0.08-6.437-3.712-7.587 0.472-1.773-6.528 2.028-5.025 1.219 15.482-8.331-0.45-1.078 3.732 10.348 3.86 7.16 12.362 8.9 18.772 7.64 1.62-0.31 6.06-2.43 4.65-1.61-2.28 1.33-4.65 2.48-6.98 3.71l9.07-4.91c-8.81 4.83-25.71 15.31-34.581 0.08-4.569-12.482 10.267-21.053 19.432-21.387 3.632 1.15 3.344 4.136 3.712 7.584l-9.07 4.913z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10170" d="m124.18 96.235c-2.99-1.721-6.64-1.864-10-1.438 0.79-0.566-2.57 0.791-1.96 0.501 15.75-7.511 4.37-2.057 3.42 6.422 0.14 6.96 5.13 11.4 11.54 12.71 4.56 0.82 9.11 0.8 13.44-0.94l-9.65 4.51c-4.34 1.73-8.88 1.75-13.45 0.93-6.4-1.31-11.39-5.75-11.54-12.71 1.04-9.195 8.88-14.443 17.85-15.924 3.36-0.426 7.01-0.283 10 1.438l-9.65 4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10196" d="m131.54 94.102c3.21-1.478 6.38-3.017 9.61-4.434 0.62-0.271-0.54 1.234-0.76 1.871-0.96 2.754-1.51 5.622-1.98 8.501-1.52 9.51-2.46 19.14-3.61 28.7-0.79 7.79-1.71 15.55-3 23.26l-9.65 4.5c1.29-7.71 2.21-15.47 3-23.26 0.39-3.28 4.01-37.916 6.35-39.071 3.21-1.58 6.46-3.046 9.7-4.569l-9.66 4.502z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10197" d="m130.5 95.845c1.55-3.476 6.95-4.282 10.34-5.557 1.96-0.805 3.94-1.566 5.92-2.295l-6.37 3.322c-1.98 0.728-3.96 1.489-5.92 2.294-8.51 3.198 4.94-4.408 2.4-1.085l-6.37 3.321z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10200" d="m141.34 96.542c3.24-0.834 14.36-10.232 16.1-2.478 0.55 5.907-2.44 11.206-1.93 17.166-2.16 5.13 9.39 2.63 8.51 3.05-14.45 6.79-8.45 4.08-5.05 1.42l9.66-4.5c-4.83 3.78-18.85 14.08-22.77 4.53-0.52-5.96 2.48-11.26 1.93-17.164-1.74-7.776-16.49 3.454 3.2-6.525l-9.65 4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10206" d="m172.22 90.34c4.82-0.44 5.5 3.033 4.84 7.204-1.48 6.636-5.38 16.996 4.69 17.046 2.3-0.25 1.15-0.06 3.46-0.57l-9.65 4.5c-2.32 0.51-1.16 0.32-3.46 0.57-10.07-0.05-6.18-10.41-4.69-17.05 0.66-4.166-0.02-7.639-4.85-7.199l9.66-4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10225" d="m131 91.037c3.38 0.443 6.68 1.827 9.69 3.423l-9.65 4.502c-3.01-1.596-6.31-2.98-9.69-3.424l9.65-4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10226" d="m187.01 94.45c7.99-4.14 12.31-7.977 17.58-0.295 4.6 6.065 5.04 15.545 11.78 19.845 1.81 0.93 3.83 1.33 5.8 1.74l-9.65 4.5c-1.98-0.41-3.99-0.81-5.8-1.74-6.74-4.3-7.18-13.78-11.78-19.844-5.15-7.512-14.1-1.816 1.72-8.707l-9.65 4.501z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10229" d="m193.69 106.08c24.9-12.256-8.64 3.87 0.89 9.1-0.51 1.48 8.85-1.56 8.37-1.35-14.63 6.18-5.9 2.03-2-1.04l9.65-4.5c-7.2 5.67-16.19 12.52-25.68 11.39-8.24-4.53 16.95-20.42 18.42-18.1l-9.65 4.5z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10231" d="m217.97 97.24c2.81-2.34 12.53-10.187 15.46-3.343 1.14 7.243-0.72 14.293-0.61 21.523l-9.23 4.5c-0.11-7.23 1.75-14.28 0.61-21.522-2.72-6.366-13.27 1.792 3.94-6.49 0.38-0.184-1.36 0.658-0.94 0.83l-9.23 4.502z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10239" d="m221.92 103.12c6.4-6.075 16.05-13.123 25.46-13.005 8.04 3.102 7.6 15.625 6.38 21.955-0.24 1.08-0.55 2.14-0.85 3.2l-9.23 4.5c0.3-1.06 0.61-2.12 0.85-3.2 1.22-6.33 1.66-18.851-6.38-21.953-4.24-0.054-13.73 5.127 1.46-2.162 0.71-0.343-9.46 6.059-8.46 6.169l-9.23 4.496z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10251" d="m252.98 97.284c-24.21 12.206 7.75-8.098 16.72-7.653 5.66 3.792 3.43 16.969 2.49 22.759-0.12 0.59-0.24 1.19-0.36 1.79l-9.23 4.65c0.03-0.15 0.34-1.69 0.36-1.78 0.94-5.79 3.17-18.968-2.49-22.76-4.84-0.24-16.56 5.97-1.58-1.659 0.16-0.082-12.91 9.429-15.14 9.309l9.23-4.656z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10259" d="m75.414 30.201c6.417-0.235 12.931-2.82 19.172-4.563 2.748-1.06 5.654-1.454 8.524-2.018l-5.797 2.701c-2.865 0.564-5.771 0.958-8.519 2.018-6.241 1.743-12.755 4.328-19.172 4.563l5.792-2.701z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10279" d="m97.82 25.491c-0.798-2.313-2.421-4.205-4.319-5.921 0.927-3.24-9.829 0.29-8.297-0.312 4.931-1.942 6.034-2.558 3.418-1.212-4.225 2.389-6.979 6.619-8.279 10.788 0.158 3.364 1.866 6.797 4.306 9.388 3.18 2.73 6.654 4.465 11.211 4.179 0.743 0.328 8.09-2.354 6.8-1.932-8.102 2.635-0.97-0.395 1.26-2.357l5.79-2.36c-5.27 4.638-12.362 7.655-19.641 9.01-4.558 0.285-8.032-1.449-11.212-4.18-2.44-2.591-4.148-6.023-4.305-9.388 1.299-4.169 4.053-8.398 8.278-10.788 4.283-2.203 11.698-7.026 16.463-3.196 1.897 1.716 3.517 3.608 4.317 5.921l-5.79 2.36z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10286" d="m85.316 170.78c7.295-12.03 10.892-5.5 11.671 3.91 1.743 21.46-11.926 37.32-31.15 42.94l4.895-4.34c16.049-4.68 21.979-13.87 21.36-34.26-0.249-3.01-0.342-6.4-1.764-9.12-0.56-1.07-4.19-0.22-3.331-1.04 7.938-7.57 4.376-4.52 3.215-2.42l-4.896 4.33z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10307" d="m109.47 167.23c0.37-0.5-2.08 1.32-1.58 0.96 1.44-1.03 2.83-2.11 4.32-3.05 1.74-1.1-2.69 3.18-3.5 5.06-1.8 4.19-2.67 8.74-2.99 13.26 0.48 11.36 1.91 28.2 16.34 27.4l-5.19 3.73c-14.43 0.8-15.86-16.04-16.34-27.4 0.76-10.65 4.13-18.65 14.13-23.69l-5.19 3.73z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10312" d="m90.239 195.18c4.436-5.06 9.921-6.5 15.841-8.9 0.22-0.08 0.44-0.16 0.66-0.24l-4.89 4.11c-0.23 0.08-0.45 0.16-0.67 0.24-3.849 1.56-16.526 7.48-6.046 0.68l-4.895 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10313" d="m92.127 195.04c2.959-1.39 6.078-2.39 9.183-3.39l-2.283 1.91c-3.107 1.01-6.225 2.01-9.184 3.4l2.284-1.92z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10334" d="m71.284 215.13c2.282-0.05-7.613 2.79-5.706 2.1 6.617-2.38 14.816-6.11 22.025-4.72 6.222 3.84 9.33 8.25 17.357 8.51 0.75-0.02 1.5-0.05 2.26-0.08l-6.01 2.19c-0.75 0.02-1.504 0.05-2.258 0.08-8.025-0.27-11.132-4.67-17.354-8.52-3.874-0.75-7.885 0.28-11.669 1.18-1.359 0.32-5.31 1.73-4 1.25 1.883-0.7 7.542-2.75 5.654-2.07-2.071 0.74-4.136 1.51-6.205 2.27h-0.099l6.005-2.19z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10336" d="m126.64 186.01c0.65 4.49 0.69 9.05 0.49 13.57-0.17 2.51-0.1 5.03-0.18 7.54-0.71 3.13 3.22 3.62 5.3 5.18l-4.9 4.1c-2.08-1.55-6-2.04-5.3-5.17 0.08-2.51 0.02-5.03 0.18-7.54 0.2-4.53 0.16-9.08-0.48-13.57l4.89-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10339" d="m130.21 184.27c2.23 2.35 5.2 3.92 8.04 5.45 0.16 0.1 0.33 0.19 0.49 0.29l-4.9 4.11c-0.16-0.1-0.33-0.19-0.49-0.29-2.83-1.53-5.81-3.1-8.03-5.45l4.89-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10343" d="m134.6 193.52c-3.65 0.94-16.26 11.73-7.18 4.15-0.5 0.2-0.58 0.72-0.87 1.07l-4.9 4.11c0.29-0.35 0.37-0.87 0.87-1.07 5.1-4.29 10.77-9.74 16.98-12.37l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10353" d="m120.69 198.75c5.53-1.03 11.22-0.65 16.82-0.41 0.3 0.01 0.59 0.02 0.89 0.04h-6.39c-0.3-0.02-0.59-0.03-0.89-0.04-11.04-0.48 9.24-0.73-4.04 0.41h-6.39z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10357" d="m126.01 216.45c3.57-3.01 7.2-6.09 11.21-8.52l-4.89 4.1c-4.15 2.53-8.36 6.26-1.42 0.31l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10361" d="m144.45 185.31c-0.1 3.99 0.07 7.95 0.41 11.91 0.25 3.21 0.33 6.43 0.25 9.64l-4.9 4.1c0.09-3.21 0.01-6.43-0.25-9.63-0.34-3.97-0.51-7.93-0.41-11.91l4.9-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10364" d="m139.51 210.61c5.51-5.7 5.75-2.9 11.44 0.5l-4.9 4.11c-5.56-3.32-9.48-3.46-1.64-8.72l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10365" d="m145.17 214.75c2.38-3.73 5.74-4 8.82-6.21l-4.9 4.11c-2.39 1.72-9.34 4.68 0.98-2.01l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10367" d="m147.28 182.79c2.39 1 3.88 3.33 5.68 5.12 0.74 0.61 1.57 1.07 2.4 1.55l-4.9 4.1c-0.82-0.47-1.66-0.93-2.39-1.54-1.8-1.79-3.29-4.12-5.69-5.12l4.9-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10369" d="m155.95 187.02c-1.32 5.93-1.09 12.18-0.84 18.23 0.45 7.89 0.42 15.82-0.03 23.7-0.04 0.33-0.09 0.66-0.14 0.99l-4.89 4.11c0.04-0.33 0.09-0.66 0.13-0.99 0.46-7.88 0.48-15.81 0.03-23.7-0.24-6.05-0.48-12.3 0.85-18.24l4.89-4.1z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10371" d="m151.84 232.22c8.01-7.56 1.56-1.13-1.16 2.37-0.12 0.18-0.25 0.35-0.38 0.53l-4.89 4.11c0.12-0.18 0.25-0.36 0.38-0.53 3.15-4.07 6.66-7.66 10.94-10.59l-4.89 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10397" d="m160.9 183.84c1.4 0.63 2.65 1.72 3.96 2.59-0.01 0.04 0.6 0.42 0.62 0.43l-4.89 4.11c-0.21-0.14-0.44-0.25-0.62-0.43-1.32-0.87-2.56-1.96-3.97-2.6l4.9-4.1z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10398" d="m165.4 185.53c-0.62 3.57-0.32 7.23-0.15 10.83 0.26 3.28 0.04 6.56 0.16 9.84-0.08 0.73 0.16 1.37 0.34 2.04l-4.68 4.35c-0.18-0.67-0.42-1.31-0.34-2.04-0.12-3.28 0.1-6.56-0.16-9.84-0.17-3.6-0.47-7.26 0.15-10.83l4.68-4.35z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10399" d="m161.19 211.22c5.6-5.49 4.08-3.9 8.57-0.51 0.82 0.79 1.71 1.46 2.64 2.11l-4.9 4.11c-0.92-0.65-1.82-1.33-2.64-2.11-4.45-3.36-5.31-3.11 1.23-7.71l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10400" d="m172.41 183.84c-10.02 9.6-0.75-4.31 4.11 1.77 0.25 0.48 0.75 0.72 1.12 1.07l-4.9 4.11c-0.37-0.36-0.87-0.59-1.12-1.07-0.67-0.85-1.37-1.93-2.48-2.2-0.42-0.1-1.6 0.39-1.28 0.11 9.36-8.19 2.97-2.3-0.35 0.31l4.9-4.1z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10401" d="m176.94 186.01c0.47 3.49 0.31 7.06 0.31 10.58-0.06 3.16 0.11 6.33-0.1 9.48-0.28 1.08-0.14 2.03 0.11 3.06l-4.89 4.11c-0.26-1.04-0.39-1.98-0.12-3.06 0.21-3.15 0.04-6.32 0.1-9.48 0-3.52 0.16-7.09-0.31-10.58l4.9-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10403" d="m182.67 188.42c5.59-6.25 3.27-2.15 3.22 3.41-0.06 3.39 0.31 6.77 0.36 10.16 0.09 1.69-0.15 3.65 0.66 5.08 2.57 0.77 4.67 2.32 6.79 3.84 0.2 0.13 0.4 0.26 0.6 0.38l-4.9 3.89c-0.2-0.13-0.39-0.25-0.59-0.38-2.12-1.53-4.23-3.07-6.8-3.84-0.8-1.43-0.56-3.4-0.66-5.09-0.05-3.39-0.42-6.76-0.35-10.16 0.05-6.1-0.01-7.49 6.56-11.18l-4.89 3.89z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10404" d="m188.03 184.53c1.81-0.14 3.33 0.02 4.93 0.86 1.15 0.69 2.43 0.94 3.74 1.14l-4.9 4.11c-1.3-0.2-2.58-0.45-3.73-1.15-1.6-0.83-3.12-0.99-4.93-0.85l4.89-4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10409" d="m196.3 186.2c-4.6 3.24 5.4-5.82 2.09-1.73-1.38 1.67-1.33 3.62-1.34 5.68 0.01 2.58 0.01 5.16 0.01 7.75v7.06c-0.07 2.57 0.27 4.43 2.84 5.32 2.09 0.91 3.86 1.35 6.07 0.8l-4.89 4.11c-2.22 0.54-3.98 0.11-6.08-0.8-2.57-0.89-2.9-2.75-2.84-5.32v-7.06c0-2.59 0-5.17-0.01-7.76 0.01-2.05-0.04-4 1.34-5.67 2.12-2.61 4.82-4.86 7.71-6.49l-4.9 4.11z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10419" d="m210.37 184.97c0.11 3.62 0.31 7.23 0.35 10.85 0.01 2.71 0 5.41 0 8.11 0.07 1.77-0.31 3.51-0.2 5.26 1.31 1.36 3.32 2.35 5.2 2.94l-4.89 3.75c-1.89-0.59-3.9-1.58-5.21-2.94-0.11-1.74 0.28-3.49 0.21-5.26 0-2.7 0-5.4-0.01-8.1-0.03-3.63-0.24-7.24-0.34-10.86l4.89-3.75z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10420" d="m204.55 183.17c2.14 0.5 4.03 1.99 6.17 2.81l-4.89 4.08c-2.14-0.81-4.04-2.3-6.18-2.8l4.9-4.09z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10437" d="m207.26 191.83c4.84-3-0.14-2.8 10.38-7.77l-4.9 4.52c-1.73 0.82-6.45 4.18-5.01 2.84 1.56-1.44 6.25-5.79 4.69-4.34-6.12 5.66-7.25 6.73-0.26 0.22l-4.9 4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10438" d="m217.04 183.5c1.72-0.23 2.79 0.55 4.06 1.74 0.11 0.09 0.23 0.19 0.35 0.28l-4.89 4.53c-0.12-0.1-0.24-0.19-0.36-0.28-1.26-1.19-2.34-1.97-4.06-1.74l4.9-4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10440" d="m216.59 188.03c7.79-8.26 3.34-0.16 4.8 8.15 0.93 3.8 0.43 7.63 0.17 11.47l-4.9 4.52c0.26-3.84 0.77-7.66-0.17-11.47-1.37-7.81-1.52-12.39 5-17.2l-4.9 4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10441" d="m215.28 212.58c3.06-3.13 6.06-7.14 9.29-3.11 0.4 0.69 1 1.15 1.56 1.65l-4.89 4.53c-0.57-0.51-1.16-0.97-1.57-1.65-3.16-3.96-7.98 1.65 0.51-5.95l-4.9 4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10442" d="m218.03 191.06c13.3-12.26 0.22-0.2 0.24-0.22 4.34-3.56 5.74-4.97 10.13-7.02l-4.9 4.53c-1.66 0.77-6.33 3.61-4.97 2.31 1.52-1.48 6.26-5.68 4.64-4.35-0.04 0.03-13.05 12.1-0.25 0.22l-4.89 4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10445" d="m228.59 183.5c1.63 0.25 2.91 1.5 4.12 2.65l-4.9 4.53c-1.21-1.15-2.49-2.41-4.12-2.65l4.9-4.53z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10449" d="m232.69 185.86c-0.16 3.48-0.38 6.95-0.25 10.45 0.23 3.03 0.25 6.08 0.25 9.12 0.09 1.27-0.14 2.5-0.33 3.74l-4.9 4.52c0.2-1.23 0.42-2.47 0.33-3.73 0-3.05-0.01-6.09-0.24-9.12-0.13-3.5 0.09-6.97 0.24-10.46l4.9-4.52z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10451" d="m231.64 207.76c1.4 0.3 2.6 1.22 3.84 2.04 0.55 0.32 0.99 0.8 1.47 1.24l-4.9 4.52c-0.47-0.43-0.91-0.92-1.47-1.23-1.23-0.82-2.44-1.74-3.83-2.05l4.89-4.52z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10456" d="m61.797 239.38c-3.815 14.51-9.17 28.23-17.028 40.7-4.475 7-9.893 13.3-16.22 18.65l-4.836 3.67c6.328-5.35 11.746-11.65 16.22-18.65 7.859-12.47 13.213-26.19 17.028-40.71l4.836-3.66z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10461" d="m27.88 298.13c3.428-1.18 7.145-1.56 10.932-1.14 6.697 1.49 12.621 5.49 19.564 4.96 0.609-0.12 1.218-0.24 1.828-0.35l-4.836 3.66c-0.609 0.12-1.219 0.24-1.828 0.36-6.943 0.53-12.866-3.47-19.563-4.97-3.788-0.41-7.504-0.04-10.933 1.15l4.836-3.67z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10471" d="m70.37 235.65c-1.123 13.31-1.161 26.21 2.775 39.7 4.755 14.46 7.667 23.2 22.924 15.48l-7.482 5.67c-15 7.56-18.226-1.19-23-15.42-4.024-13.64-3.915-26.66-2.318-40.05l7.101-5.38z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10476" d="m49.366 235.26c-1.336 3.67-0.707 6.56 3.963 6.39 5.784-0.79 10.868-3.47 15.986-5.81l-7.394 5.61c-5.06 2.31-10.093 4.98-15.835 5.69-4.649 0.08-5.251-2.91-3.819-6.5l7.099-5.38z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10481" d="m50.888 271.43c5.189-3.39 10.916-5.06 16.936-6.25 1.036-0.22 2.088-0.35 3.135-0.51l-7.781 5.45c-1.07 0.17-2.145 0.32-3.204 0.56-5.94 1.21-11.632 2.8-16.775 6.14l7.689-5.39z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10489" d="m112.97 269.94c-9.6 10.08-6.81 1.97-14.828 5.15 2.648-1.63 5.248-3.32 7.948-4.88 1.62-0.94-2.48 2.68-3.31 4.23-2.22 4.18-3.21 7.59-1.62 11.95 2.25 7.51 7.65 9.86 16.35 7.64 14.96-7.37-6.7 5.47 1.16 0.15l8.97-5.54c-6 4.06-12.04 8.36-19.08 10.92-8.626 2.18-13.324-0.27-15.583-7.68-3.831-10.45 4.221-17.17 13.973-22.24 6.94-2.73 11.51 4.32-2.69 5.68l8.71-5.38z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10490" d="m114.25 279.99l-0.15 0.09c2.48-1.73 4.96-3.47 7.45-5.2 0.32-0.22-0.63 0.5-0.95 0.72-3.47 2.43-6.72 4.86-10.27 7.03-1.55 0.95-3.15 1.8-4.67 2.78-0.4 0.25-1.56 1.05-1.18 0.78 11.79-8.31 8.29-5.81 5.77-4.01-2.12 1.64 0.28-0.26-1.09 1.01l-7.74 5.42c0.34-0.32 0.49-0.82 1.02-0.96 4.04-2.9 8.02-5.94 12.3-8.5 1.72-1.03 6.8-4.26 5.17-3.09-18.63 13.35 1.69-1.53 2.02-1.45l-7.68 5.38z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10513" d="m134.96 272.25c-2.56 4.92-3.71 10.85-3.29 16.28 0.44 2.96 2.68 8 6.96 6.75 2-0.59 11.49-6.55 5.37-2.86-1.91 1.15-3.8 2.34-5.71 3.51l8.01-5.1c-6.21 4.03-20.04 16.56-22.51 2.71-0.42-5.47 0.73-11.51 3.48-16.39l7.69-4.9z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10515" d="m138.99 269.73c-2.75 1.78-11.24 6.74-8.24 5.34 3.07-1.43 5.64-3.63 8.46-5.44 6.83-4.39-27.79 17.74 1.24-0.82 1.52-0.97 3.61-0.76 5.32-0.61 3.88 1.24 6.87 2.76 10.88 1.06l-8.45 5.48c-3.98 1.67-6.98 0.12-10.83-1.1-1.76-0.16-6.72 1.53-5.28 0.58 2.64-1.73 10.55-6.96 7.96-5.15-28.11 19.66 17.27-12.79-9.36 6.04l8.3-5.38z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10521" d="m154.57 269.81c-5.81 15.67-7.98 32.12-7.95 48.83 0.07 1.12 0.13 2.25 0.2 3.38l-8.06 5.64c-0.11-1.1-0.21-2.2-0.31-3.31-0.39-16.94 2.08-33.45 8.43-49.15l7.69-5.39z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10538" d="m157.95 276.59c7.83-9.86 11.45-10.87 8.55 1-3.13 8.88-2.53 21.17 8.44 13.55 0.62-0.56 2.4-2.31 1.85-1.67-11.01 13.09 1.59-4.22 3.81-8.16l6.91-7.48c-5.23 9.35-11.27 17.97-19.42 24.71-10.84 7.49-11.57-4.76-8.44-13.54 4.56-18.21-7.27-0.9 4.94-15.6l-6.64 7.19z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10547" d="m181.91 273.02c15.54-9.39 4.17-0.34 4.77 12.75 0.57 8.3 5.56 12.76 13.89 9.09l-8.79 4.84c-8.24 3.62-13.35-0.84-13.93-9.07-0.46-10.85 2.13-17.87 12.58-22.3l-8.52 4.69z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10561" d="m209.34 272.44c0.23-0.15-0.34 0.42-0.47 0.66-0.82 1.51-1.31 3.2-1.81 4.82-1.19 3.86-2 7.71-2.33 11.71-0.04 2.93 0.83 6.84 4.83 6.2 1.61-0.26 5.78-2.83 4.49-1.87-1.77 1.33-3.57 2.65-5.58 3.63-1.99 0.97 3.31-2.89 4.72-4.54 2.91-3.38 5.06-7.15 7-11.08 0.33-0.77 0.65-1.54 0.98-2.31l7.98-5.31c-0.31 0.76-0.62 1.51-0.93 2.27-3.86 8.01-27.84 37.21-31.47 18.33 0.82-10.58 2.8-17.55 12.98-22.68 0 0-8.88 5.69-0.39 0.17z" sodipodi:nodetypes="ccccccccccccccc" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10564" d="m229.31 270.07c-1.2 7.87-4.67 16.91-1.11 24.62 0.81 2.84 7.86-1.75 5.75-0.62-11.59 6.2-3.68 1.05-0.72-2.84l8-5.06c-4.25 5.63-13.3 16.86-20.91 13.49-3.87-7.64-0.23-16.93 1.29-24.74l7.7-4.85z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10577" d="m241.71 270.16c6.09-2.08 6.95 1.58 7.15 6.73-0.1 6.11-1.19 12.15-1.91 18.2l-7.29 6.52c0.62-6.03 1.61-12.03 1.78-18.09-0.11-5.15-0.77-8.86-6.93-6.92l7.2-6.44z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10582" d="m243.72 286.28c1.89-6.97 10.19-12.77 16.94-16.11 7.49-3.07 5.43 8.37 4.89 12.21-0.67 3.82-1.16 7.71-1.4 11.57l-7.05 6.67c0.13-3.82 0.66-7.67 1.28-11.46 0.54-3.87 2.7-15.43-4.87-12.22-1.91 0.95-3.69 2.04-5.36 3.35-0.4 0.31-1.53 1.33-1.17 0.98 12.28-12.02 4.03-5.35 3.74-1.62l-7 6.63z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10585" d="m270.22 273.76c-12.36 15.35-0.73-2.84 5.43-4.11 3.42 0.86 5.53 1.98 8.85 0.1 0.28-0.18 0.56-0.35 0.84-0.52l-5.98 6.73c-0.28 0.18-0.56 0.35-0.84 0.53-3.29 1.83-5.44 0.71-8.81-0.16-1.24 0.26-4.33 2.79-3.45 1.78 1.83-2.09 3.68-4.15 5.52-6.22 2.5-2.81-9.82 11.45-7.45 8.5l5.89-6.63z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10588" d="m279.45 274.43c12.99-13.55 0.66 0.01 2.16 12.27 1.33 5.76 5.34 9.97 11.49 6.92l-7.21 6.82c-6.1 3-10.21-1.13-11.55-6.86-1.35-10.95 3.55-18.94 12.12-25.79l-7.01 6.64z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10596" d="m211.17 270.68c5.6 2.22 11.9 2.06 17.64 0.4 2.56-0.85 4.86-2.22 7.13-3.63l-6.6 6.48c-2.28 1.42-4.59 2.81-7.16 3.67-5.66 1.64-11.98 1.85-17.43-0.61l6.42-6.31z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath10601" d="m114.63 279.3c-3.27 0.28-6-1.64-8.66-3.33-0.81-0.44-1.52-1.04-2.27-1.59l8.21-4.73c0.77 0.53 1.51 1.1 2.33 1.55 2.62 1.66 5.28 3.63 8.52 3.41l-8.13 4.69z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3335" d="m89.045 443.38c1.124-5.41 13.385-11.99 19.355-13.77 9.68-1.64 1.02 17.45-0.43 20.34-9.815 17.51-26.848 29.12-45.385 42.7l-4.818 3.14c18.402-13.46 35.497-25.02 45.023-42.46 1.45-2.99 9.58-21.28-0.21-19.93-3.368 0.95-7.36 3.54-7.394 5.98l-6.141 4z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3338" d="m138.8 376.96c-1.9 0.33-9.02 5.09 3.37-2.59 0.61-0.38-1.03 0.91-1.48 1.4-2.7 2.92-3.89 6.29-5.1 9.49-4.4 11.91-7.14 24.05-9.69 36.01-2.38 11.14-4.46 22.27-6.74 33.41-0.32 1.61-0.63 3.21-0.94 4.81l-5.72 3.79c0.42-1.66 0.83-3.33 1.23-5 2.52-11.23 4.86-22.48 7.2-33.71 2.48-11.87 5.16-23.89 9.25-35.72 1.95-5.51 5.55-13.72 14.68-15.9l-6.06 4.01z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3353" d="m118.36 440.1c3.32-2.61 13.57-8.8 3.44-2.48-0.55 0.35 1.1-0.71 1.64-1.06 2.93-1.9 5.82-3.83 8.89-5.41 2.52-1.17 6.33-2.45 8-0.69 1.12 5.26-7.9 9.9-11.22 12-3.81 2.35-7.81 4.23-11.86 5.87-3 1.05-7.41 3.78 1.15-1.59l-5.69 2.99c4.31-2.73 5.6-3.59 9.44-5.06 4.02-1.64 7.96-3.51 11.74-5.86-9.02 5.76 1.85-0.6 1.01-5.02-1.77-1.26-5.02-0.13-7.4 1-5.4 2.86 6.34-4.23-0.07-0.12-2.21 1.42-8.84 5.64-6.64 4.22 7.86-5.1 5.29-3.51 3.39-1.89l-5.82 3.1z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3363" d="m126.6 443.11c-1.12 4.06 10.85 23.55 13 26.63 10.5 11.82 26.08 14.43 43.42 4.58l-3.89 2.96c-17.65 9.9-33.28 7.26-43.82-4.88-5.27-7.66-11.26-16.91-14.37-26.02l5.66-3.27z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3372" d="m82.417 437.82c1.28-4.11 7.742-7.02 10.976-8.65 4.414-1.66 1.091 12.34 0.619 14.28-1.259 5-2.412 10.16-4.036 15.13-0.445 1.26 0.108-0.31-0.316 0.93l-5.514 3.35c0.416-1.24-0.117 0.32 0.311-0.93 1.869-5.02 3.197-10.32 4.454-15.38 0.455-1.87 3.605-15.6-0.848-13.88-2.04 1.05-4.789 2.78 3.485-2.32 1.513-0.94-3.257 2.45-3.478 4.02l-5.653 3.45z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3374" d="m159.06 436.59c1.31-1.15 6.38-4.1-4.17 2.85-1.82 1.2 3.53-2.97 4.69-4.93-2.7-3.29-9.73-2.02-13.74 0.14-0.49 0.33-1.94 1.29-1.46 0.97 1.04-0.69 2.03-1.54 3.11-2.07 1.6-0.78-2.78 2.84-3.43 4.59-1.45 3.87 1.57 5.28 4.3 5.49 4.67-0.31 13.87-4.18 10.79 4.47-4.59 9.02-17.46 15.1-25.56 15.46l4.61-3.3c8.44-0.09 13.36-2.96 16.43-9.09 2.8-8.36-6.22-4.65-10.76-4.33-11.72-0.81 1.42-12.15 6.33-15.38 4.37-2.34 11.03-3.29 14.21-0.27-1.7 3-7.57 7.83-10.17 8.86l4.82-3.46z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3377" d="m175.35 437.3c1.09-3.64-0.32-5.24-4.12-4.36-1.01 0.53 1.89-1.34 2.92-1.8 2.17-0.95-2.97 3.85-3.81 5.96-2.28 5.72-3.98 11.82-5.1 17.61-1 12.43 15.04-3.06 19.23-6.82 0.74-0.69 1.48-1.37 2.23-2.05l4.72-2.81c-0.78 0.71-1.56 1.41-2.34 2.12-4.77 4.26-30.56 27.03-28.74 12.53 2.52-11.02 3.85-21.87 16-28.06 4.04-0.89 5.1 0.69 4.52 4.34l-5.51 3.34z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3384" d="m198.11 433.38c-2.88-0.38-5.2-1.12-8.4-0.61-1.17 0.45-10.68 4.1 4.46-2.13 1.49-0.61-2.44 2.12-3.28 3.37-2.11 3.14-3.07 6.54-3.88 9.87-0.97 4.53-1.69 9.07-2.76 13.6-0.88 3.19 4.67 1.1 6.62 0.39 3.3-1.56-2.53 1.21-4.17 1.89-1.3 0.54 2.36-1.55 3.42-2.45 2.68-2.25 4.08-5.23 5.39-8.05 1.2-2.84 2.21-5.7 3.49-8.52l6.01-2.77c-1.39 2.84-2.4 5.7-3.62 8.57-3.48 7.8-7.66 10.23-16.48 14.34-2.05 0.73-7.9 2.85-6.86-0.53 1.26-4.58 2.14-9.16 3.07-13.74 1.92-8.15 4.6-13.27 14.59-16.84 3.24-0.46 5.66 0.4 8.65 0.54l-6.25 3.07z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3410" d="m215.04 441.65c1.28-4.62 11.52-9.8 15.21-11.04 5.46-1.02 8.6 0.13 9.12 5.59-0.16 6.06-3.98 13.39-8.69 18.09-5.75 4.75-10.96 8.21-17.54 8.58-0.67 0.01-1.34 0.03-2 0.04l5.06-3.78c0.65 0 1.3-0.01 1.96-0.02 3.17-0.2 6.32-0.93 9.38-2.74 0.36-0.21 1.4-0.94 1.06-0.68-7.28 5.59-4.47 3.33-2.99 2.12 4.91-4.52 8.68-12.06 8.77-18.05-0.62-5.29-3.67-6.51-9.05-5.43-2.75 0.95-7.57 4.45-0.05-1.14 0.91-0.68-4.6 2.52-4.93 4.7l-5.31 3.76z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3411" d="m201.11 431.79c1.74-1.08 4.36-2.21 6.13-3.24 1.1-0.64-0.62 2.16-0.88 3.25-0.77 3.15-1.41 6.31-2.23 9.46-1.06 3.89-1.69 7.7-2.52 11.58-0.59 2.72-1.36 5.4 2.05 5.86 5.75-1.5 3.15-1.35 8.7-5.33l4.4-2.7c-5.42 3.9-11.57 9.68-18.08 11.33-3.49-0.5-3.64-3.17-3.01-5.98 0.83-3.93 1.59-7.78 2.71-11.71 2.09-7.76 0.82-10.68 8.88-15.83l-6.15 3.31z" sodipodi:nodetypes="ccccccccccccc" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3413" d="m237.31 448.93c0.29-1 19.64-12.17 9.63-5.45 3.8-3.04 5.14-5.81 2.95-9.18-0.66-0.83-4.45 0.01-3.38-0.73 7.67-5.31 0.83 1.23-1.11 5.49-2.52 6.04-6.77 17.65 0.67 20.1 5.26 0.43 10.65-2.33 15.53-5.1l-4.44 3.16c-4.98 2.81-10.51 5.63-15.87 5.22-7.43-2.51-3.02-14.29-0.54-20.34 1.72-3.94 9.91-16.96 14.13-11.16 2.17 3.5 0.93 6.2-2.98 9.36-3.12 2.12-6.12 4.39-9.47 6.07-1.47 0.75-5.84 3.05-4.47 2.1 20.53-14.29 4.71-4.03 4.58-2.99l-5.23 3.45z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3416" d="m238.05 448.91c8.57-6.7 17.73-9.98 27.18-7.94 11.02 2.6 18.27 0.36 29.22-6.56l-3.56 2.54c-11.33 7.19-18.67 9.62-30.14 7.11-5.57-1.1-10.31-0.89-16.2 1.6-1.8 0.75-6.89 3.73-5.28 2.59 9.11-6.44 5.47-3.9 4.06-2.74l-5.28 3.4z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3422" d="m85.023 384.91c2.178-1.82 4.349-3.66 6.535-5.46 0.349-0.28-0.49 0.85-0.664 1.31-0.895 2.32-1.38 4.74-1.793 7.09-0.672 3.81-1.218 7.59-1.988 11.41-2.802 14.52-5.211 29.07-8.831 43.61-0.986 3.91-2.527 8.48-2.883 12.28 0.801 3.03 1.522 2.25 4.677 0.33l-5.844 5.18c-3.396 2.1-4.385 3.18-5.365-0.04 0.514-4.06 2.449-8.8 3.59-12.94 3.914-14.64 7.09-29.48 9.385-44.06 1.913-14.22-1.002-15.33 9.699-24.37l-6.518 5.66z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3426" d="m111.38 368.18c-11.977 11.34-22.614 15.89-37.232 15.85-19.492-0.95-41.197-3.81-51.153 17.86l-6.122 4.1c13.359-27.61 41.508-27.32 63.739-26.56 17.548-0.27 16.162 0.58 22.608-5.83l8.16-5.42z" transform="translate(10 2875.9)" display="block"/>
+ <path id="calligraphy-f10-zh_TW.svgpath3433" d="m207.51 437.58c4-4.19 12.75-12.67 13.56-4.8-0.05 12.28-5.98 26.33-9.09 38.77-4.42 18.1-8.31 36.2-17.33 53.76-10.76 18.43-32.81 32.08-51.55 27.32-5.88-3.11-9.99-7.16-12.02-13.72-6.91-22.3 18.75-37.19 39.33-40.67 1.63-0.12 3.26-0.23 4.88-0.35l-4.91 3.51-4.68 0.21c-5.03 0.77-13.31 1.77-17.9 4.5-21.58 12.84-14.65 35.86 0.3 43 18.88 4.4 31.51-3.72 41.53-20.45 9.28-17.51 13.06-35.7 17.45-53.81 3-12.05 8.47-26.06 7.79-37.85-0.21-1.13-0.4-2.38-1.49-2.92-0.49-0.24-2.38 0.56-1.84 0.16 10.82-7.99 4.82-3.68 2.76-1.16l-6.79 4.5z" transform="translate(10 2875.9)" display="block"/>
+ <text style="writing-mode:lr" font-weight="bold" font-size="8" y="3454.7719390000007" x="10" font-family="sans-serif" fill="#000000">
+ <tspan y="3454.7719390000007" x="10">結論</tspan>
</text>
- <rect id="d0e376" display="none" height="1e3px" width="288" y="3471.3" x="10"/>
+ <rect id="d0e376" display="none" height="1e3px" width="288" y="3460" x="10"/>
<flowRoot font-size="8" font-family="serif" line-height="133.00000%" fill="#000000">
<flowRegion>
<use y="0" x="0" xlink:href="#d0e376"/>
</flowRegion>
<flowDiv xml:space="preserve">書法不僅好玩有趣;也是能傳達你的經歷和感受且能觸及深層靈魂的藝術。Inkscape 的書法工具只能作為適度的入門。但它是非常好的玩樂消遣並且在實際設計上會非常有用。祝您玩得愉快!</flowDiv>
</flowRoot>
- <g transform="translate(0 3511.3)">
+ <g transform="translate(0 3499.4)">
<defs id="defs3" xmlns:cc="http://creativecommons.org/ns#">
<linearGradient id="linearGradient2465" y2="-7528.7" xlink:href="#linearGradient841" gradientUnits="userSpaceOnUse" x2="76.847" gradientTransform="matrix(2.1496 0 0 .46519 -.13015 3495.4)" y1="-7656.4" x1="76.847" inkscape:collect="always"/>
<filter id="filter58" height="1.2" width="1.2" color-interpolation-filters="sRGB" y="-.1" x="-.1" inkscape:label="Drop shadow, custom">
diff --git a/src/color-profile.cpp b/src/color-profile.cpp
index 7a4dcc1cd..cbd3475b4 100644
--- a/src/color-profile.cpp
+++ b/src/color-profile.cpp
@@ -781,7 +781,7 @@ std::vector<std::pair<Glib::ustring, bool> > ColorProfile::getBaseProfileDirs()
static bool isIccFile( gchar const *filepath )
{
bool isIccFile = false;
- struct stat st;
+ GStatBuf st;
if ( g_stat(filepath, &st) == 0 && (st.st_size > 128) ) {
//0-3 == size
//36-39 == 'acsp' 0x61637370
diff --git a/src/display/cairo-utils.cpp b/src/display/cairo-utils.cpp
index 01b0d807c..8045007e7 100644
--- a/src/display/cairo-utils.cpp
+++ b/src/display/cairo-utils.cpp
@@ -290,7 +290,7 @@ Pixbuf *Pixbuf::create_from_file(std::string const &fn)
if (!g_file_test(fn.c_str(), G_FILE_TEST_EXISTS)) {
return NULL;
}
- struct stat stdir;
+ GStatBuf stdir;
int val = g_stat(fn.c_str(), &stdir);
if (val == 0 && stdir.st_mode & S_IFDIR){
return NULL;
diff --git a/src/display/snap-indicator.cpp b/src/display/snap-indicator.cpp
index 17deea16d..f2271e0c6 100644
--- a/src/display/snap-indicator.cpp
+++ b/src/display/snap-indicator.cpp
@@ -287,7 +287,7 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const &p, bool pre_snap
} else if (p.getSource() != SNAPSOURCE_UNDEFINED) {
tooltip_str = g_strdup(source_name);
}
- double fontsize = prefs->getInt("/tools/measure/fontsize");
+ double fontsize = prefs->getDouble("/tools/measure/fontsize", 10.0);
if (tooltip_str) {
Geom::Point tooltip_pos = p.getPoint();
@@ -327,7 +327,7 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const &p, bool pre_snap
SP_CTRLRECT(box)->setDashed(true);
SP_CTRLRECT(box)->pickable = false; // See the extensive comment above
sp_canvas_item_move_to_z(box, 0);
- _snaptarget_bbox = _desktop->add_temporary_canvasitem(box, timeout_val);
+ _snaptarget_bbox = _desktop->add_temporary_canvasitem(box, timeout_val*1000.0);
}
}
}
diff --git a/src/file.cpp b/src/file.cpp
index 756bc55bb..9e96361c3 100644
--- a/src/file.cpp
+++ b/src/file.cpp
@@ -433,6 +433,7 @@ bool sp_file_open(const Glib::ustring &uri,
scaleDialog.add_button(_("Ignore"), 3);
scaleDialog.add_button("Scale test - group", 4);
scaleDialog.add_button("Scale test - children", 5);
+ scaleDialog.add_button("Scale test - all", 6);
gint response = scaleDialog.run();
backup = backupButton.get_active();
@@ -519,9 +520,31 @@ bool sp_file_open(const Glib::ustring &uri,
prefs->setBool("/options/transform/rectcorners", transform_rectcorners);
prefs->setBool("/options/transform/pattern", transform_pattern);
prefs->setBool("/options/transform/gradient", transform_gradient);
+
+ } else if (response == 6) {
+
+ // Save preferences
+ bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive",true);
+ bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
+
+ prefs->setBool("/options/kbselection/onlysensitive", false);
+ prefs->setBool("/options/kbselection/onlyvisible", false);
+
+ Inkscape::Selection *selection = desktop->getSelection();
+ Inkscape::SelectionHelper::selectAllInAll( desktop );
+
+ double height = root->height.computed;
+ selection->setScaleRelative( Geom::Point(0,height), Geom::Scale(96.0/90.0,96.0/90.0) );
+ selection->clear();
+
+ prefs->setBool("/options/kbselection/onlysensitive", onlysensitive);
+ prefs->setBool("/options/kbselection/onlyvisible", onlyvisible );
+
+ did_scaling = true;
+
}
- need_fix_box3d = true;
+ need_fix_box3d = false; // setScaleRelative() handles box3d
need_fix_guides = true; // Always fix guides
}
@@ -550,6 +573,7 @@ bool sp_file_open(const Glib::ustring &uri,
scaleDialog.add_button(_("Ignore"), 3);
scaleDialog.add_button("Scale test - group", 4);
scaleDialog.add_button("Scale test - children", 5);
+ scaleDialog.add_button("Scale test - all", 6);
gint response = scaleDialog.run();
backup = backupButton.get_active();
@@ -671,9 +695,45 @@ bool sp_file_open(const Glib::ustring &uri,
prefs->setBool("/options/transform/gradient", transform_gradient);
did_scaling = true;
+
}
- need_fix_box3d = true;
+ } else if (response == 6) {
+
+ double old_height = root->height.computed;
+ Inkscape::Util::Quantity width =
+ Inkscape::Util::Quantity(doc->getWidth().value("px")/ratio, "px" );
+ Inkscape::Util::Quantity height =
+ Inkscape::Util::Quantity(doc->getHeight().value("px")/ratio,"px" );
+ doc->setWidthAndHeight( width, height, false );
+
+ if (!root->viewBox_set) {
+
+ // Save preferences
+ Inkscape::Preferences *prefs = Inkscape::Preferences::get();
+ bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive",true);
+ bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
+
+ prefs->setBool("/options/kbselection/onlysensitive", false);
+ prefs->setBool("/options/kbselection/onlyvisible", false);
+
+ Inkscape::Selection *selection = desktop->getSelection();
+ Inkscape::SelectionHelper::selectAllInAll( desktop );
+ double height = root->height.computed;
+
+ // So far we have just enlarged the drawing but due to the
+ // inverted coordinate system we must scale around the old
+ // height position.
+ selection->setScaleRelative( Geom::Point(0,old_height), Geom::Scale(96.0/90.0,96.0/90.0) );
+ selection->clear();
+
+ prefs->setBool("/options/kbselection/onlysensitive", onlysensitive);
+ prefs->setBool("/options/kbselection/onlyvisible", onlyvisible );
+
+ did_scaling = true;
+ }
+
+ need_fix_box3d = false; // setScaleRelative() handls box3s
need_fix_guides = true; // Only fix guides if drawing scaled
} else {
diff --git a/src/inkscape.cpp b/src/inkscape.cpp
index 2ba85026f..bf694ada7 100644
--- a/src/inkscape.cpp
+++ b/src/inkscape.cpp
@@ -274,7 +274,7 @@ int Application::autosave()
if (doc->isModifiedSinceSave()) {
gchar *oldest_autosave = 0;
const gchar *filename = 0;
- struct stat sb;
+ GStatBuf sb;
time_t min_time = 0;
gint count = 0;
diff --git a/src/io/sys.cpp b/src/io/sys.cpp
index 94175176a..61a6a96f4 100644
--- a/src/io/sys.cpp
+++ b/src/io/sys.cpp
@@ -226,7 +226,7 @@ bool Inkscape::IO::file_is_writable( char const *utf8name)
filename = g_filename_from_utf8 ( utf8name, -1, NULL, NULL, NULL );
}
if ( filename ) {
- struct stat st;
+ GStatBuf st;
if (g_file_test (filename, G_FILE_TEST_EXISTS)){
if (g_lstat (filename, &st) == 0) {
success = ((st.st_mode & S_IWRITE) != 0);
diff --git a/src/live_effects/lpe-transform_2pts.cpp b/src/live_effects/lpe-transform_2pts.cpp
index e1f36eee7..ef2900775 100644
--- a/src/live_effects/lpe-transform_2pts.cpp
+++ b/src/live_effects/lpe-transform_2pts.cpp
@@ -34,7 +34,7 @@ LPETransform2Pts::LPETransform2Pts(LivePathEffectObject *lpeobject) :
flip_vertical(_("Flip vertical"), _("Flip vertical"), "flip_vertical", &wr, this, false,"", INKSCAPE_ICON("on"), INKSCAPE_ICON("off")),
start(_("Start"), _("Start point"), "start", &wr, this, "Start point"),
end(_("End"), _("End point"), "end", &wr, this, "End point"),
- strech(_("Stretch"), _("Stretch the result"), "strech", &wr, this, 1),
+ stretch(_("Stretch"), _("Stretch the result"), "stretch", &wr, this, 1),
offset(_("Offset"), _("Offset from knots"), "offset", &wr, this, 0),
first_knot(_("First Knot"), _("First Knot"), "first_knot", &wr, this, 1),
last_knot(_("Last Knot"), _("Last Knot"), "last_knot", &wr, this, 1),
@@ -52,7 +52,7 @@ LPETransform2Pts::LPETransform2Pts(LivePathEffectObject *lpeobject) :
registerParameter(&first_knot);
registerParameter(&last_knot);
registerParameter(&helper_size);
- registerParameter(&strech);
+ registerParameter(&stretch);
registerParameter(&offset);
registerParameter(&start);
registerParameter(&end);
@@ -73,9 +73,9 @@ LPETransform2Pts::LPETransform2Pts(LivePathEffectObject *lpeobject) :
offset.param_set_range(-999999.0, 999999.0);
offset.param_set_increments(1, 1);
offset.param_set_digits(2);
- strech.param_set_range(0, 999.0);
- strech.param_set_increments(0.01, 0.01);
- strech.param_set_digits(4);
+ stretch.param_set_range(0, 999.0);
+ stretch.param_set_increments(0.01, 0.01);
+ stretch.param_set_digits(4);
apply_to_clippath_and_mask = true;
}
@@ -379,9 +379,9 @@ LPETransform2Pts::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const
m *= Geom::Scale(-1,1);
m *= Geom::Rotate(original_angle);
}
- if(strech != 1){
+ if(stretch != 1){
m *= Geom::Rotate(-original_angle);
- m *= Geom::Scale(1,strech);
+ m *= Geom::Scale(1,stretch);
m *= Geom::Rotate(original_angle);
}
if(elastic) {
diff --git a/src/live_effects/lpe-transform_2pts.h b/src/live_effects/lpe-transform_2pts.h
index c20d56206..0f88e6b00 100644
--- a/src/live_effects/lpe-transform_2pts.h
+++ b/src/live_effects/lpe-transform_2pts.h
@@ -57,7 +57,7 @@ private:
ToggleButtonParam flip_vertical;
PointParam start;
PointParam end;
- ScalarParam strech;
+ ScalarParam stretch;
ScalarParam offset;
ScalarParam first_knot;
ScalarParam last_knot;
diff --git a/src/live_effects/parameter/originalpath.cpp b/src/live_effects/parameter/originalpath.cpp
index 2741461be..f7eb48b7a 100644
--- a/src/live_effects/parameter/originalpath.cpp
+++ b/src/live_effects/parameter/originalpath.cpp
@@ -56,7 +56,7 @@ OriginalPathParam::param_newWidget()
}
{ // Paste path to link button
- Gtk::Widget *pIcon = Gtk::manage( sp_icon_get_icon( INKSCAPE_ICON("edit-paste"), Inkscape::ICON_SIZE_BUTTON) );
+ Gtk::Widget *pIcon = Gtk::manage( sp_icon_get_icon( INKSCAPE_ICON("edit-clone"), Inkscape::ICON_SIZE_BUTTON) );
Gtk::Button *pButton = Gtk::manage(new Gtk::Button());
pButton->set_relief(Gtk::RELIEF_NONE);
pIcon->show();
diff --git a/src/live_effects/parameter/originalpatharray.cpp b/src/live_effects/parameter/originalpatharray.cpp
index 4ee068ebf..083abc94c 100644
--- a/src/live_effects/parameter/originalpatharray.cpp
+++ b/src/live_effects/parameter/originalpatharray.cpp
@@ -144,7 +144,7 @@ Gtk::Widget* OriginalPathArrayParam::param_newWidget()
{ // Paste path to link button
- Gtk::Widget *pIcon = Gtk::manage( sp_icon_get_icon("gtk-stock", Inkscape::ICON_SIZE_BUTTON) );
+ Gtk::Widget *pIcon = Gtk::manage( sp_icon_get_icon("edit-clone", Inkscape::ICON_SIZE_BUTTON) );
Gtk::Button *pButton = Gtk::manage(new Gtk::Button());
pButton->set_relief(Gtk::RELIEF_NONE);
pIcon->show();
diff --git a/src/sp-image.cpp b/src/sp-image.cpp
index aa1dbfe20..1961971cb 100644
--- a/src/sp-image.cpp
+++ b/src/sp-image.cpp
@@ -793,7 +793,7 @@ void sp_image_refresh_if_outdated( SPImage* image )
if ( image->href && image->pixbuf && image->pixbuf->modificationTime()) {
// It *might* change
- struct stat st;
+ GStatBuf st;
memset(&st, 0, sizeof(st));
int val = 0;
if (g_file_test (image->pixbuf->originalPath().c_str(), G_FILE_TEST_EXISTS)){
diff --git a/src/ui/dialog/align-and-distribute.cpp b/src/ui/dialog/align-and-distribute.cpp
index 236832beb..1c88fc849 100644
--- a/src/ui/dialog/align-and-distribute.cpp
+++ b/src/ui/dialog/align-and-distribute.cpp
@@ -614,7 +614,7 @@ private :
}
};
-// instantiae the private static member
+// instantiate the private static member
boost::optional<Geom::Point> ActionExchangePositions::center;
class ActionUnclump : public Action {
@@ -928,7 +928,7 @@ AlignAndDistribute::AlignAndDistribute()
{
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
- //Instanciate the align buttons
+ //Instantiate the align buttons
addAlignButton(INKSCAPE_ICON("align-horizontal-right-to-anchor"),
_("Align right edges of objects to the left edge of the anchor"),
0, 0);
diff --git a/src/ui/dialog/filedialogimpl-gtkmm.cpp b/src/ui/dialog/filedialogimpl-gtkmm.cpp
index f5450ac9a..92e9ce834 100644
--- a/src/ui/dialog/filedialogimpl-gtkmm.cpp
+++ b/src/ui/dialog/filedialogimpl-gtkmm.cpp
@@ -554,7 +554,7 @@ bool SVGPreview::set(Glib::ustring &fileName, int dialogType)
Glib::ustring fileNameUtf8 = Glib::filename_to_utf8(fileName);
gchar *fName = const_cast<gchar *>(
fileNameUtf8.c_str()); // const-cast probably not necessary? (not necessary on Windows version of stat())
- struct stat info;
+ GStatBuf info;
if (g_stat(fName, &info)) // stat returns 0 upon success
{
g_warning("SVGPreview::set() : %s : %s", fName, strerror(errno));
diff --git a/src/ui/widget/registered-widget.h b/src/ui/widget/registered-widget.h
index d410dbfe6..f66d5cbf2 100644
--- a/src/ui/widget/registered-widget.h
+++ b/src/ui/widget/registered-widget.h
@@ -135,7 +135,7 @@ private:
repr = NULL;
doc = NULL;
write_undo = false;
- event_type = -1;
+ event_type = 0; //SP_VERB_INVALID
}
};