diff options
author | Walter Bender <walter@walter-laptop.(none)> | 2009-02-02 18:26:02 (GMT) |
---|---|---|
committer | Walter Bender <walter@walter-laptop.(none)> | 2009-02-02 18:26:02 (GMT) |
commit | 3a6635f5b36142412739ef5f76aa6bcab5ebc678 (patch) | |
tree | 1713ba853ef4d5093e7cc1ed4bd44fcf07d52029 | |
parent | e518308ac3890a625d363c07df2a88924bf3ea23 (diff) |
rebase on TAPortfolio
178 files changed, 7832 insertions, 9636 deletions
@@ -1,3 +1,7 @@ +32 + +* rebase on TAPortfolio code + 31 * run and step diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py index afb1d7f..b4c889b 100644 --- a/TurtleArtActivity.py +++ b/TurtleArtActivity.py @@ -24,6 +24,7 @@ import talogo import pygtk pygtk.require('2.0') import gtk +import gobject import sugar from sugar.activity import activity @@ -35,21 +36,23 @@ from gettext import gettext as _ import locale import os.path import os +import tarfile +import sys +from taexportlogo import * class TurtleArtActivity(activity.Activity): + def __init__(self, handle): super(TurtleArtActivity,self).__init__(handle) - self.gamename = 'turtleart' -# self.set_title("TurtleArt...") - toolbox = activity.ActivityToolbox(self) self.set_toolbox(toolbox) + self.projectToolbar = ProjectToolbar(self) toolbox.add_toolbar( _('Project'), self.projectToolbar ) - toolbox.show() -# toolbox._activity_toolbar.keep.connect('clicked', self._keep_clicked_cb) # patch + toolbox.show() + toolbox.set_current_toolbar(1) canvas = gtk.EventBox() @@ -58,12 +61,16 @@ class TurtleArtActivity(activity.Activity): toolbox._activity_toolbar.title.select_region(0,0) tboxh = toolbox._activity_toolbar.size_request()[1] - version = os.environ['SUGAR_BUNDLE_VERSION'] + try: + version = os.environ['SUGAR_BUNDLE_VERSION'] + except: + version = "-unknown" lang = locale.getdefaultlocale()[0] if not lang: lang = 'en' lang = lang[0:2] - if not os.path.isdir(os.path.join(activity.get_bundle_path(),'images',lang)): + if not os.path.isdir(os.path.join(activity.get_bundle_path(), \ + 'images', lang)): lang = 'en' # test to see if lang or version has changed since last time @@ -72,26 +79,30 @@ class TurtleArtActivity(activity.Activity): versiondata = [] try: - FILE = open(os.path.join(activity.get_activity_root(),"data",filename),"r") + FILE = open(os.path.join(activity.get_activity_root(), "data", \ + filename), "r") if FILE.readline() == lang + version: - print "the version data hasn't changed" + pass else: - print "out with the old version data", - os.system("rm " + os.path.join(activity.get_activity_root(),"data",'*.png')) + print "out with the old, in with the new" + os.system("rm " + os.path.join(activity.get_activity_root(), \ + "data", '*.png')) except: print "writing new version data" + versiondata.append(lang + version) - FILE = open(os.path.join(activity.get_activity_root(),"data",filename),"w") + FILE = open(os.path.join(activity.get_activity_root(), "data", \ + filename), "w") FILE.writelines(versiondata) FILE.close() - self.tw = tawindow.twNew(canvas,activity.get_bundle_path(),lang,tboxh,self) + self.tw = tawindow.twNew1(canvas,activity.get_bundle_path(), \ + lang,tboxh,self) self.tw.activity = self self.tw.window.grab_focus() - self.tw.save_folder = os.path.join(os.environ['SUGAR_ACTIVITY_ROOT'],'data') - -# toolbox._activity_toolbar._update_title_sid = True -# toolbox._activity_toolbar.title.connect('focus-out-event', self.update_title_cb, toolbox) # patch + tawindow.twNew2(self.tw) + self.tw.save_folder=os.path.join(os.environ['SUGAR_ACTIVITY_ROOT'], \ + 'data') if self._jobject and self._jobject.file_path: self.read_file(self._jobject.file_path) @@ -106,7 +117,7 @@ class TurtleArtActivity(activity.Activity): def write_file(self, file_path): print "Writing file %s" % file_path self.metadata['mime_type'] = 'application/x-tar' - import tarfile,os,tempfile + import tempfile tar_fd = tarfile.open(file_path, 'w') pngfd, pngfile = tempfile.mkstemp(".png") tafd, tafile = tempfile.mkstemp(".ta") @@ -124,27 +135,33 @@ class TurtleArtActivity(activity.Activity): os.remove(tafile) def read_file(self, file_path): - # Better be a tar file. import tarfile,os,tempfile,shutil print "Reading file %s" % file_path - tar_fd = tarfile.open(file_path, 'r') - tmpdir = tempfile.mkdtemp() - - try: - # We'll get 'ta_code.ta' and 'ta_image.png' - tar_fd.extractall(tmpdir) - tawindow.load_files(self.tw, os.path.join(tmpdir, 'ta_code.ta'), os.path.join(tmpdir, 'ta_image.png')) - - finally: - shutil.rmtree(tmpdir) - tar_fd.close() + # might be a tar file + if file_path[-5:] == ".gtar": + tar_fd = tarfile.open(file_path, 'r') + tmpdir = tempfile.mkdtemp() + try: + # We'll get 'ta_code.ta' and 'ta_image.png' + tar_fd.extractall(tmpdir) + tawindow.load_files(self.tw, os.path.join(tmpdir, \ + 'ta_code.ta'), os.path.join(tmpdir, 'ta_image.png')) + finally: + shutil.rmtree(tmpdir) + tar_fd.close() + # or just a .ta file + elif file_path[-3:] == ".ta": + tawindow.load_files(self.tw, file_path, "") + # run the activity + tawindow.runbutton(self.tw, 0) def jobject_new_patch(self): oldj = self._jobject self._jobject = datastore.create() self._jobject.metadata['title'] = oldj.metadata['title'] - self._jobject.metadata['title_set_by_user'] = oldj.metadata['title_set_by_user'] + self._jobject.metadata['title_set_by_user'] = \ + oldj.metadata['title_set_by_user'] self._jobject.metadata['activity'] = self.get_service_name() self._jobject.metadata['activity_id'] = self.get_id() self._jobject.metadata['keep'] = '0' @@ -155,46 +172,178 @@ class TurtleArtActivity(activity.Activity): datastore.write(self._jobject, reply_handler=self._internal_jobject_create_cb, error_handler=self._internal_jobject_error_cb) + self._jobject.destroy() def clear_journal(self): - jobjects, total_count = datastore.find({'activity': 'org.laptop.TurtleArtActivity'}) + jobjects, total_count = datastore.find( \ + {'activity': 'org.sugarlab.TAPortfolioActivity'}) print 'found', total_count, 'entries' for jobject in jobjects[:-1]: print jobject.object_id datastore.delete(jobject.object_id) -class ProjectToolbar(gtk.Toolbar): - from taexport import * + + +class ProjectToolbar(gtk.Toolbar): def __init__(self, pc): gtk.Toolbar.__init__(self) self.activity = pc + # blocks button + self.blocks = ToolButton( "blocksoff" ) + self.blocks.set_tooltip(_('hide palette')) + self.blocks.props.sensitive = True + self.blocks.connect('clicked', self.do_blocks) + self.insert(self.blocks, -1) + self.blocks.show() + + # hide-show button + self.hideshow = ToolButton( "hideshowoff" ) + self.hideshow.set_tooltip(_('hide blocks')) + self.hideshow.props.sensitive = True + self.hideshow.connect('clicked', self.do_hideshow) + self.insert(self.hideshow, -1) + self.hideshow.show() + + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # run button + self.runproject = ToolButton( "run-fastoff" ) + self.runproject.set_tooltip(_('run')) + self.runproject.props.sensitive = True + self.runproject.connect('clicked', self.do_run) + self.insert(self.runproject, -1) + self.runproject.show() + + # step button + self.stepproject = ToolButton( "run-slowoff" ) + self.stepproject.set_tooltip(_('step')) + self.stepproject.props.sensitive = True + self.stepproject.connect('clicked', self.do_step) + self.insert(self.stepproject, -1) + self.stepproject.show() + + # stop button + self.stop = ToolButton( "stopitoff" ) + self.stop.set_tooltip(_('stop turtle')) + self.stop.props.sensitive = True + self.stop.connect('clicked', self.do_stop) + self.insert(self.stop, -1) + self.stop.show() + + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # eraser button + self.eraser = ToolButton( "eraseron" ) + self.eraser.set_tooltip(_('clean')) + self.eraser.props.sensitive = True + self.eraser.connect('clicked', self.do_eraser) + self.insert(self.eraser, -1) + self.eraser.show() + + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # project open self.sampb = ToolButton( "stock-open" ) - self.sampb.set_tooltip(_('Samples')) + self.sampb.set_tooltip(_('sample portfolio templates')) self.sampb.props.sensitive = True self.sampb.connect('clicked', self.do_samples) self.insert(self.sampb, -1) self.sampb.show() - # UCB Logo save source button - self.savelogo = ToolButton( "UCB-save" ) - self.savelogo.set_tooltip(_('UCB Logo')) + separator = gtk.SeparatorToolItem() + separator.set_draw(True) + self.insert(separator, -1) + separator.show() + + # Berkeley Logo save source button + self.savelogo = ToolButton( "logo-saveoff" ) + self.savelogo.set_tooltip(_('save Logo')) self.savelogo.props.sensitive = True self.savelogo.connect('clicked', self.do_savelogo) self.insert(self.savelogo, -1) self.savelogo.show() + def do_blocks(self, button): + tawindow.hideshow_palette(self.activity.tw) + if self.activity.tw.palette == False: + self.blocks.set_icon("blockson") + self.blocks.set_tooltip(_('show palette')) + else: + self.blocks.set_icon("blocksoff") + self.blocks.set_tooltip(_('hide palette')) + + def do_hidepalette(self): + print "in do_hidepalette" + self.blocks.set_icon("blockson") + self.blocks.set_tooltip(_('show palette')) + + def do_run(self, button): + self.runproject.set_icon("run-faston") + self.stop.set_icon("stopiton") + tawindow.runbutton(self.activity.tw, 0) + gobject.timeout_add(1000,self.runproject.set_icon,"run-fastoff") + gobject.timeout_add(1000,self.stepproject.set_icon,"run-slowoff") + + def do_step(self, button): + self.stepproject.set_icon("run-slowon") + self.stop.set_icon("stopiton") + tawindow.runbutton(self.activity.tw, 3) + gobject.timeout_add(1000,self.stepproject.set_icon,"run-slowoff") + gobject.timeout_add(1000,self.runproject.set_icon,"run-fastoff") + + def do_stop(self, button): + self.stop.set_icon("stopitoff") + tawindow.stop_button(self.activity.tw) + self.stepproject.set_icon("run-slowoff") + self.runproject.set_icon("run-fastoff") + + def do_hideshow(self, button): + tawindow.hideshow_button(self.activity.tw) + if self.activity.tw.hide == True: # we just hid the blocks + self.hideshow.set_icon("hideshowon") + self.hideshow.set_tooltip(_('show blocks')) + else: + self.hideshow.set_icon("hideshowoff") + self.hideshow.set_tooltip(_('hide blocks')) + # update palette buttons too + if self.activity.tw.palette == False: + self.blocks.set_icon("blockson") + self.blocks.set_tooltip(_('show palette')) + else: + self.blocks.set_icon("blocksoff") + self.blocks.set_tooltip(_('hide palette')) + + def do_hide(self): + self.hideshow.set_icon("hideshowon") + self.hideshow.set_tooltip(_('show blocks')) + self.blocks.set_icon("blockson") + self.blocks.set_tooltip(_('show palette')) + + def do_eraser(self, button): + self.eraser.set_icon("eraseroff") + tawindow.eraser_button(self.activity.tw) + gobject.timeout_add(250,self.eraser.set_icon,"eraseron") + def do_samples(self, button): tawindow.load_file(self.activity.tw) -# self.activity.jobject_new_patch() def do_savelogo(self, button): # write logo code out to datastore - print "saving logo code" + self.savelogo.set_icon("logo-saveon") # grab code from stacks - logocode = self.save_logo(self.activity.tw) + logocode = save_logo(self,self.activity.tw) if len(logocode) == 0: return filename = "logosession.lg" @@ -202,14 +351,15 @@ class ProjectToolbar(gtk.Toolbar): # Create a datastore object file_dsobject = datastore.create() - # Write any metadata (here we specifically set the title of the file and - # specify that this is a plain text file). + # Write any metadata (here we specifically set the title of the file + # and specify that this is a plain text file). file_dsobject.metadata['title'] = filename file_dsobject.metadata['mime_type'] = 'text/plain' file_dsobject.metadata['icon-color'] = profile.get_color().to_string() #Write the actual file to the data directory of this activity's root. - file_path = os.path.join(self.activity.get_activity_root(), 'instance', filename) + file_path = os.path.join(self.activity.get_activity_root(), \ + 'instance', filename) f = open(file_path, 'w') try: f.write(logocode) @@ -220,4 +370,6 @@ class ProjectToolbar(gtk.Toolbar): file_dsobject.set_file_path(file_path) datastore.write(file_dsobject) + gobject.timeout_add(250,self.savelogo.set_icon, "logo-saveoff") return + diff --git a/activity/activity.info b/activity/activity.info index ada738a..b123109 100644 --- a/activity/activity.info +++ b/activity/activity.info @@ -1,6 +1,6 @@ [Activity] name = Turtle Art -activity_version = 31 +activity_version = 32 license = MIT service_name = org.laptop.TurtleArtActivity class = TurtleArtActivity.TurtleArtActivity diff --git a/icons/blocksoff.svg b/icons/blocksoff.svg new file mode 100644 index 0000000..8efee24 --- /dev/null +++ b/icons/blocksoff.svg @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="45.000004" + height="45" + id="svg2"> + <defs + id="defs19" /> + <path + d="M 0.5,44.502878 L 0.5,30.353117 C 0.81811663,28.149435 1.1818834,25.945754 1.5,23.742073 C 1.9963269,22.444548 2.5036731,21.147023 3,19.849497 C 3.6783755,19.065372 4.3216245,18.281246 5,17.49712 L 39.7494,17.49712 L 42,20.014991 C 42.605837,21.615977 42.894162,23.216963 43.5,24.817948 C 43.777382,27.520068 44.222619,30.222187 44.5,32.924307 L 44.5,44.502878 L 0.5,44.502878 z" + id="path4" + style="fill:#808080;fill-opacity:1;stroke:#a0a0a0;stroke-width:0.99423993px;stroke-opacity:1" /> + <path + d="M 30.875,30.999999 C 30.875,35.624929 27.12538,39.374181 22.5,39.374181 C 17.87462,39.374181 14.125,35.624929 14.125,30.999999 C 14.125,26.37507 17.87462,22.625817 22.5,22.625817 C 27.12538,22.625817 30.875,26.37507 30.875,30.999999 L 30.875,30.999999 z" + id="path27" + style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1px;stroke-opacity:1" /> + <text + x="-50.760925" + y="-462.48117" + transform="scale(0.9850096,1.0152185)" + id="text29" + style="font-size:12.18262196px;font-weight:bold;font-family:Bitstream Vera Sans"> + <tspan + x="18.273933" + y="34.975887" + id="tspan31" + style="font-size:12.18262196px;font-weight:bold;fill:#ffffff">X</tspan> + </text> +</svg> diff --git a/icons/blockson.svg b/icons/blockson.svg new file mode 100644 index 0000000..be6b729 --- /dev/null +++ b/icons/blockson.svg @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="45.000004" + height="45" + id="svg2"> + <defs + id="defs19" /> + <path + d="M 0.5,44.502878 L 0.5,30.353117 C 0.81811663,28.149435 1.1818834,25.945754 1.5,23.742073 C 1.9963269,22.444548 2.5036731,21.147023 3,19.849497 C 3.6783755,19.065372 4.3216245,18.281246 5,17.49712 L 39.7494,17.49712 L 42,20.014991 C 42.605837,21.615977 42.894162,23.216963 43.5,24.817948 C 43.777382,27.520068 44.222619,30.222187 44.5,32.924307 L 44.5,44.502878 L 0.5,44.502878 z" + id="path4" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" /> + <g + transform="matrix(1,0,0,1.0306686,-108,16.956129)" + id="g6"> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(59.375,-424.74902)" + id="path8" + style="fill:#00e000;fill-opacity:1;stroke:#00e000;stroke-width:0.98500961;stroke-opacity:1" /> + <text + id="text10" + style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> + <tspan + x="125.5" + y="17.5" + id="tspan12" + style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans">+</tspan> + </text> + </g> +</svg> diff --git a/images/en/toolbar/eraseroff.svg b/icons/eraseroff.svg index 9ffbb5e..9ffbb5e 100644 --- a/images/en/toolbar/eraseroff.svg +++ b/icons/eraseroff.svg diff --git a/images/en/toolbar/eraseron.svg b/icons/eraseron.svg index dcb3ae3..dcb3ae3 100644 --- a/images/en/toolbar/eraseron.svg +++ b/icons/eraseron.svg diff --git a/images/en/toolbar/hideshowoff.svg b/icons/hideshowoff.svg index 19b49a3..19b49a3 100644 --- a/images/en/toolbar/hideshowoff.svg +++ b/icons/hideshowoff.svg diff --git a/icons/hideshowon.svg b/icons/hideshowon.svg new file mode 100644 index 0000000..b6c328d --- /dev/null +++ b/icons/hideshowon.svg @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="53" + height="43" + id="svg2"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2487" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2399" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7128619,0,0,0.8895426,-6.102877e-4,0.9471127)" /> + </defs> + <path + d="M 34.216761,1.8366553 C 45.622551,1.8366553 45.622551,1.8366553 45.622551,1.8366553 C 45.622551,1.8366553 48.567953,4.0485498 49.543292,5.3948257 C 50.539496,6.7699023 52.038308,10.732081 52.038308,10.732081 L 52.038308,27.633391 C 52.038308,27.633391 50.457858,30.919053 49.543292,32.081104 C 48.524213,33.375948 45.622551,35.639274 45.622551,35.639274 L 33.503899,35.639274 L 33.503899,35.639274 L 33.503899,39.197444 L 19.246661,39.197444 L 19.246661,35.639274 L 7.1280087,35.639274 C 7.1280087,35.639274 4.2263475,33.375948 3.2072683,32.081104 C 2.2927019,30.919053 0.71225161,27.633391 0.71225161,27.633391 L 0.71225161,10.732081 C 0.71225161,10.732081 2.2110639,6.7699023 3.2072683,5.3948257 C 4.1826074,4.0485498 7.1280087,1.8366553 7.1280087,1.8366553 L 18.533799,1.8366553 L 18.533799,6.2843683 L 34.216761,6.2843683 L 34.216761,1.8366553 z" + id="path9" + style="fill:url(#linearGradient2399);fill-opacity:1;stroke:#c0a000;stroke-width:1.59263432;stroke-opacity:1" /> +</svg> diff --git a/icons/logo-saveoff.svg b/icons/logo-saveoff.svg new file mode 100644 index 0000000..f1ca4a7 --- /dev/null +++ b/icons/logo-saveoff.svg @@ -0,0 +1,149 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="55" + height="55" + viewBox="0 0 55 55" + id="svg2" + xml:space="preserve"><defs + id="defs41"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</defs> +<g + transform="translate(-0.5507515,-1.7569535)" + id="g3" + style="fill:none"> + <line + style="fill:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="line3290" + y2="4.9169998" + y1="16.188" + x2="52.441002" + x1="41.169998" /> + <polyline + style="fill:none;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="polyline3292" + points="51.562,15.306 41.17,16.188 42.053,5.794" /> +</g> +<polygon + points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " + transform="translate(-6,2)" + id="polygon9" + style="fill:none;stroke:#ffffff;stroke-width:3.5" /><polyline + points="43.818,18.027 31.874,18.027 31.874,6.088" + id="polyline11" + style="fill:none;stroke:#ffffff;stroke-width:3.5" + transform="translate(-6,2)" /><path + d="M 21.379465,44.19975 C 21.102965,44.19975 20.829965,44.18225 20.560965,44.14975 L 21.254965,45.32425 L 21.938965,44.16775 C 21.753465,44.18275 21.568465,44.19975 21.379465,44.19975 z" + id="path11" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g13" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 40.16,11.726 C 37.996,11.726 36.202,13.281 35.817,15.333 C 37.676,16.678 39.274,18.448 40.492,20.541 C 42.777,20.369 44.586,18.48 44.586,16.151 C 44.586,13.707 42.604,11.726 40.16,11.726 z" + id="path15" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 40.713,39.887 C 39.489,42.119 37.853,44.018 35.916,45.443 C 36.437,47.307 38.129,48.682 40.16,48.682 C 42.603,48.682 44.586,46.702 44.586,44.258 C 44.586,42.003 42.893,40.162 40.713,39.887 z" + id="path17" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 14.273,39.871 C 12.02,40.077 10.249,41.95 10.249,44.258 C 10.249,46.701 12.229,48.682 14.673,48.682 C 16.737,48.682 18.457,47.262 18.945,45.35 C 17.062,43.934 15.47,42.061 14.273,39.871 z" + id="path19" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.026,15.437 C 18.683,13.334 16.872,11.726 14.673,11.726 C 12.229,11.726 10.249,13.707 10.249,16.15 C 10.249,18.532 12.135,20.46 14.494,20.556 C 15.68,18.513 17.226,16.772 19.026,15.437 z" + id="path21" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g><path + d="M 21.379465,26.34175 C 22.333465,26.34175 23.243465,26.54725 24.088465,26.90575 C 24.458965,26.36775 24.677465,25.71725 24.677465,25.01425 C 24.677465,23.17075 23.182965,21.67575 21.338965,21.67575 C 19.495465,21.67575 18.000965,23.17075 18.000965,25.01425 C 18.000965,25.72825 18.226965,26.38875 18.608965,26.93125 C 19.470965,26.55675 20.402465,26.34175 21.379465,26.34175 z" + id="path23" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g25" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 43.102,30.421 C 43.102,35.1554 41.4568,39.7008 38.5314,43.0485 C 35.606,46.3963 31.6341,48.279 27.497,48.279 C 23.3599,48.279 19.388,46.3963 16.4626,43.0485 C 13.5372,39.7008 11.892,35.1554 11.892,30.421 C 11.892,20.6244 18.9364,12.563 27.497,12.563 C 36.0576,12.563 43.102,20.6244 43.102,30.421 z" + id="path2988" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g28" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 25.875,33.75 L 24.333,29.125 L 27.497,26.538 L 31.112,29.164 L 29.625,33.833 L 25.875,33.75 z" + id="path30" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 27.501,41.551 C 23.533,41.391 21.958,39.542 21.958,39.542 L 25.528,35.379 L 29.993,35.547 L 33.125,39.667 C 33.125,39.667 30.235,41.661 27.501,41.551 z" + id="path32" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 18.453,33.843 C 17.604,30.875 18.625,26.959 18.625,26.959 L 22.625,29.126 L 24.118,33.755 L 20.536,37.988 C 20.536,37.987 19.071,35.998 18.453,33.843 z" + id="path34" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.458,25.125 C 19.458,25.125 19.958,23.167 22.497,21.303 C 24.734,19.66 26.962,19.583 26.962,19.583 L 26.925,24.564 L 23.404,27.314 L 19.458,25.125 z" + id="path2998" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.084,27.834 L 28.625,24.959 L 29,19.75 C 29,19.75 30.834,19.708 32.959,21.417 C 35.187,23.208 36.321,26.4 36.321,26.4 L 32.084,27.834 z" + id="path37" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 31.292,34.042 L 32.605,29.578 L 36.792,28.042 C 36.792,28.042 37.469,30.705 36.75,33.709 C 36.21,35.965 34.666,38.07 34.666,38.07 L 31.292,34.042 z" + id="path3002" + style="fill:#008000;fill-opacity:1;stroke:#00ff00;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +<line + x1="40.75" + x2="52.021004" + y1="15.249998" + y2="3.9789984" + id="line2513" + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /><polyline + points="51.562,15.306 41.17,16.188 42.053,5.794" + id="polyline2515" + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + transform="translate(-0.4199989,-0.938)" /><polyline + points="43.818,18.027 31.874,18.027 31.874,6.088" + id="polyline2519" + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" + transform="translate(45.97349,37.199819)" /></svg>
\ No newline at end of file diff --git a/icons/logo-saveon.svg b/icons/logo-saveon.svg new file mode 100644 index 0000000..e705778 --- /dev/null +++ b/icons/logo-saveon.svg @@ -0,0 +1,109 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="55" + height="55" + viewBox="0 0 55 55" + id="svg2" + xml:space="preserve"><defs + id="defs41"> + + + + + + + + +</defs> +<g + transform="translate(-0.5507515,-1.7569535)" + id="g3" + style="fill:none;stroke:#ffffff;stroke-opacity:1"> + <line + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="line3290" + y2="4.9169998" + y1="16.188" + x2="52.441002" + x1="41.169998" /> + <polyline + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + id="polyline3292" + points="51.562,15.306 41.17,16.188 42.053,5.794" /> +</g> +<polygon + points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " + transform="translate(-6,2)" + id="polygon9" + style="fill:#008000;fill-opacity:1;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" /><polyline + points="43.818,18.027 31.874,18.027 31.874,6.088" + id="polyline11" + style="fill:none;stroke:#ffffff;stroke-width:3.5;stroke-opacity:1" + transform="translate(-6,2)" /><path + d="M 21.379465,44.19975 C 21.102965,44.19975 20.829965,44.18225 20.560965,44.14975 L 21.254965,45.32425 L 21.938965,44.16775 C 21.753465,44.18275 21.568465,44.19975 21.379465,44.19975 z" + id="path11" + style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g13" + style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 40.16,11.726 C 37.996,11.726 36.202,13.281 35.817,15.333 C 37.676,16.678 39.274,18.448 40.492,20.541 C 42.777,20.369 44.586,18.48 44.586,16.151 C 44.586,13.707 42.604,11.726 40.16,11.726 z" + id="path15" + style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 40.713,39.887 C 39.489,42.119 37.853,44.018 35.916,45.443 C 36.437,47.307 38.129,48.682 40.16,48.682 C 42.603,48.682 44.586,46.702 44.586,44.258 C 44.586,42.003 42.893,40.162 40.713,39.887 z" + id="path17" + style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 14.273,39.871 C 12.02,40.077 10.249,41.95 10.249,44.258 C 10.249,46.701 12.229,48.682 14.673,48.682 C 16.737,48.682 18.457,47.262 18.945,45.35 C 17.062,43.934 15.47,42.061 14.273,39.871 z" + id="path19" + style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.026,15.437 C 18.683,13.334 16.872,11.726 14.673,11.726 C 12.229,11.726 10.249,13.707 10.249,16.15 C 10.249,18.532 12.135,20.46 14.494,20.556 C 15.68,18.513 17.226,16.772 19.026,15.437 z" + id="path21" + style="fill:none;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g><path + d="M 21.379465,26.34175 C 22.333465,26.34175 23.243465,26.54725 24.088465,26.90575 C 24.458965,26.36775 24.677465,25.71725 24.677465,25.01425 C 24.677465,23.17075 23.182965,21.67575 21.338965,21.67575 C 19.495465,21.67575 18.000965,23.17075 18.000965,25.01425 C 18.000965,25.72825 18.226965,26.38875 18.608965,26.93125 C 19.470965,26.55675 20.402465,26.34175 21.379465,26.34175 z" + id="path23" + style="fill:none;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g25" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 43.102,30.421 C 43.102,35.1554 41.4568,39.7008 38.5314,43.0485 C 35.606,46.3963 31.6341,48.279 27.497,48.279 C 23.3599,48.279 19.388,46.3963 16.4626,43.0485 C 13.5372,39.7008 11.892,35.1554 11.892,30.421 C 11.892,20.6244 18.9364,12.563 27.497,12.563 C 36.0576,12.563 43.102,20.6244 43.102,30.421 z" + id="path2988" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g><g + transform="matrix(0.5,0,0,0.5,7.630965,20.06025)" + id="g28" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> + <path + d="M 25.875,33.75 L 24.333,29.125 L 27.497,26.538 L 31.112,29.164 L 29.625,33.833 L 25.875,33.75 z" + id="path30" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 27.501,41.551 C 23.533,41.391 21.958,39.542 21.958,39.542 L 25.528,35.379 L 29.993,35.547 L 33.125,39.667 C 33.125,39.667 30.235,41.661 27.501,41.551 z" + id="path32" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 18.453,33.843 C 17.604,30.875 18.625,26.959 18.625,26.959 L 22.625,29.126 L 24.118,33.755 L 20.536,37.988 C 20.536,37.987 19.071,35.998 18.453,33.843 z" + id="path34" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 19.458,25.125 C 19.458,25.125 19.958,23.167 22.497,21.303 C 24.734,19.66 26.962,19.583 26.962,19.583 L 26.925,24.564 L 23.404,27.314 L 19.458,25.125 z" + id="path2998" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 32.084,27.834 L 28.625,24.959 L 29,19.75 C 29,19.75 30.834,19.708 32.959,21.417 C 35.187,23.208 36.321,26.4 36.321,26.4 L 32.084,27.834 z" + id="path37" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 31.292,34.042 L 32.605,29.578 L 36.792,28.042 C 36.792,28.042 37.469,30.705 36.75,33.709 C 36.21,35.965 34.666,38.07 34.666,38.07 L 31.292,34.042 z" + id="path3002" + style="fill:#008000;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +</svg>
\ No newline at end of file diff --git a/icons/run-fastoff.svg b/icons/run-fastoff.svg new file mode 100644 index 0000000..52c01b1 --- /dev/null +++ b/icons/run-fastoff.svg @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="45" + height="45" + id="svg2"> + <defs + id="defs5" /> + <path + d="M 27.849263,20.597427 A 12.959558,15.579044 0 1 1 1.9301481,20.597427 A 12.959558,15.579044 0 1 1 27.849263,20.597427 z" + transform="matrix(1.6011349,0,0,1.3319174,-1.3404274,-4.9340719)" + id="path2401" + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(6.0193572e-8,-1.9999998)" + id="g3287"> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.9002849,0,0,0.6378505,-7.1526774,12.961276)" + id="path3173" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.34904,-0.8298699,0.4328947,0.1820738,8.5363479,48.352162)" + id="path3177" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.5612942,0.3544048,-0.1085241,0.1718767,9.8942224,-2.0522731)" + id="path3179" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 9.2958401,27.300367 C 9.2958401,27.300367 9.9396698,23.306166 10.935872,22.061849 C 11.769129,21.021055 13.452567,20.204259 14.698298,20.030587 C 15.695098,19.89162 17.0817,20.276787 17.978361,20.778947 C 19.020906,21.362808 20.249615,22.570421 20.872534,23.665477 C 21.854124,25.391058 22.129508,28.217508 22.609038,30.186897 C 22.989402,31.749024 22.893077,34.129027 23.766707,35.425415 C 24.488451,36.496419 26.05388,37.425825 27.239715,37.670497 C 29.026585,38.03918 31.406612,36.482252 33.221007,36.601409 C 34.062327,36.656661 35.491157,36.654128 35.922236,37.456679 C 36.195195,37.964849 35.905348,38.953801 35.536346,39.381028 C 34.148002,40.988448 31.052212,40.932891 29.072692,41.305385 C 27.527672,41.596112 25.302132,42.420918 23.863179,41.73302 C 21.671793,40.685409 20.751319,36.484464 18.846612,34.890872 C 18.494794,34.59652 17.932313,34.319138 17.495998,34.249421 C 16.284393,34.055824 14.659189,34.94909 13.444155,34.783964 C 12.553171,34.662876 11.3895,34.166119 10.646456,33.607971 C 9.4764934,32.729136 8.0161145,31.200596 7.4628632,29.759263 C 6.9180297,28.339853 7.0795774,26.166629 7.1734442,24.627654 C 7.2232038,23.811822 7.3595912,22.703851 7.6558077,21.954941 C 8.129897,20.756324 9.037934,19.228958 9.9711481,18.42696 C 11.274962,17.306468 13.444036,16.38069 15.084187,16.181881 C 16.715989,15.984082 18.912219,16.629234 20.486644,17.144057 C 22.002981,17.639887 23.732735,19.380539 25.310266,19.496045 C 26.242474,19.564301 27.718204,19.343106 28.300912,18.533868 C 28.608322,18.106952 28.64407,17.189262 28.397385,16.716423 C 27.846731,15.660948 26.172441,15.244277 25.117321,14.898978 C 24.111931,14.569954 22.665771,14.732615 21.644314,14.471344 C 20.805858,14.256882 19.710906,13.832753 18.943085,13.402258 C 17.696795,12.703503 15.983926,11.69961 15.084187,10.515729 C 14.266411,9.4396944 12.76679,7.4902805 13.347682,6.2393884 C 13.41521,6.0939751 13.684267,6.1579103 13.830045,6.1324796 C 14.578309,6.0019484 15.977747,6.549964 16.338329,5.8117543 C 16.677203,5.1179904 14.855157,4.0951091 15.277132,3.4597663 C 16.128895,2.1773214 18.606474,3.9460325 20.004282,4.3150345 C 21.126208,4.6112076 22.630202,5.0455391 23.670235,5.5979377 C 25.364051,6.4975826 27.497006,8.0378634 28.879747,9.4466434 C 30.077615,10.667069 30.867467,13.211005 32.256283,14.150619 C 32.886063,14.576701 33.98137,14.386024 34.668094,14.685162 C 35.079247,14.864259 35.552151,15.273077 35.922236,15.540429 C 36.776337,16.157439 38.022189,16.854785 38.719937,17.678599 C 39.297398,18.360395 38.719937,17.785508 40.167023,20.351313 C 41.61411,22.917117 41.668302,20.677033 42,22.596392 C 42,22.596392 41.67672,24.108461 41.324693,24.627654 C 40.914383,25.232806 40.129195,25.852525 39.491716,26.124373 C 39.220261,26.240133 38.809226,26.309203 38.526992,26.231281 C 38.121969,26.119459 37.773325,25.492283 37.369323,25.376014 C 36.666773,25.173825 35.682398,25.631351 34.957512,25.589831 C 34.163857,25.544373 33.029679,25.516672 32.352755,25.055288 C 31.701921,24.611687 31.161002,23.561857 30.809196,22.810209 C 30.543686,22.242934 30.800291,20.681593 30.230362,20.778947 C 30.201757,20.783833 30.230362,20.885856 30.230362,20.885856 M 32.835118,25.269105 C 32.835118,25.269105 32.161048,28.275715 31.870393,29.563774 C 31.611022,30.713194 31.489203,32.339425 31.002141,33.394153 C 30.347142,34.812547 27.915022,37.456679 27.915022,37.456679 M 27.336188,30.079989 C 27.336188,30.079989 26.573965,32.103279 26.082046,32.85961 C 25.55554,33.66912 24.304241,34.289692 23.959652,35.211598 C 23.948576,35.241229 23.959652,35.318506 23.959652,35.318506 M 20.100754,37.029044 C 20.100754,37.029044 17.602411,37.119914 16.531274,37.135949 C 15.836737,37.146354 14.683229,36.566444 14.215934,37.135949 C 13.8052,37.636522 14.086796,38.806265 14.408882,39.381028 C 14.785983,40.053964 15.750748,40.540994 16.434804,40.770837 C 17.238483,41.040868 18.394912,40.945344 19.232502,40.87775 C 20.200674,40.799617 22.416092,40.236298 22.416092,40.236298 M 7.3663896,23.237843 C 7.3663896,23.237843 5.232627,20.433105 4.0863258,20.778947 C 3.4368004,20.97491 3.2582141,22.29356 3.1216024,23.024026 C 2.9570428,23.903932 2.9326465,25.17637 3.2180769,26.017465 C 3.5728864,27.063003 4.5024833,28.2832 5.3404682,28.903995 C 5.8428689,29.276181 6.6720026,29.448198 7.2699187,29.545446 C 7.2985527,29.550103 7.3663896,29.545446 7.3663896,29.545446 M 29.651526,14.04371 C 29.651526,14.04371 26.593178,9.9048794 24.924376,8.5913764 C 23.678488,7.6107444 21.770009,6.6768097 20.293698,6.2393884 C 19.086245,5.8816272 16.145385,5.8117543 16.145385,5.8117543 M 35.343402,20.030587 C 35.620274,20.314716 36.422904,20.294375 36.597543,19.923679 C 36.861718,19.362929 36.073833,18.50785 35.632819,18.106233 C 35.159011,17.674755 34.170679,16.917779 33.70337,17.357874 C 33.322664,17.716409 33.505003,19.055561 33.992786,19.175319 C 34.337702,19.260001 34.319902,18.172433 34.668094,18.106233 C 34.913475,18.059581 35.229479,18.395457 35.343402,18.640776 C 35.515563,19.011509 35.067344,19.747295 35.343402,20.030587 z M 35.246929,19.923679 C 35.246929,19.923679 35.246929,19.923679 35.246929,19.923679 z" + id="path2384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + d="M 27.779352,22.5 L 17.220648,28.603239 C 17.220648,16.396761 17.220648,16.396761 17.220648,16.396761 L 27.779352,22.5 z" + id="path2496" + style="fill:#00d000;fill-opacity:1;fill-rule:evenodd;stroke:#00d000;stroke-width:0.81818181px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> +</svg> diff --git a/icons/run-faston.svg b/icons/run-faston.svg new file mode 100644 index 0000000..7f435c6 --- /dev/null +++ b/icons/run-faston.svg @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="45" + height="45" + id="svg2"> + <defs + id="defs5" /> + <path + d="M 27.849263,20.597427 A 12.959558,15.579044 0 1 1 1.9301481,20.597427 A 12.959558,15.579044 0 1 1 27.849263,20.597427 z" + transform="matrix(1.6011349,0,0,1.3319174,-1.3404274,-4.9340719)" + id="path2401" + style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:2.39670968;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(6.0193572e-8,-1.9999998)" + id="g3287"> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.9002849,0,0,0.6378505,-7.1526774,12.961276)" + id="path3173" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.34904,-0.8298699,0.4328947,0.1820738,8.5363479,48.352162)" + id="path3177" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 37.158177,18.217157 A 10.586461,12.908847 0 1 1 15.985255,18.217157 A 10.586461,12.908847 0 1 1 37.158177,18.217157 z" + transform="matrix(0.5612942,0.3544048,-0.1085241,0.1718767,9.8942224,-2.0522731)" + id="path3179" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 9.2958401,27.300367 C 9.2958401,27.300367 9.9396698,23.306166 10.935872,22.061849 C 11.769129,21.021055 13.452567,20.204259 14.698298,20.030587 C 15.695098,19.89162 17.0817,20.276787 17.978361,20.778947 C 19.020906,21.362808 20.249615,22.570421 20.872534,23.665477 C 21.854124,25.391058 22.129508,28.217508 22.609038,30.186897 C 22.989402,31.749024 22.893077,34.129027 23.766707,35.425415 C 24.488451,36.496419 26.05388,37.425825 27.239715,37.670497 C 29.026585,38.03918 31.406612,36.482252 33.221007,36.601409 C 34.062327,36.656661 35.491157,36.654128 35.922236,37.456679 C 36.195195,37.964849 35.905348,38.953801 35.536346,39.381028 C 34.148002,40.988448 31.052212,40.932891 29.072692,41.305385 C 27.527672,41.596112 25.302132,42.420918 23.863179,41.73302 C 21.671793,40.685409 20.751319,36.484464 18.846612,34.890872 C 18.494794,34.59652 17.932313,34.319138 17.495998,34.249421 C 16.284393,34.055824 14.659189,34.94909 13.444155,34.783964 C 12.553171,34.662876 11.3895,34.166119 10.646456,33.607971 C 9.4764934,32.729136 8.0161145,31.200596 7.4628632,29.759263 C 6.9180297,28.339853 7.0795774,26.166629 7.1734442,24.627654 C 7.2232038,23.811822 7.3595912,22.703851 7.6558077,21.954941 C 8.129897,20.756324 9.037934,19.228958 9.9711481,18.42696 C 11.274962,17.306468 13.444036,16.38069 15.084187,16.181881 C 16.715989,15.984082 18.912219,16.629234 20.486644,17.144057 C 22.002981,17.639887 23.732735,19.380539 25.310266,19.496045 C 26.242474,19.564301 27.718204,19.343106 28.300912,18.533868 C 28.608322,18.106952 28.64407,17.189262 28.397385,16.716423 C 27.846731,15.660948 26.172441,15.244277 25.117321,14.898978 C 24.111931,14.569954 22.665771,14.732615 21.644314,14.471344 C 20.805858,14.256882 19.710906,13.832753 18.943085,13.402258 C 17.696795,12.703503 15.983926,11.69961 15.084187,10.515729 C 14.266411,9.4396944 12.76679,7.4902805 13.347682,6.2393884 C 13.41521,6.0939751 13.684267,6.1579103 13.830045,6.1324796 C 14.578309,6.0019484 15.977747,6.549964 16.338329,5.8117543 C 16.677203,5.1179904 14.855157,4.0951091 15.277132,3.4597663 C 16.128895,2.1773214 18.606474,3.9460325 20.004282,4.3150345 C 21.126208,4.6112076 22.630202,5.0455391 23.670235,5.5979377 C 25.364051,6.4975826 27.497006,8.0378634 28.879747,9.4466434 C 30.077615,10.667069 30.867467,13.211005 32.256283,14.150619 C 32.886063,14.576701 33.98137,14.386024 34.668094,14.685162 C 35.079247,14.864259 35.552151,15.273077 35.922236,15.540429 C 36.776337,16.157439 38.022189,16.854785 38.719937,17.678599 C 39.297398,18.360395 38.719937,17.785508 40.167023,20.351313 C 41.61411,22.917117 41.668302,20.677033 42,22.596392 C 42,22.596392 41.67672,24.108461 41.324693,24.627654 C 40.914383,25.232806 40.129195,25.852525 39.491716,26.124373 C 39.220261,26.240133 38.809226,26.309203 38.526992,26.231281 C 38.121969,26.119459 37.773325,25.492283 37.369323,25.376014 C 36.666773,25.173825 35.682398,25.631351 34.957512,25.589831 C 34.163857,25.544373 33.029679,25.516672 32.352755,25.055288 C 31.701921,24.611687 31.161002,23.561857 30.809196,22.810209 C 30.543686,22.242934 30.800291,20.681593 30.230362,20.778947 C 30.201757,20.783833 30.230362,20.885856 30.230362,20.885856 M 32.835118,25.269105 C 32.835118,25.269105 32.161048,28.275715 31.870393,29.563774 C 31.611022,30.713194 31.489203,32.339425 31.002141,33.394153 C 30.347142,34.812547 27.915022,37.456679 27.915022,37.456679 M 27.336188,30.079989 C 27.336188,30.079989 26.573965,32.103279 26.082046,32.85961 C 25.55554,33.66912 24.304241,34.289692 23.959652,35.211598 C 23.948576,35.241229 23.959652,35.318506 23.959652,35.318506 M 20.100754,37.029044 C 20.100754,37.029044 17.602411,37.119914 16.531274,37.135949 C 15.836737,37.146354 14.683229,36.566444 14.215934,37.135949 C 13.8052,37.636522 14.086796,38.806265 14.408882,39.381028 C 14.785983,40.053964 15.750748,40.540994 16.434804,40.770837 C 17.238483,41.040868 18.394912,40.945344 19.232502,40.87775 C 20.200674,40.799617 22.416092,40.236298 22.416092,40.236298 M 7.3663896,23.237843 C 7.3663896,23.237843 5.232627,20.433105 4.0863258,20.778947 C 3.4368004,20.97491 3.2582141,22.29356 3.1216024,23.024026 C 2.9570428,23.903932 2.9326465,25.17637 3.2180769,26.017465 C 3.5728864,27.063003 4.5024833,28.2832 5.3404682,28.903995 C 5.8428689,29.276181 6.6720026,29.448198 7.2699187,29.545446 C 7.2985527,29.550103 7.3663896,29.545446 7.3663896,29.545446 M 29.651526,14.04371 C 29.651526,14.04371 26.593178,9.9048794 24.924376,8.5913764 C 23.678488,7.6107444 21.770009,6.6768097 20.293698,6.2393884 C 19.086245,5.8816272 16.145385,5.8117543 16.145385,5.8117543 M 35.343402,20.030587 C 35.620274,20.314716 36.422904,20.294375 36.597543,19.923679 C 36.861718,19.362929 36.073833,18.50785 35.632819,18.106233 C 35.159011,17.674755 34.170679,16.917779 33.70337,17.357874 C 33.322664,17.716409 33.505003,19.055561 33.992786,19.175319 C 34.337702,19.260001 34.319902,18.172433 34.668094,18.106233 C 34.913475,18.059581 35.229479,18.395457 35.343402,18.640776 C 35.515563,19.011509 35.067344,19.747295 35.343402,20.030587 z M 35.246929,19.923679 C 35.246929,19.923679 35.246929,19.923679 35.246929,19.923679 z" + id="path2384" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + d="M 27.779352,22.5 L 17.220648,28.603239 C 17.220648,16.396761 17.220648,16.396761 17.220648,16.396761 L 27.779352,22.5 z" + id="path2496" + style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:0.81818181px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> +</svg> diff --git a/images/es/toolbar/stepoff.svg b/icons/run-slowoff.svg index 1025dd4..72d4267 100644 --- a/images/es/toolbar/stepoff.svg +++ b/icons/run-slowoff.svg @@ -15,13 +15,13 @@ d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" id="path2387" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#c0c0c0;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" id="path2496" - style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path + style="fill:#00d000;fill-opacity:1;fill-rule:evenodd;stroke:#00d000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path d="M 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 z" id="path2385" - style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file + style="opacity:1;fill:#00d000;fill-opacity:1;stroke:#00d000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg> diff --git a/icons/run-slowon.svg b/icons/run-slowon.svg new file mode 100644 index 0000000..a99c82e --- /dev/null +++ b/icons/run-slowon.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + version="1.0" + width="45" + height="45" + viewBox="0 0 55 55" + id="svg2" + xml:space="preserve"> +<defs + id="defs12"> + +</defs><path + d="M 36.852226,15.69838 C 36.852226,21.662832 31.693078,26.497975 25.328947,26.497975 C 18.964816,26.497975 13.805668,21.662832 13.805668,15.69838 C 13.805668,9.7339283 18.964816,4.8987848 25.328947,4.8987848 C 31.693078,4.8987848 36.852226,9.7339283 36.852226,15.69838 L 36.852226,15.69838 z" + transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" + id="path2387" + style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" + id="path2582" + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 33.066802,26.052631 A 8.9068823,6.7914982 0 1 1 15.253037,26.052631 A 8.9068823,6.7914982 0 1 1 33.066802,26.052631 z" + transform="matrix(1.1875,0,0,1.4262294,-2.8599446,-9.6570288)" + id="path2384" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.40873694;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path + d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" + id="path2496" + style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path + id="path2385" + style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/en/toolbar/stopitoff.svg b/icons/stopitoff.svg index 78117ec..78117ec 100644 --- a/images/en/toolbar/stopitoff.svg +++ b/icons/stopitoff.svg diff --git a/images/en/toolbar/stopiton.svg b/icons/stopiton.svg index af01208..af01208 100644 --- a/images/en/toolbar/stopiton.svg +++ b/icons/stopiton.svg diff --git a/images/en/blocks-.svg b/images/en/blocks-.svg new file mode 100644 index 0000000..7bd2cc0 --- /dev/null +++ b/images/en/blocks-.svg @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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="145" + height="1" + version="1.0" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + sodipodi:docname="blocks-.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape"> + <metadata + id="metadata21"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs19"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 14 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="145 : 14 : 1" + inkscape:persp3d-origin="72.5 : 9.3333333 : 1" + id="perspective23" /> + </defs> + <sodipodi:namedview + inkscape:window-height="723" + inkscape:window-width="645" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + guidetolerance="10.0" + gridtolerance="10.0" + objecttolerance="10.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + showgrid="false" + inkscape:zoom="3.7517241" + inkscape:cx="72.5" + inkscape:cy="14" + inkscape:window-x="0" + inkscape:window-y="273" + inkscape:current-layer="svg2" /> +</svg> diff --git a/images/en/maskstring.svg b/images/en/maskstring.svg index f3906a5..9b82a8d 100644 --- a/images/en/maskstring.svg +++ b/images/en/maskstring.svg @@ -3,66 +3,30 @@ <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="115" height="31" id="svg2"> <defs - id="defs15"> - <linearGradient - x1="-2.3910842" - y1="11.231461" - x2="11.530264" - y2="11.231461" - id="linearGradient6589" - xlink:href="#linearGradient6583" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="105.02274" - y1="10.53125" - x2="0.069568597" - y2="10.53125" - id="linearGradient4211" - xlink:href="#linearGradient3886" - gradientUnits="userSpaceOnUse" /> - <linearGradient - x1="0.054486848" - y1="15.004988" - x2="66.945297" - y2="15.004988" - id="linearGradient3892" - xlink:href="#linearGradient3886" - gradientUnits="userSpaceOnUse" /> - <linearGradient - id="linearGradient3886"> - <stop - id="stop3888" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop3890" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient6583"> - <stop - id="stop6585" - style="stop-color:#ff5555;stop-opacity:1" - offset="0" /> - <stop - id="stop6587" - style="stop-color:#ff5555;stop-opacity:1" - offset="1" /> - </linearGradient> - </defs> + id="defs15" /> + <g + id="g4" + style="stroke:#a08000;stroke-opacity:1"> + <path + d="M 15,6.1 C 15,1.2 15,1.2 15,1.2 L 15,1.2 L 15,1.4" + id="path6" + style="fill:none;stroke:#0000ff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> + <path + d="M 15,24.9 C 14.9,29.3 15,29.3 15,29.3 L 15,29.3" + id="path8" + style="fill:none;stroke:#0000ff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> + <path + d="M 4,1 L 111,1 L 114,4 L 114,27 L 111,30 L 4,30 L 1,27 L 1,4 L 4,1 z" + id="path10" + style="fill:none;stroke:#0000ff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> + </g> <path - d="M 5,1.5 L 108,1.5 L 114,15.5 L 108,29.5 L 5,29.5 L 5,22.5 L 1.5,22.5 L 1.5,8 L 5,8 L 5,1.5 z" - id="path10" - style="fill:none;stroke:#0000a0;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> - <path - d="M 7.5,20 L 3.5,20 L 3.5,10.5 L 7.5,10.5 L 7.5,3.25 L 12.5,3.25 L 17.5,3.25 L 106.5,3.25 L 111.5,15.5 L 106.5,27.75 L 17.5,27.75 L 12.5,27.75 L 7.5,27.75 L 7.5,20 z" + d="M 3.5,26.25 L 3.5,5.25 L 5.75,3.25 L 12.5,3.25 L 12.5,6.75 L 17.5,6.75 L 17.5,3.25 L 111.5,3.25 L 111.5,27.75 L 17.5,27.75 L 17.5,24.75 L 12.5,24.75 L 12.5,27.75 L 5.75,27.75 L 3.5,26.25 z" id="path12" - style="fill:none;fill-opacity:1;stroke:#ffff00;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> + style="fill:none;stroke:#ffff00;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" /> </svg> diff --git a/images/en/myblocks/box.svg b/images/en/myblocks/box.svg index 8eac855..ee6df5a 100644 --- a/images/en/myblocks/box.svg +++ b/images/en/myblocks/box.svg @@ -5,8 +5,8 @@ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" - width="140" - height="32" + width="128.25" + height="32.25" id="svg2"> <defs id="defs4"> @@ -58,14 +58,14 @@ xlink:href="#linearGradient3886" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" + x1="4.9044118" y1="0" x2="64" y2="0" id="linearGradient2501" xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> + gradientTransform="translate(12.25,4.96875)" /> <linearGradient x1="0" y1="0" @@ -73,7 +73,8 @@ y2="21" id="linearGradient3172" xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" /> + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> <linearGradient id="linearGradient2492"> <stop @@ -85,18 +86,32 @@ style="stop-color:#ffff00;stop-opacity:1" offset="1" /> </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> </defs> <path - d="M 13,1 L 13,10 L 6,10 L 6,6 L 1,6 L 1,25 L 6,25 L 6,21 L 13,21 L 13,31 L 129,31 L 129,26 L 139,26 L 139,6 L 129,6 L 129,1 L 13,1 z" + d="M 13,1 L 13,10 L 6.25,10 L 6.25,6 L 1,6 L 1,26 L 6.25,26 L 6.25,22 L 13,22 L 13,31.25 L 127.25,31 L 127.25,1 L 13,1 z" id="path11" style="fill:url(#linearGradient2501);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <g - transform="translate(19.5,5.5)" - id="layer1" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path2478" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> + <path + d="M 19.25,5.9999997 L 24.25,5.9999997 L 24.25,10 L 31.249999,10 L 31.249999,5.9999997 L 122.75001,5.9999997 L 122.75001,26 L 31.249999,26 L 31.249999,22 L 24.25,22 L 24.25,26 L 19.25,26 L 19.25,5.9999997 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </svg> diff --git a/images/en/myblocks/hat.svg b/images/en/myblocks/hat.svg index 683a89d..b06f53f 100644 --- a/images/en/myblocks/hat.svg +++ b/images/en/myblocks/hat.svg @@ -95,18 +95,117 @@ xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" gradientTransform="translate(-15.5,16.96875)" /> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2519" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2515"> + <stop + id="stop2494" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2496" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2512" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2510" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2504"> + <stop + id="stop2506" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop2508" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2502" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2499" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2493"> + <stop + id="stop2495" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2497" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2530" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-48.900735,76.376838)" /> </defs> <path d="M 74.5,1 L 1.5,37.5 L 64.5,70 L 64.5,74 L 84.5,74 L 84.5,70 L 148.5,37.5 L 74.5,1 z" id="path6722" style="fill:url(#linearGradient2392);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <g - transform="matrix(1,0,0,1.0454545,22.5,26.522727)" - id="layer1" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:0.9780193;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path2478" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:1.95603859;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> + <path + d="M 22,28 L 27,28 L 27,32 L 33.999999,32 L 33.999999,28 L 125.50001,28 L 125.50001,48 L 33.999999,48 L 33.999999,44 L 27,44 L 27,48 L 22,48 L 22,28 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </svg> diff --git a/images/en/myblocks/hat1.svg b/images/en/myblocks/hat1.svg index 87efe49..917875f 100644 --- a/images/en/myblocks/hat1.svg +++ b/images/en/myblocks/hat1.svg @@ -45,6 +45,6 @@ <tspan x="49" y="35" -style="font-size:18px">stack1</tspan> +style="font-size:18px">action1</tspan> </text> </svg> diff --git a/images/en/myblocks/hat2.svg b/images/en/myblocks/hat2.svg index 79288aa..279c696 100644 --- a/images/en/myblocks/hat2.svg +++ b/images/en/myblocks/hat2.svg @@ -45,6 +45,6 @@ <tspan x="49" y="35" -style="font-size:18px">stack2</tspan> +style="font-size:18px">action2</tspan> </text> </svg> diff --git a/images/en/myblocks/myblocksgroup.svg b/images/en/myblocks/myblocksgroup.svg index 9712c96..ce9136f 100644 --- a/images/en/myblocks/myblocksgroup.svg +++ b/images/en/myblocks/myblocksgroup.svg @@ -9,640 +9,278 @@ height="500" id="svg2"> <defs - id="defs4"> + id="defs92"> <linearGradient - id="linearGradient3712"> + id="linearGradient3239"> <stop - id="stop3714" + id="stop3241" style="stop-color:#ffffff;stop-opacity:1" offset="0" /> <stop - id="stop3716" + id="stop3243" style="stop-color:#ffff00;stop-opacity:1" offset="1" /> </linearGradient> <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient4520" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-6)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient4521" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-6)" /> - <linearGradient - id="linearGradient3886"> - <stop - id="stop3888" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop3890" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient4150" - xlink:href="#linearGradient3886" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.67,0,0,0.67,37.343845,352.88201)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2524" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-5.210508,149.51638)" /> - <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient2542" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(2.213475,199.48202)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2550" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-72.067626,343.65647)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2576" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-72.166029,299.7595)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2600" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-72.166029,299.7595)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2602" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-72.067626,343.65647)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2604" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-5.210508,149.51638)" /> - <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient2484" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.5825278,244.1055)" /> - <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient2488" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(74.319801,244.1055)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient2497" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-186.08546,284.01274)" /> - <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient2492" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-15.5,16.96875)" /> - <linearGradient - id="linearGradient2471"> - <stop - id="stop2473" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2475" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient4238" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient4211" - xlink:href="#linearGradient3886" + x1="47.499626" + y1="46.558704" + x2="97.500374" + y2="46.558704" + id="linearGradient3245" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient2725"> - <stop - id="stop2727" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop2729" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient2496" - xlink:href="#linearGradient3886" + x1="3.8948069" + y1="74.402542" + x2="70.231407" + y2="74.402542" + id="linearGradient3253" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient2501" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient2392" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(37.5,31)" /> - <linearGradient - id="linearGradient3166"> - <stop - id="stop3168" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3170" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2608" - xlink:href="#linearGradient3166" + x1="81.979385" + y1="74.402542" + x2="130.98178" + y2="74.402542" + id="linearGradient3261" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient2595"> - <stop - id="stop2597" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2599" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient2601" - xlink:href="#linearGradient3166" + x1="3.8948069" + y1="115.66337" + x2="70.231407" + y2="115.66337" + id="linearGradient3269" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient2473"> - <stop - id="stop2863" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2477" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient2860" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient2858" - xlink:href="#linearGradient3886" + x1="81.979385" + y1="115.66337" + x2="130.98178" + y2="115.66337" + id="linearGradient3277" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient2852"> - <stop - id="stop2854" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop2856" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient2850" - xlink:href="#linearGradient3886" + x1="35.25" + y1="145.67612" + x2="109.75" + y2="145.67612" + id="linearGradient3285" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient2848" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient3172" - xlink:href="#linearGradient3166" + x1="40" + y1="180.0162" + x2="105" + y2="180.0162" + id="linearGradient3293" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient2841"> - <stop - id="stop2843" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2845" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient2509"> - <stop - id="stop2511" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop2513" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient2515" - xlink:href="#linearGradient3166" + x1="7.6595821" + y1="226.22649" + x2="56.661983" + y2="226.22649" + id="linearGradient3301" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient3056" - xlink:href="#linearGradient3166" + x1="70.022545" + y1="226.22649" + x2="140.026" + y2="226.22649" + id="linearGradient3309" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient3050"> - <stop - id="stop3052" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3054" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="74" - y2="22" - id="linearGradient3048" - xlink:href="#linearGradient3166" + x1="7.6595821" + y1="272.65366" + x2="56.661983" + y2="272.65366" + id="linearGradient3317" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient3042"> - <stop - id="stop3044" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3046" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient3040" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient3038" - xlink:href="#linearGradient3886" + x1="70.022545" + y1="272.65366" + x2="140.026" + y2="272.65366" + id="linearGradient3325" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient3032"> - <stop - id="stop3034" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop3036" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient3030" - xlink:href="#linearGradient3886" + x1="37.0625" + y1="311.59515" + x2="102.0625" + y2="311.59515" + id="linearGradient3333" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient3028" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient3026" - xlink:href="#linearGradient3166" + x1="36.24942" + y1="341.4375" + x2="100.37442" + y2="341.4375" + id="linearGradient3341" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient3020"> - <stop - id="stop3022" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3024" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient3073" - xlink:href="#linearGradient3166" + x1="37.495003" + y1="367.91702" + x2="107.84001" + y2="367.91702" + id="linearGradient3349" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient3154" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient3152" - xlink:href="#linearGradient3886" + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3357" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - id="linearGradient3146"> - <stop - id="stop3148" - style="stop-color:#0000ff;stop-opacity:1" - offset="0" /> - <stop - id="stop3150" - style="stop-color:#ffffff;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient3144" - xlink:href="#linearGradient3886" + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3359" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="0" - x2="64" - y2="0" - id="linearGradient3142" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,4.96875)" /> - <linearGradient - id="linearGradient3136"> - <stop - id="stop3138" - style="stop-color:#ffffff;stop-opacity:1" - offset="0" /> - <stop - id="stop3140" - style="stop-color:#ffff00;stop-opacity:1" - offset="1" /> - </linearGradient> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient3163" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,10)" /> - <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient3165" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,10)" /> - <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient3167" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,10)" /> + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3361" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient3169" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,10)" /> + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3363" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="75" - y1="57" - x2="140" - y2="57" - id="linearGradient3171" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-4)" /> + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3365" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="3" - y1="57" - x2="70" - y2="57" - id="linearGradient3173" - xlink:href="#linearGradient3712" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0,-4)" /> + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3367" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2694" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,0.5,40,153.47976)" /> + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3371" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.571244,4.74717)" /> + <linearGradient + x1="9.8133535" + y1="399.42288" + x2="67.875931" + y2="399.42288" + id="linearGradient3374" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.571244,4.74717)" /> + <linearGradient + x1="64.812042" + y1="396.17004" + x2="134.81549" + y2="396.17004" + id="linearGradient3385" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2696" - xlink:href="#linearGradient3166" + x1="64.812042" + y1="396.17004" + x2="134.81549" + y2="396.17004" + id="linearGradient3387" + xlink:href="#linearGradient3239" gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2701" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,0.5,40,153.0162)" /> + x1="64.812042" + y1="396.17004" + x2="134.81549" + y2="396.17004" + id="linearGradient3389" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2707" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,0.5,37.0625,288.59514)" /> + x1="64.812042" + y1="396.17004" + x2="134.81549" + y2="396.17004" + id="linearGradient3393" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(5.210508,8)" /> + <linearGradient + x1="64.812042" + y1="396.17004" + x2="134.81549" + y2="396.17004" + id="linearGradient3396" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(5.210508,8)" /> + <linearGradient + x1="8.2421103" + y1="444.33197" + x2="57.244511" + y2="444.33197" + id="linearGradient3404" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> <linearGradient - x1="0" - y1="22" - x2="128.68382" - y2="22" - id="linearGradient2714" - xlink:href="#linearGradient3166" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5,0,0,0.5,36,288.5)" /> + x1="81.979385" + y1="444.33197" + x2="130.9818" + y2="444.33197" + id="linearGradient3412" + xlink:href="#linearGradient3239" + gradientUnits="userSpaceOnUse" /> </defs> <path - d="M 0.5594301,0.5 L 0.49711997,486.41023 L 3.6209793,493.14297 L 8.494839,497.1072 L 15.156388,499.50288 L 128.9813,499.50288 L 135.82978,496.93866 L 141.77903,492.04729 L 144.50288,483.79171 L 144.54057,0.5 L 0.5594301,0.5 z" + d="M 0.4344301,0.5 L 0.37211997,486.41023 L 3.4959793,493.14297 L 8.369839,497.1072 L 15.031388,499.50288 L 128.8563,499.50288 L 135.70478,496.93866 L 141.65403,492.04729 L 144.37788,483.79171 L 144.41557,0.5 L 0.4344301,0.5 z" id="path23" style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> <rect width="123.5" height="0.14" x="10.691486" - y="181.35913" + y="197.35913" id="rect25" style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> <rect width="123.5" height="0.14" x="10.691486" - y="182.49942" + y="198.49942" id="rect27" style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> <rect width="123.5" height="0.14" x="10.691486" - y="183.49832" + y="199.49832" id="rect29" style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" /> <rect @@ -665,7 +303,7 @@ width="137.5" height="0.14" x="3.7153397" - y="-376.77127" + y="-384.77127" transform="scale(1,-1)" id="rect35" style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> @@ -673,7 +311,7 @@ width="137.5" height="0.14" x="3.7153397" - y="-375.43195" + y="-383.43195" transform="scale(1,-1)" id="rect37" style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> @@ -701,141 +339,117 @@ style="font-size:20px">MyBlocks</tspan> </text> <path - d="M 69.731407,52.40254 L 69.731407,52.40254 L 43.730107,67.73664 L 43.730107,67.73664 L 43.730107,70.40344 L 30.396107,70.40344 L 30.396107,67.73664 C 30.396107,67.73664 4.3948068,52.40254 4.3948068,52.40254 C 4.3948068,52.40254 37.063107,34.40164 37.063107,34.40164 C 37.063107,34.40164 69.731407,52.40254 69.731407,52.40254 z" + d="M 69.731407,74.40254 L 69.731407,74.40254 L 43.730107,89.73664 L 43.730107,89.73664 L 43.730107,92.40344 L 30.396107,92.40344 L 30.396107,89.73664 C 30.396107,89.73664 4.3948068,74.40254 4.3948068,74.40254 C 4.3948068,74.40254 37.063107,56.40164 37.063107,56.40164 C 37.063107,56.40164 69.731407,74.40254 69.731407,74.40254 z" id="path49" - style="fill:url(#linearGradient3173);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3253);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="-4" + y="18" id="text51" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="37" - y="57" + y="79" id="tspan53" - style="font-size:11px">stack1</tspan> + style="font-size:11px">action1</tspan> </text> <path - d="M 113.81428,38.40184 C 124.48148,38.40184 124.48148,38.40184 124.48148,38.40184 C 124.48148,38.40184 127.23615,40.059625 128.14833,41.06864 C 129.08003,42.099241 130.48178,45.06884 130.48178,45.06884 L 130.48178,57.73614 C 130.48178,57.73614 129.00368,60.198699 128.14833,61.06964 C 127.19525,62.040108 124.48148,63.73644 124.48148,63.73644 L 113.14758,63.73644 L 113.14758,63.73644 L 113.14758,66.40324 L 99.813583,66.40324 L 99.813583,63.73644 L 88.479683,63.73644 C 88.479683,63.73644 85.765921,62.040108 84.812833,61.06964 C 83.95749,60.198699 82.479383,57.73614 82.479383,57.73614 L 82.479383,45.06884 C 82.479383,45.06884 83.881139,42.099241 84.812833,41.06864 C 85.725013,40.059625 88.479683,38.40184 88.479683,38.40184 L 99.146883,38.40184 L 99.146883,41.73534 L 113.81428,41.73534 L 113.81428,38.40184 z" + d="M 113.81428,60.40184 C 124.48148,60.40184 124.48148,60.40184 124.48148,60.40184 C 124.48148,60.40184 127.23615,62.059625 128.14833,63.06864 C 129.08003,64.099241 130.48178,67.06884 130.48178,67.06884 L 130.48178,79.73614 C 130.48178,79.73614 129.00368,82.198699 128.14833,83.06964 C 127.19525,84.040108 124.48148,85.73644 124.48148,85.73644 L 113.14758,85.73644 L 113.14758,85.73644 L 113.14758,88.40324 L 99.813583,88.40324 L 99.813583,85.73644 L 88.479683,85.73644 C 88.479683,85.73644 85.765921,84.040108 84.812833,83.06964 C 83.95749,82.198699 82.479383,79.73614 82.479383,79.73614 L 82.479383,67.06884 C 82.479383,67.06884 83.881139,64.099241 84.812833,63.06864 C 85.725013,62.059625 88.479683,60.40184 88.479683,60.40184 L 99.146883,60.40184 L 99.146883,63.73534 L 113.81428,63.73534 L 113.81428,60.40184 z" id="path55" - style="fill:url(#linearGradient3171);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3261);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="-4" + y="18" id="text57" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="107" - y="55" + y="77" id="tspan59" - style="font-size:11px">stack1</tspan> + style="font-size:11px">action1</tspan> </text> <path - d="M 69.731407,93.66337 L 69.731407,93.66337 L 43.730107,108.99747 L 43.730107,108.99747 L 43.730107,111.66427 L 30.396107,111.66427 L 30.396107,108.99747 C 30.396107,108.99747 4.3948068,93.66337 4.3948068,93.66337 C 4.3948068,93.66337 37.063107,75.662473 37.063107,75.662473 C 37.063107,75.662473 69.731407,93.66337 69.731407,93.66337 z" + d="M 69.731407,115.66337 L 69.731407,115.66337 L 43.730107,130.99747 L 43.730107,130.99747 L 43.730107,133.66427 L 30.396107,133.66427 L 30.396107,130.99747 C 30.396107,130.99747 4.3948068,115.66337 4.3948068,115.66337 C 4.3948068,115.66337 37.063107,97.662473 37.063107,97.662473 C 37.063107,97.662473 69.731407,115.66337 69.731407,115.66337 z" id="path61" - style="fill:url(#linearGradient4520);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3269);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="-6" + y="16" id="text63" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="37" - y="98" + y="120" id="tspan65" - style="font-size:11px">stack2</tspan> + style="font-size:11px">action2</tspan> </text> <path - d="M 113.81428,79.662673 C 124.48148,79.662673 124.48148,79.662673 124.48148,79.662673 C 124.48148,79.662673 127.23615,81.320458 128.14833,82.329473 C 129.08003,83.360074 130.48178,86.32967 130.48178,86.32967 L 130.48178,98.99697 C 130.48178,98.99697 129.00368,101.45953 128.14833,102.33047 C 127.19525,103.30094 124.48148,104.99727 124.48148,104.99727 L 113.14758,104.99727 L 113.14758,104.99727 L 113.14758,107.66407 L 99.813583,107.66407 L 99.813583,104.99727 L 88.479683,104.99727 C 88.479683,104.99727 85.765921,103.30094 84.812833,102.33047 C 83.95749,101.45953 82.479383,98.99697 82.479383,98.99697 L 82.479383,86.32967 C 82.479383,86.32967 83.881139,83.360074 84.812833,82.329473 C 85.725013,81.320458 88.479683,79.662673 88.479683,79.662673 L 99.146883,79.662673 L 99.146883,82.996173 L 113.81428,82.996173 L 113.81428,79.662673 z" + d="M 113.81428,101.66267 C 124.48148,101.66267 124.48148,101.66267 124.48148,101.66267 C 124.48148,101.66267 127.23615,103.32046 128.14833,104.32947 C 129.08003,105.36007 130.48178,108.32967 130.48178,108.32967 L 130.48178,120.99697 C 130.48178,120.99697 129.00368,123.45953 128.14833,124.33047 C 127.19525,125.30094 124.48148,126.99727 124.48148,126.99727 L 113.14758,126.99727 L 113.14758,126.99727 L 113.14758,129.66407 L 99.813583,129.66407 L 99.813583,126.99727 L 88.479683,126.99727 C 88.479683,126.99727 85.765921,125.30094 84.812833,124.33047 C 83.95749,123.45953 82.479383,120.99697 82.479383,120.99697 L 82.479383,108.32967 C 82.479383,108.32967 83.881139,105.36007 84.812833,104.32947 C 85.725013,103.32046 88.479683,101.66267 88.479683,101.66267 L 99.146883,101.66267 L 99.146883,104.99617 L 113.81428,104.99617 L 113.81428,101.66267 z" id="path67" - style="fill:url(#linearGradient4521);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3277);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="-6" + y="16" id="text69" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="107" - y="98" + y="120" id="tspan71" - style="font-size:11px">stack2</tspan> + style="font-size:11px">action2</tspan> </text> - <g - transform="matrix(0.5,0,0,0.5,35,110.92612)" - id="g2737"> - <path - d="M 74.5,1 L 1.5,37.5 L 64.5,70 L 64.5,74 L 84.5,74 L 84.5,70 L 148.5,37.5 L 74.5,1 z" - id="path6722" - style="fill:url(#linearGradient2392);fill-opacity:1;stroke:#c0a000;stroke-width:4;stroke-opacity:1" /> - <g - transform="matrix(1,0,0,1.0454545,22.5,26.522727)" - id="layer1" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1.95603859;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path2478" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:3.91207719;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - </g> - <g - id="g2724"> - <path - d="M 63.5,153.97976 C 71.5,153.97976 100,153.97976 100,153.97976 C 100,153.97976 102.0659,155.22303 102.75,155.97976 C 103.44874,156.75267 104.5,158.97976 104.5,158.97976 L 104.5,168.47976 C 104.5,168.47976 103.39148,170.32658 102.75,170.97976 C 102.03522,171.70757 100,172.97976 100,172.97976 L 63.5,172.97976 L 63.5,172.97976 L 63.5,174.97976 L 53.5,174.97976 L 53.5,172.97976 L 45,172.97976 C 45,172.97976 42.96478,171.70757 42.25,170.97976 C 41.60853,170.32658 40.5,168.47976 40.5,168.47976 L 40.5,158.97976 C 40.5,158.97976 41.55126,156.75267 42.25,155.97976 C 42.9341,155.22303 45,153.97976 45,153.97976 L 53.5,153.97976 L 53.5,156.47976 L 63.5,156.47976 L 63.5,153.97976 z" - id="path2692" - style="fill:url(#linearGradient2694);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <path - d="M 48.25,158.7662 L 48.25,162.2662 L 46.25,162.2662 L 46.25,165.7662 L 48.25,165.7662 L 48.25,169.2662 L 96.75,169.2662 L 98.75,164.0162 L 96.75,158.7662 L 48.25,158.7662 z" - id="path2878" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,196.05911)" - id="g85"> - <path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - id="path87" - style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> - <path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - id="path89" - style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> - </g> <path - d="M 39.494482,190.89218 C 50.161682,190.89218 50.161682,190.89218 50.161682,190.89218 L 53.828532,193.55898 L 56.161982,197.55918 L 56.161982,220.22698 L 53.828532,224.22718 L 50.161682,226.89398 L 38.827782,226.89398 L 38.827782,226.89398 L 38.827782,229.56078 L 25.493782,229.56078 L 25.493782,226.89398 L 14.159882,226.89398 L 10.493032,224.22718 L 8.1595819,220.22698 L 8.1595819,197.55918 L 10.493032,193.55898 L 14.159882,190.89218 L 24.827082,190.89218 L 24.827082,194.22568 L 39.494482,194.22568 L 39.494482,190.89218 z" + d="M 72.25,127.42612 L 35.75,145.67612 L 67.25,161.92612 L 67.25,163.92612 L 77.25,163.92612 L 77.25,161.92612 L 109.25,145.67612 L 72.25,127.42612 z" + id="path6722" + style="fill:url(#linearGradient3285);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 78,169.5162 C 86,169.5162 100,169.5162 100,169.5162 C 100,169.5162 102.0659,170.75948 102.75,171.5162 C 103.44873,172.28911 104.5,174.5162 104.5,174.5162 L 104.5,184.0162 C 104.5,184.0162 103.39147,185.86303 102.75,186.5162 C 102.03522,187.24401 100,188.5162 100,188.5162 L 77.5,188.5162 L 77.5,188.5162 L 77.5,190.5162 L 67.5,190.5162 L 67.5,188.5162 L 45,188.5162 C 45,188.5162 42.96478,187.24401 42.25,186.5162 C 41.608525,185.86303 40.5,184.0162 40.5,184.0162 L 40.5,174.5162 C 40.5,174.5162 41.551264,172.28911 42.25,171.5162 C 42.934101,170.75948 45,169.5162 45,169.5162 L 67,169.5162 L 67,172.0162 L 78,172.0162 L 78,169.5162 z" + id="path10" + style="fill:url(#linearGradient3293);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 54.161882,216.05931 L 65.162432,216.05931 L 65.162432,220.05951 L 62.495632,220.05951 L 62.495632,218.05941 L 55.495282,218.05941" + id="path87" + style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 54.161882,234.39356 L 65.162432,234.39356 L 65.162432,230.39336 L 62.495632,230.39336 L 62.495632,232.39346 L 55.495282,232.39346" + id="path89" + style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 39.494482,206.89218 C 50.161682,206.89218 50.161682,206.89218 50.161682,206.89218 L 53.828532,209.55898 L 56.161982,213.55918 L 56.161982,236.22698 L 53.828532,240.22718 L 50.161682,242.89398 L 38.827782,242.89398 L 38.827782,242.89398 L 38.827782,245.56078 L 25.493782,245.56078 L 25.493782,242.89398 L 14.159882,242.89398 L 10.493032,240.22718 L 8.1595819,236.22698 L 8.1595819,213.55918 L 10.493032,209.55898 L 14.159882,206.89218 L 24.827082,206.89218 L 24.827082,210.22568 L 39.494482,210.22568 L 39.494482,206.89218 z" id="path91" - style="fill:url(#linearGradient3169);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3301);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="10" + y="26" id="text93" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="32" - y="208" + y="224" id="tspan95" style="font-size:11px">store in</tspan> </text> <text - y="10" + y="26" id="text97" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="32" - y="220" + y="236" id="tspan99" style="font-size:11px">box1</tspan> </text> <path - d="M 70.522547,203.55948 L 73.856047,203.55948 L 73.856047,206.22628 L 78.522947,206.22628 L 78.522947,203.55948 L 139.526,203.55948 L 139.526,216.89348 L 78.522947,216.89348 L 78.522947,214.22668 L 73.856047,214.22668 L 73.856047,216.89348 L 70.522547,216.89348 L 70.522547,203.55948 z" + d="M 70.522547,219.55948 L 73.856047,219.55948 L 73.856047,222.22628 L 78.522947,222.22628 L 78.522947,219.55948 L 139.526,219.55948 L 139.526,232.89348 L 78.522947,232.89348 L 78.522947,230.22668 L 73.856047,230.22668 L 73.856047,232.89348 L 70.522547,232.89348 L 70.522547,219.55948 z" id="path101" - style="fill:url(#linearGradient3167);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3309);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="10" + y="26" id="text103" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="106" - y="213.5" + y="229.5" id="tspan105" style="font-size:11px">box1</tspan> </text> <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,242.48628)" + transform="matrix(0.6667,0,0,0.6667,7.4928819,258.48628)" id="g107"> <path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" @@ -847,155 +461,102 @@ style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> </g> <path - d="M 39.494482,237.31936 C 50.161682,237.31936 50.161682,237.31936 50.161682,237.31936 L 53.828532,239.98616 L 56.161982,243.98636 L 56.161982,266.65416 L 53.828532,270.65436 L 50.161682,273.32116 L 38.827782,273.32116 L 38.827782,273.32116 L 38.827782,275.98796 L 25.493782,275.98796 L 25.493782,273.32116 L 14.159882,273.32116 L 10.493032,270.65436 L 8.1595819,266.65416 L 8.1595819,243.98636 L 10.493032,239.98616 L 14.159882,237.31936 L 24.827082,237.31936 L 24.827082,240.65286 L 39.494482,240.65286 L 39.494482,237.31936 z" + d="M 39.494482,253.31936 C 50.161682,253.31936 50.161682,253.31936 50.161682,253.31936 L 53.828532,255.98616 L 56.161982,259.98636 L 56.161982,282.65416 L 53.828532,286.65436 L 50.161682,289.32116 L 38.827782,289.32116 L 38.827782,289.32116 L 38.827782,291.98796 L 25.493782,291.98796 L 25.493782,289.32116 L 14.159882,289.32116 L 10.493032,286.65436 L 8.1595819,282.65416 L 8.1595819,259.98636 L 10.493032,255.98616 L 14.159882,253.31936 L 24.827082,253.31936 L 24.827082,256.65286 L 39.494482,256.65286 L 39.494482,253.31936 z" id="path113" - style="fill:url(#linearGradient3165);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3317);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="10" + y="26" id="text115" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="32" - y="255" + y="271" id="tspan117" style="font-size:11px">store in</tspan> </text> <text - y="10" + y="26" id="text119" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="32" - y="267" + y="283" id="tspan121" style="font-size:11px">box2</tspan> </text> <path - d="M 70.522547,249.98666 L 73.856047,249.98666 L 73.856047,252.65346 L 78.522947,252.65346 L 78.522947,249.98666 L 139.526,249.98666 L 139.526,263.32066 L 78.522947,263.32066 L 78.522947,260.65386 L 73.856047,260.65386 L 73.856047,263.32066 L 70.522547,263.32066 L 70.522547,249.98666 z" + d="M 70.522547,265.98666 L 73.856047,265.98666 L 73.856047,268.65346 L 78.522947,268.65346 L 78.522947,265.98666 L 139.526,265.98666 L 139.526,279.32066 L 78.522947,279.32066 L 78.522947,276.65386 L 73.856047,276.65386 L 73.856047,279.32066 L 70.522547,279.32066 L 70.522547,265.98666 z" id="path123" - style="fill:url(#linearGradient3163);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3325);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <text - y="10" + y="26" id="text125" style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="106" - y="260" + y="276" id="tspan127" style="font-size:11px">box2</tspan> </text> + <path + d="M 99.4375,303.72014 L 107.6875,303.72014 L 107.6875,306.72014 L 105.6875,306.72014 L 105.6875,305.22014 L 100.4375,305.22014" + id="path2493" + style="fill:#e0e000;fill-opacity:1;stroke:#a08000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 99.4375,317.47014 L 107.6875,317.47014 L 107.6875,314.47014 L 105.6875,314.47014 L 105.6875,315.97014 L 100.4375,315.97014" + id="path2495" + style="fill:#e0e000;fill-opacity:1;stroke:#908000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 75.0625,301.09514 C 83.0625,301.09514 97.0625,301.09514 97.0625,301.09514 C 97.0625,301.09514 99.1284,302.33842 99.8125,303.09514 C 100.51123,303.86805 101.5625,306.09514 101.5625,306.09514 L 101.5625,315.59514 C 101.5625,315.59514 100.45397,317.44197 99.8125,318.09514 C 99.09772,318.82295 97.0625,320.09514 97.0625,320.09514 L 74.5625,320.09514 L 74.5625,320.09514 L 74.5625,322.09514 L 64.5625,322.09514 L 64.5625,320.09514 L 42.0625,320.09514 C 42.0625,320.09514 40.02728,318.82295 39.3125,318.09514 C 38.671025,317.44197 37.5625,315.59514 37.5625,315.59514 L 37.5625,306.09514 C 37.5625,306.09514 38.613764,303.86805 39.3125,303.09514 C 39.996601,302.33842 42.0625,301.09514 42.0625,301.09514 L 64.0625,301.09514 L 64.0625,303.59514 L 75.0625,303.59514 L 75.0625,301.09514 z" + id="path3067" + style="fill:url(#linearGradient3333);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g - id="g2716"> - <g - transform="matrix(0.5,0,0,0.5,67.001839,311.18337)" - id="g2533"> - <path - d="M 64.871323,-38.92647 L 81.371323,-38.92647 L 81.371323,-32.92647 L 77.371323,-32.92647 L 77.371323,-35.92647 L 66.871323,-35.92647" - id="path2493" - style="fill:#e0e000;fill-opacity:1;stroke:#a08000;stroke-width:3;stroke-opacity:1" /> - <path - d="M 64.871323,-11.42647 L 81.371323,-11.42647 L 81.371323,-17.42647 L 77.371323,-17.42647 L 77.371323,-14.42647 L 66.871323,-14.42647" - id="path2495" - style="fill:#e0e000;fill-opacity:1;stroke:#908000;stroke-width:3;stroke-opacity:1" /> - </g> - <path - d="M 59.5,289 C 67.5,289 96,289 96,289 C 96,289 98.0659,290.24327 98.75,291 C 99.44874,291.77291 100.5,294 100.5,294 L 100.5,303.5 C 100.5,303.5 99.39148,305.34682 98.75,306 C 98.03522,306.72781 96,308 96,308 L 59.5,308 L 59.5,308 L 59.5,310 L 49.5,310 L 49.5,308 L 41,308 C 41,308 38.96478,306.72781 38.25,306 C 37.60853,305.34682 36.5,303.5 36.5,303.5 L 36.5,294 C 36.5,294 37.55126,291.77291 38.25,291 C 38.9341,290.24327 41,289 41,289 L 49.5,289 L 49.5,291.5 L 59.5,291.5 L 59.5,289 z" - id="path2712" - style="fill:url(#linearGradient2714);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,43.3125,294.34514)" - id="g3069" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path3071" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:4;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - </g> - <g - transform="matrix(0.5,0,0,0.5,37,321.95951)" - id="g3156"> - <path - d="M 13,1 L 13,10 L 6,10 L 6,6 L 1,6 L 1,25 L 6,25 L 6,21 L 13,21 L 13,31 L 129,31 L 129,26 L 139,26 L 139,6 L 129,6 L 129,1 L 13,1 z" - id="path11" - style="fill:url(#linearGradient2501);fill-opacity:1;stroke:#c0a000;stroke-width:4;stroke-opacity:1" /> - <g - transform="translate(19.5,5.5)" - id="g3159" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path3161" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:4;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - </g> - <g - transform="translate(-1.88425e-2,0)" - id="g149"> - <path - d="M 40.693845,353.55201 L 40.693845,358.24201 L 38.013845,358.24201 L 38.013845,361.59201 L 40.693845,361.59201 L 40.693845,366.28201 L 104.34384,366.28201 L 107.02384,359.91701 L 104.34384,353.55201 L 40.693845,353.55201 z" - id="path151" - style="fill:url(#linearGradient4150);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - <text - id="text153" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="72.5" - y="364" - id="tspan155" - style="font-size:11px">name</tspan> - </text> - </g> - <g - transform="translate(-1.571244,0.74717)" - id="g157"> - <g - transform="matrix(0.6667,0,0,0.6667,9.706356,385.54113)" - id="g159"> - <path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - id="path161" - style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> - <path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - id="path163" - style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> - </g> + transform="matrix(0.6667,0,0,0.6667,8.135112,390.2883)" + id="g159" + style="fill:#f0e000;fill-opacity:1"> <path - d="M 41.648251,385.42217 C 52.315451,385.42217 52.315451,385.42217 52.315451,385.42217 C 52.315451,385.42217 55.070121,387.07995 55.982301,388.08897 C 56.914001,389.11957 58.315751,392.08917 58.315751,392.08917 L 58.315751,404.75647 C 58.315751,404.75647 56.837651,407.21903 55.982301,408.08997 C 55.029221,409.06044 52.315451,410.75677 52.315451,410.75677 L 40.981551,410.75677 L 40.981551,410.75677 L 40.981551,413.42357 L 27.647554,413.42357 L 27.647554,410.75677 L 16.313654,410.75677 C 16.313654,410.75677 13.599892,409.06044 12.646804,408.08997 C 11.791461,407.21903 10.313354,404.75647 10.313354,404.75647 L 10.313354,392.08917 C 10.313354,392.08917 11.71511,389.11957 12.646804,388.08897 C 13.558984,387.07995 16.313654,385.42217 16.313654,385.42217 L 26.980854,385.42217 L 26.980854,388.75567 L 41.648251,388.75567 L 41.648251,385.42217 z" - id="path165" - style="fill:url(#linearGradient2600);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> - <text - id="text167" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="34" - y="401" - id="tspan169" - style="font-size:11px">push</tspan> - </text> - </g> - <g - transform="translate(5.210508,4)" - id="g171"> + d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" + id="path161" + style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> <path - d="M 65.312039,389.50304 L 68.645539,389.50304 L 68.645539,392.16984 L 73.312439,392.16984 L 73.312439,389.50304 L 134.31549,389.50304 L 134.31549,402.83704 L 73.312439,402.83704 L 73.312439,400.17024 L 68.645539,400.17024 L 68.645539,402.83704 L 65.312039,402.83704 L 65.312039,389.50304 z" - id="path173" - style="fill:url(#linearGradient2604);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> - <text - id="text175" - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> - <tspan - x="100" - y="399" - id="tspan177" - style="font-size:11px">pop</tspan> - </text> + d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" + id="path163" + style="fill:#f0e000;fill-opacity:1;stroke:#a08000;stroke-width:1.5;stroke-opacity:1" /> </g> <path + d="M 40.077007,390.16934 C 50.744207,390.16934 50.744207,390.16934 50.744207,390.16934 C 50.744207,390.16934 53.498877,391.82712 54.411057,392.83614 C 55.342757,393.86674 56.744507,396.83634 56.744507,396.83634 L 56.744507,409.50364 C 56.744507,409.50364 55.266407,411.9662 54.411057,412.83714 C 53.457977,413.80761 50.744207,415.50394 50.744207,415.50394 L 39.410307,415.50394 L 39.410307,415.50394 L 39.410307,418.17074 L 26.07631,418.17074 L 26.07631,415.50394 L 14.74241,415.50394 C 14.74241,415.50394 12.028648,413.80761 11.07556,412.83714 C 10.220217,411.9662 8.74211,409.50364 8.74211,409.50364 L 8.74211,396.83634 C 8.74211,396.83634 10.143866,393.86674 11.07556,392.83614 C 11.98774,391.82712 14.74241,390.16934 14.74241,390.16934 L 25.40961,390.16934 L 25.40961,393.50284 L 40.077007,393.50284 L 40.077007,390.16934 z" + id="path165" + style="fill:url(#linearGradient3374);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + <text + x="-1.571244" + y="4.74717" + id="text167" + style="font-size:12px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="32.428757" + y="405.74716" + id="tspan169" + style="font-size:11px;fill:#000000;fill-opacity:1">push</tspan> + </text> + <path + d="M 70.522547,397.50304 L 73.856047,397.50304 L 73.856047,400.16984 L 78.522947,400.16984 L 78.522947,397.50304 L 139.526,397.50304 L 139.526,410.83704 L 78.522947,410.83704 L 78.522947,408.17024 L 73.856047,408.17024 L 73.856047,410.83704 L 70.522547,410.83704 L 70.522547,397.50304 z" + id="path173" + style="fill:url(#linearGradient3396);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + <text + x="5.2105079" + y="8" + id="text175" + style="font-size:12px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="105.21051" + y="407" + id="tspan177" + style="font-size:11px;fill:#000000;fill-opacity:1">pop</tspan> + </text> + <path d="M 40.07701,424.99768 C 50.74421,424.99768 50.74421,424.99768 50.74421,424.99768 L 54.41106,427.66448 L 56.74451,431.66468 L 56.74451,454.33248 L 54.41106,458.33268 L 50.74421,460.99948 L 39.41031,460.99948 L 39.41031,460.99948 L 39.41031,463.66628 L 26.07631,463.66628 L 26.07631,460.99948 L 14.74241,460.99948 L 11.07556,458.33268 L 8.74211,454.33248 L 8.74211,431.66468 L 11.07556,427.66448 L 14.74241,424.99768 L 25.40961,424.99768 L 25.40961,428.33118 L 40.07701,428.33118 L 40.07701,424.99768 z" id="path179" - style="fill:url(#linearGradient2484);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3404);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <g transform="translate(-0.5838651,1.9663391)" id="g181"> @@ -1021,7 +582,7 @@ <path d="M 113.81429,424.99768 C 124.48149,424.99768 124.48149,424.99768 124.48149,424.99768 L 128.14834,427.66448 L 130.48179,431.66468 L 130.48179,454.33248 L 128.14834,458.33268 L 124.48149,460.99948 L 113.14759,460.99948 L 113.14759,460.99948 L 113.14759,463.66628 L 99.813592,463.66628 L 99.813592,460.99948 L 88.479683,460.99948 L 84.812833,458.33268 L 82.479383,454.33248 L 82.479383,431.66468 L 84.812833,427.66448 L 88.479683,424.99768 L 99.146892,424.99768 L 99.146892,428.33118 L 113.81429,428.33118 L 113.81429,424.99768 z" id="path191" - style="fill:url(#linearGradient2488);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> + style="fill:url(#linearGradient3412);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-opacity:1" /> <g transform="translate(1.1422305,0)" id="g193"> @@ -1044,4 +605,52 @@ style="font-size:11px">heap</tspan> </text> </g> + <path + d="M 43.524995,306.8 L 46.024995,306.8 L 46.024995,308.8 L 49.524995,308.8 L 49.524995,306.8 L 95.275005,306.8 L 95.275005,316.8 L 49.524995,316.8 L 49.524995,314.8 L 46.024995,314.8 L 46.024995,316.8 L 43.524995,316.8 L 43.524995,306.8 z" + id="path3478" + style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 46.749995,175 L 49.249995,175 L 49.249995,177 L 52.749995,177 L 52.749995,175 L 98.5,175 L 98.5,185 L 52.749995,185 L 52.749995,183 L 49.249995,183 L 49.249995,185 L 46.749995,185 L 46.749995,175 z" + id="path3491" + style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 46.124998,140.375 L 48.624998,140.375 L 48.624998,142.375 L 52.124998,142.375 L 52.124998,140.375 L 97.875,140.375 L 97.875,150.375 L 52.124998,150.375 L 52.124998,148.375 L 48.624998,148.375 L 48.624998,150.375 L 46.124998,150.375 L 46.124998,140.375 z" + id="path3499" + style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 37.995002,361.21701 L 41.345002,361.21701 L 41.345002,363.89701 L 46.035002,363.89701 L 46.035002,361.21701 L 107.34001,361.21701 L 107.34001,374.61701 L 46.035002,374.61701 L 46.035002,371.93701 L 41.345002,371.93701 L 41.345002,374.61701 L 37.995002,374.61701 L 37.995002,361.21701 z" + id="path2709" + style="fill:url(#linearGradient3349);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="-0.0188425" + y="8" + id="text153" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72.481155" + y="372" + id="tspan155" + style="font-size:11px">name</tspan> + </text> + <path + d="M 42.749422,333.875 L 42.749422,338.375 L 39.374422,338.375 L 39.374422,336.375 L 36.749422,336.375 L 36.749422,346.375 L 39.374422,346.375 L 39.374422,344.375 L 42.749422,344.375 L 42.749422,349 L 99.874422,348.875 L 99.874422,333.875 L 42.749422,333.875 z" + id="path2718" + style="fill:url(#linearGradient3341);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 45.874422,336.375 L 48.374422,336.375 L 48.374422,338.375 L 51.874422,338.375 L 51.874422,336.375 L 97.624427,336.375 L 97.624427,346.375 L 51.874422,346.375 L 51.874422,344.375 L 48.374422,344.375 L 48.374422,346.375 L 45.874422,346.375 L 45.874422,336.375 z" + id="path2720" + style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 97,45.558706 C 97.09921,52.349516 77.5,58.058706 77.5,58.058706 L 77.5,58.058706 L 77.5,60.058706 L 67.5,60.058706 L 67.5,58.058706 C 67.5,58.058706 47.90079,52.349516 48,45.558706 C 48.12259,37.167636 64.10804,33.058706 72.5,33.058706 C 80.89196,33.058706 96.87741,37.167636 97,45.558706 z" + id="path2715" + style="fill:url(#linearGradient3245);fill-opacity:1;stroke:#c0a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + id="text87" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72" + y="49" + id="tspan89" + style="font-size:11px">start</tspan> + </text> </svg> diff --git a/images/en/myblocks/myblocksmask.svg b/images/en/myblocks/myblocksmask.svg index 9a393fe..90fbfb6 100644 --- a/images/en/myblocks/myblocksmask.svg +++ b/images/en/myblocks/myblocksmask.svg @@ -1,167 +1,183 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns="http://www.w3.org/2000/svg" +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg:svg + xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" height="500" - version="1.0"> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" + id="svg2"> + <svg:rect width="143" height="440" x="1" - y="30" /> - <rect - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" + y="30" + id="rect4" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> + <svg:rect width="145" height="29" x="0" - y="0" /> - <path - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" - d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" /> - <path - d="M 69.731407,52.40254 L 69.731407,52.40254 L 43.730107,67.73664 L 43.730107,67.73664 L 43.730107,70.40344 L 30.396107,70.40344 L 30.396107,67.73664 C 30.396107,67.73664 4.3948068,52.40254 4.3948068,52.40254 C 4.3948068,52.40254 37.063107,34.40164 37.063107,34.40164 C 37.063107,34.40164 69.731407,52.40254 69.731407,52.40254 z" + y="0" + id="rect6" + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" + id="path8" + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> + <svg:path + d="M 69.731407,72.40254 L 69.731407,72.40254 L 43.730107,87.73664 L 43.730107,87.73664 L 43.730107,90.40344 L 30.396107,90.40344 L 30.396107,87.73664 C 30.396107,87.73664 4.3948068,72.40254 4.3948068,72.40254 C 4.3948068,72.40254 37.063107,54.40164 37.063107,54.40164 C 37.063107,54.40164 69.731407,72.40254 69.731407,72.40254 z" id="path49" - style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> - <path - d="M 113.81428,38.40184 C 124.48148,38.40184 124.48148,38.40184 124.48148,38.40184 C 124.48148,38.40184 127.23615,40.059625 128.14833,41.06864 C 129.08003,42.099241 130.48178,45.06884 130.48178,45.06884 L 130.48178,57.73614 C 130.48178,57.73614 129.00368,60.198699 128.14833,61.06964 C 127.19525,62.040108 124.48148,63.73644 124.48148,63.73644 L 113.14758,63.73644 L 113.14758,63.73644 L 113.14758,66.40324 L 99.813583,66.40324 L 99.813583,63.73644 L 88.479683,63.73644 C 88.479683,63.73644 85.765921,62.040108 84.812833,61.06964 C 83.95749,60.198699 82.479383,57.73614 82.479383,57.73614 L 82.479383,45.06884 C 82.479383,45.06884 83.881139,42.099241 84.812833,41.06864 C 85.725013,40.059625 88.479683,38.40184 88.479683,38.40184 L 99.146883,38.40184 L 99.146883,41.73534 L 113.81428,41.73534 L 113.81428,38.40184 z" + style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 113.81428,58.40184 C 124.48148,58.40184 124.48148,58.40184 124.48148,58.40184 C 124.48148,58.40184 127.23615,60.059625 128.14833,61.06864 C 129.08003,62.099241 130.48178,65.06884 130.48178,65.06884 L 130.48178,77.73614 C 130.48178,77.73614 129.00368,80.198699 128.14833,81.06964 C 127.19525,82.040108 124.48148,83.73644 124.48148,83.73644 L 113.14758,83.73644 L 113.14758,83.73644 L 113.14758,86.40324 L 99.813583,86.40324 L 99.813583,83.73644 L 88.479683,83.73644 C 88.479683,83.73644 85.765921,82.040108 84.812833,81.06964 C 83.95749,80.198699 82.479383,77.73614 82.479383,77.73614 L 82.479383,65.06884 C 82.479383,65.06884 83.881139,62.099241 84.812833,61.06864 C 85.725013,60.059625 88.479683,58.40184 88.479683,58.40184 L 99.146883,58.40184 L 99.146883,61.73534 L 113.81428,61.73534 L 113.81428,58.40184 z" id="path55" - style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" /> - <path - d="M 69.731407,93.66337 L 69.731407,93.66337 L 43.730107,108.99747 L 43.730107,108.99747 L 43.730107,111.66427 L 30.396107,111.66427 L 30.396107,108.99747 C 30.396107,108.99747 4.3948068,93.66337 4.3948068,93.66337 C 4.3948068,93.66337 37.063107,75.662473 37.063107,75.662473 C 37.063107,75.662473 69.731407,93.66337 69.731407,93.66337 z" + style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 69.731407,113.66337 L 69.731407,113.66337 L 43.730107,128.99747 L 43.730107,128.99747 L 43.730107,131.66427 L 30.396107,131.66427 L 30.396107,128.99747 C 30.396107,128.99747 4.3948068,113.66337 4.3948068,113.66337 C 4.3948068,113.66337 37.063107,95.662473 37.063107,95.662473 C 37.063107,95.662473 69.731407,113.66337 69.731407,113.66337 z" id="path61" - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> - <path - d="M 113.81428,79.662673 C 124.48148,79.662673 124.48148,79.662673 124.48148,79.662673 C 124.48148,79.662673 127.23615,81.320458 128.14833,82.329473 C 129.08003,83.360074 130.48178,86.32967 130.48178,86.32967 L 130.48178,98.99697 C 130.48178,98.99697 129.00368,101.45953 128.14833,102.33047 C 127.19525,103.30094 124.48148,104.99727 124.48148,104.99727 L 113.14758,104.99727 L 113.14758,104.99727 L 113.14758,107.66407 L 99.813583,107.66407 L 99.813583,104.99727 L 88.479683,104.99727 C 88.479683,104.99727 85.765921,103.30094 84.812833,102.33047 C 83.95749,101.45953 82.479383,98.99697 82.479383,98.99697 L 82.479383,86.32967 C 82.479383,86.32967 83.881139,83.360074 84.812833,82.329473 C 85.725013,81.320458 88.479683,79.662673 88.479683,79.662673 L 99.146883,79.662673 L 99.146883,82.996173 L 113.81428,82.996173 L 113.81428,79.662673 z" + style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 113.81428,99.662673 C 124.48148,99.662673 124.48148,99.662673 124.48148,99.662673 C 124.48148,99.662673 127.23615,101.32046 128.14833,102.32947 C 129.08003,103.36007 130.48178,106.32967 130.48178,106.32967 L 130.48178,118.99697 C 130.48178,118.99697 129.00368,121.45953 128.14833,122.33047 C 127.19525,123.30094 124.48148,124.99727 124.48148,124.99727 L 113.14758,124.99727 L 113.14758,124.99727 L 113.14758,127.66407 L 99.813583,127.66407 L 99.813583,124.99727 L 88.479683,124.99727 C 88.479683,124.99727 85.765921,123.30094 84.812833,122.33047 C 83.95749,121.45953 82.479383,118.99697 82.479383,118.99697 L 82.479383,106.32967 C 82.479383,106.32967 83.881139,103.36007 84.812833,102.32947 C 85.725013,101.32046 88.479683,99.662673 88.479683,99.662673 L 99.146883,99.662673 L 99.146883,102.99617 L 113.81428,102.99617 L 113.81428,99.662673 z" id="path67" - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,35,110.92612)" - id="g2737"> - <path + style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:g + transform="matrix(0.5,0,0,0.5,35,124.92612)" + id="g2737" + style="fill:#383838;fill-opacity:1"> + <svg:path d="M 74.5,1 L 1.5,37.5 L 64.5,70 L 64.5,74 L 84.5,74 L 84.5,70 L 148.5,37.5 L 74.5,1 z" id="path6722" - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.5,0,0,0.5,40,153.0162)" - id="g2873"> - <path + style="fill:#383838;fill-opacity:1;stroke:#303030;stroke-width:4;stroke-opacity:1" /> + </svg:g> + <svg:g + transform="matrix(0.5,0,0,0.5,40,167.0162)" + id="g2873" + style="fill:#404040;fill-opacity:1;stroke:none"> + <svg:path d="M 76,1 C 92,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 75,39 L 75,39 L 75,43 L 55,43 L 55,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 54,1 L 54,6 L 76,6 L 76,1 z" id="path10" - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,196.05911)" + style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> + </svg:g> + <svg:g + transform="matrix(0.6667,0,0,0.6667,7.4928819,212.05911)" id="g85"> - <path + <svg:path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" id="path87" style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1.5;stroke-opacity:1" /> - <path + <svg:path d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" id="path89" style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1.5;stroke-opacity:1" /> - </g> - <path - d="M 39.494482,190.89218 C 50.161682,190.89218 50.161682,190.89218 50.161682,190.89218 L 53.828532,193.55898 L 56.161982,197.55918 L 56.161982,220.22698 L 53.828532,224.22718 L 50.161682,226.89398 L 38.827782,226.89398 L 38.827782,226.89398 L 38.827782,229.56078 L 25.493782,229.56078 L 25.493782,226.89398 L 14.159882,226.89398 L 10.493032,224.22718 L 8.1595819,220.22698 L 8.1595819,197.55918 L 10.493032,193.55898 L 14.159882,190.89218 L 24.827082,190.89218 L 24.827082,194.22568 L 39.494482,194.22568 L 39.494482,190.89218 z" + </svg:g> + <svg:path + d="M 39.494482,206.89218 C 50.161682,206.89218 50.161682,206.89218 50.161682,206.89218 L 53.828532,209.55898 L 56.161982,213.55918 L 56.161982,236.22698 L 53.828532,240.22718 L 50.161682,242.89398 L 38.827782,242.89398 L 38.827782,242.89398 L 38.827782,245.56078 L 25.493782,245.56078 L 25.493782,242.89398 L 14.159882,242.89398 L 10.493032,240.22718 L 8.1595819,236.22698 L 8.1595819,213.55918 L 10.493032,209.55898 L 14.159882,206.89218 L 24.827082,206.89218 L 24.827082,210.22568 L 39.494482,210.22568 L 39.494482,206.89218 z" id="path91" - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> - <path - d="M 70.522547,203.55948 L 73.856047,203.55948 L 73.856047,206.22628 L 78.522947,206.22628 L 78.522947,203.55948 L 139.526,203.55948 L 139.526,216.89348 L 78.522947,216.89348 L 78.522947,214.22668 L 73.856047,214.22668 L 73.856047,216.89348 L 70.522547,216.89348 L 70.522547,203.55948 z" + style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 70.522547,219.55948 L 73.856047,219.55948 L 73.856047,222.22628 L 78.522947,222.22628 L 78.522947,219.55948 L 139.526,219.55948 L 139.526,232.89348 L 78.522947,232.89348 L 78.522947,230.22668 L 73.856047,230.22668 L 73.856047,232.89348 L 70.522547,232.89348 L 70.522547,219.55948 z" id="path101" - style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.6667,0,0,0.6667,7.4928819,242.48628)" + style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:g + transform="matrix(0.6667,0,0,0.6667,7.4928819,258.48628)" id="g107"> - <path + <svg:path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" id="path109" style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1.5;stroke-opacity:1" /> - <path + <svg:path d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" id="path111" style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1.5;stroke-opacity:1" /> - </g> - <path - d="M 39.494482,237.31936 C 50.161682,237.31936 50.161682,237.31936 50.161682,237.31936 L 53.828532,239.98616 L 56.161982,243.98636 L 56.161982,266.65416 L 53.828532,270.65436 L 50.161682,273.32116 L 38.827782,273.32116 L 38.827782,273.32116 L 38.827782,275.98796 L 25.493782,275.98796 L 25.493782,273.32116 L 14.159882,273.32116 L 10.493032,270.65436 L 8.1595819,266.65416 L 8.1595819,243.98636 L 10.493032,239.98616 L 14.159882,237.31936 L 24.827082,237.31936 L 24.827082,240.65286 L 39.494482,240.65286 L 39.494482,237.31936 z" + </svg:g> + <svg:path + d="M 39.494482,253.31936 C 50.161682,253.31936 50.161682,253.31936 50.161682,253.31936 L 53.828532,255.98616 L 56.161982,259.98636 L 56.161982,282.65416 L 53.828532,286.65436 L 50.161682,289.32116 L 38.827782,289.32116 L 38.827782,289.32116 L 38.827782,291.98796 L 25.493782,291.98796 L 25.493782,289.32116 L 14.159882,289.32116 L 10.493032,286.65436 L 8.1595819,282.65416 L 8.1595819,259.98636 L 10.493032,255.98616 L 14.159882,253.31936 L 24.827082,253.31936 L 24.827082,256.65286 L 39.494482,256.65286 L 39.494482,253.31936 z" id="path113" - style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" /> - <path - d="M 70.522547,249.98666 L 73.856047,249.98666 L 73.856047,252.65346 L 78.522947,252.65346 L 78.522947,249.98666 L 139.526,249.98666 L 139.526,263.32066 L 78.522947,263.32066 L 78.522947,260.65386 L 73.856047,260.65386 L 73.856047,263.32066 L 70.522547,263.32066 L 70.522547,249.98666 z" + style="fill:#585858;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 70.522547,265.98666 L 73.856047,265.98666 L 73.856047,268.65346 L 78.522947,268.65346 L 78.522947,265.98666 L 139.526,265.98666 L 139.526,279.32066 L 78.522947,279.32066 L 78.522947,276.65386 L 73.856047,276.65386 L 73.856047,279.32066 L 70.522547,279.32066 L 70.522547,265.98666 z" id="path123" - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" /> - <g - transform="matrix(0.5,0,0,0.5,37.0625,288.59514)" - id="g3062"> - <g + style="fill:#606060;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:g + transform="matrix(0.5,0,0,0.5,37.0625,302.59514)" + id="g3062" + style="fill:#686868;fill-opacity:1;stroke:none"> + <svg:g transform="translate(59.878677,45.17647)" - id="g2533"> - <path + id="g2533" + style="fill:#686868;fill-opacity:1;stroke:none"> + <svg:path d="M 64.871323,-38.92647 L 81.371323,-38.92647 L 81.371323,-32.92647 L 77.371323,-32.92647 L 77.371323,-35.92647 L 66.871323,-35.92647" id="path2493" - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:3;stroke-opacity:1" /> - <path + style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:3;stroke-opacity:1" /> + <svg:path d="M 64.871323,-11.42647 L 81.371323,-11.42647 L 81.371323,-17.42647 L 77.371323,-17.42647 L 77.371323,-14.42647 L 66.871323,-14.42647" id="path2495" - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:3;stroke-opacity:1" /> - </g> - <path + style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:3;stroke-opacity:1" /> + </svg:g> + <svg:path d="M 76,1 C 92,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 75,39 L 75,39 L 75,43 L 55,43 L 55,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 54,1 L 54,6 L 76,6 L 76,1 z" id="path3067" - style="fill:#606060;fill-opacity:1;stroke:#606060;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.5,0,0,0.5,40,321.95951)" - id="g3156"> - <path + style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> + </svg:g> + <svg:g + transform="matrix(0.5,0,0,0.5,40,333.95951)" + id="g3156" + style="fill:#707070;fill-opacity:1;stroke:none"> + <svg:path d="M 13,1 L 13,10 L 6,10 L 6,6 L 1,6 L 1,25 L 6,25 L 6,21 L 13,21 L 13,31 L 129,31 L 129,1 L 13,1 z" id="path11" - style="fill:#686868;fill-opacity:1;stroke:#686868;stroke-width:4;stroke-opacity:1" /> - </g> - <g - transform="translate(-1.88425e-2,0)" - id="g149"> - <path + style="fill:#707070;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> + </svg:g> + <svg:g + transform="translate(-1.88425e-2,8)" + id="g149" + style="fill:#787878;fill-opacity:1;stroke:none"> + <svg:path d="M 40.693845,353.55201 L 40.693845,358.24201 L 38.013845,358.24201 L 38.013845,361.59201 L 40.693845,361.59201 L 40.693845,366.28201 L 104.34384,366.28201 L 107.02384,359.91701 L 104.34384,353.55201 L 40.693845,353.55201 z" id="path151" - style="fill:#707070;fill-opacity:1;fill-rule:nonzero;stroke:#707070;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> - <g - transform="translate(-1.571244,0.74717)" + style="fill:#787878;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </svg:g> + <svg:g + transform="translate(-1.571244,4.74717)" id="g157"> - <g + <svg:g transform="matrix(0.6667,0,0,0.6667,9.706356,385.54113)" id="g159"> - <path + <svg:path d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" id="path161" style="fill:#787878;fill-opacity:1;stroke:#787878;stroke-width:1.5;stroke-opacity:1" /> - <path + <svg:path d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" id="path163" style="fill:#787878;fill-opacity:1;stroke:#787878;stroke-width:1.5;stroke-opacity:1" /> - </g> - </g> - <path - d="M 41.648251,385.42217 C 52.315451,385.42217 52.315451,385.42217 52.315451,385.42217 C 52.315451,385.42217 55.070121,387.07995 55.982301,388.08897 C 56.914001,389.11957 58.315751,392.08917 58.315751,392.08917 L 58.315751,404.75647 C 58.315751,404.75647 56.837651,407.21903 55.982301,408.08997 C 55.029221,409.06044 52.315451,410.75677 52.315451,410.75677 L 40.981551,410.75677 L 40.981551,410.75677 L 40.981551,413.42357 L 27.647554,413.42357 L 27.647554,410.75677 L 16.313654,410.75677 C 16.313654,410.75677 13.599892,409.06044 12.646804,408.08997 C 11.791461,407.21903 10.313354,404.75647 10.313354,404.75647 L 10.313354,392.08917 C 10.313354,392.08917 11.71511,389.11957 12.646804,388.08897 C 13.558984,387.07995 16.313654,385.42217 16.313654,385.42217 L 26.980854,385.42217 L 26.980854,388.75567 L 41.648251,388.75567 L 41.648251,385.42217 z" - id="path165" - style="fill:#787878;fill-opacity:1;stroke:#787878;stroke-width:1;stroke-opacity:1" /> - <g - transform="translate(5.210508,4)" - id="g171"> - <path + </svg:g> + </svg:g> + <svg:path + d="M 41.648251,389.42217 C 52.315451,389.42217 52.315451,389.42217 52.315451,389.42217 C 52.315451,389.42217 55.070121,391.07995 55.982301,392.08897 C 56.914001,393.11957 58.315751,396.08917 58.315751,396.08917 L 58.315751,408.75647 C 58.315751,408.75647 56.837651,411.21903 55.982301,412.08997 C 55.029221,413.06044 52.315451,414.75677 52.315451,414.75677 L 40.981551,414.75677 L 40.981551,414.75677 L 40.981551,417.42357 L 27.647554,417.42357 L 27.647554,414.75677 L 16.313654,414.75677 C 16.313654,414.75677 13.599892,413.06044 12.646804,412.08997 C 11.791461,411.21903 10.313354,408.75647 10.313354,408.75647 L 10.313354,396.08917 C 10.313354,396.08917 11.71511,393.11957 12.646804,392.08897 C 13.558984,391.07995 16.313654,389.42217 16.313654,389.42217 L 26.980854,389.42217 L 26.980854,392.75567 L 41.648251,392.75567 L 41.648251,389.42217 z" + id="path165" + style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:g + transform="translate(5.210508,8)" + id="g171" + style="fill:#888888;fill-opacity:1;stroke:none"> + <svg:path d="M 65.312039,389.50304 L 68.645539,389.50304 L 68.645539,392.16984 L 73.312439,392.16984 L 73.312439,389.50304 L 134.31549,389.50304 L 134.31549,402.83704 L 73.312439,402.83704 L 73.312439,400.17024 L 68.645539,400.17024 L 68.645539,402.83704 L 65.312039,402.83704 L 65.312039,389.50304 z" id="path173" - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> - </g> - <path + style="fill:#888888;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + </svg:g> + <svg:path d="M 40.07701,424.99768 C 50.74421,424.99768 50.74421,424.99768 50.74421,424.99768 L 54.41106,427.66448 L 56.74451,431.66468 L 56.74451,454.33248 L 54.41106,458.33268 L 50.74421,460.99948 L 39.41031,460.99948 L 39.41031,460.99948 L 39.41031,463.66628 L 26.07631,463.66628 L 26.07631,460.99948 L 14.74241,460.99948 L 11.07556,458.33268 L 8.74211,454.33248 L 8.74211,431.66468 L 11.07556,427.66448 L 14.74241,424.99768 L 25.40961,424.99768 L 25.40961,428.33118 L 40.07701,428.33118 L 40.07701,424.99768 z" id="path179" - style="fill:#888888;fill-opacity:1;stroke:#888888;stroke-width:1;stroke-opacity:1" /> - <path + style="fill:#909090;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path d="M 113.81429,424.99768 C 124.48149,424.99768 124.48149,424.99768 124.48149,424.99768 L 128.14834,427.66448 L 130.48179,431.66468 L 130.48179,454.33248 L 128.14834,458.33268 L 124.48149,460.99948 L 113.14759,460.99948 L 113.14759,460.99948 L 113.14759,463.66628 L 99.813592,463.66628 L 99.813592,460.99948 L 88.479683,460.99948 L 84.812833,458.33268 L 82.479383,454.33248 L 82.479383,431.66468 L 84.812833,427.66448 L 88.479683,424.99768 L 99.146892,424.99768 L 99.146892,428.33118 L 113.81429,428.33118 L 113.81429,424.99768 z" id="path191" - style="fill:#909090;fill-opacity:1;stroke:#909090;stroke-width:1;stroke-opacity:1" /> -</svg> + style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <svg:path + d="M 97,45.5 C 97.09921,52.29082 77.5,58 77.5,58 L 77.5,58 L 77.5,60 L 67.5,60 L 67.5,58 C 67.5,58 47.90079,52.29082 48,45.5 C 48.12259,37.10894 64.10804,33 72.5,33 C 80.89196,33 96.87741,37.10894 97,45.5 z" + id="path2528" + style="fill:#101010;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> +</svg:svg> diff --git a/images/en/myblocks/stack.svg b/images/en/myblocks/stack.svg index c88e10c..1b4f24c 100644 --- a/images/en/myblocks/stack.svg +++ b/images/en/myblocks/stack.svg @@ -112,18 +112,135 @@ id="linearGradient2608" xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2492"> + <stop + id="stop2494" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2496" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2517" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2515" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2513" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2507"> + <stop + id="stop2509" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop2511" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2505" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2503" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2497"> + <stop + id="stop2499" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2501" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2535" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2540" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2544" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(21.338235,-30.851103)" /> </defs> <path d="M 47,1 C 63,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 27,1 L 27,6 L 47,6 L 47,1 z" id="path10" style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <g - transform="translate(12.5,11.5)" - id="layer1" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path2478" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> + <path + d="M 13,12 L 18,12 L 18,16 L 24.999999,16 L 24.999999,12 L 116.50002,12 L 116.50002,32 L 24.999999,32 L 24.999999,28 L 18,28 L 18,32 L 13,32 L 13,12 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </svg> diff --git a/images/en/myblocks/stack1.svg b/images/en/myblocks/stack1.svg index f3d31c0..6755ad9 100644 --- a/images/en/myblocks/stack1.svg +++ b/images/en/myblocks/stack1.svg @@ -29,29 +29,11 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan x="37" y="26" - style="font-size:18px;">stack1</tspan> + style="font-size:18px;">action1</tspan> </text> </svg> diff --git a/images/en/myblocks/stack2.svg b/images/en/myblocks/stack2.svg index 3912ad6..04ac380 100644 --- a/images/en/myblocks/stack2.svg +++ b/images/en/myblocks/stack2.svg @@ -29,29 +29,11 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan x="37" y="26" - style="font-size:18px;">stack2</tspan> + style="font-size:18px;">action2</tspan> </text> </svg> diff --git a/images/en/myblocks/start.svg b/images/en/myblocks/start.svg new file mode 100644 index 0000000..b444b08 --- /dev/null +++ b/images/en/myblocks/start.svg @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg:svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="99" + height="56" + id="svg2"> + <svg:defs + id="defs4"> + <svg:linearGradient + id="linearGradient3166"> + <svg:stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <svg:stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </svg:linearGradient> + <svg:linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(12.5,12)" /> + <perspective + type="inkscape:persp3d" + vp_x="0 : 526.18109 : 1" + vp_y="0 : 1000 : 0" + vp_z="744.09448 : 526.18109 : 1" + persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective2472" /> + </svg:defs> + <svg:path + d="M 98.5,26 C 98.698425,39.581628 59.5,51 59.5,51 L 59.5,51 L 59.5,55 L 39.5,55 L 39.5,51 C 39.5,51 0.30157465,39.581628 0.5,26 C 0.74518415,9.21787 32.716079,1 49.5,1 C 66.283921,1 98.254816,9.21787 98.5,26 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> + <svg:text + y="-0.80810547" + id="text14" + style="font-size:18px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <svg:tspan + x="49" + y="34.191895" + id="tspan16" + style="font-size:18px">start</svg:tspan> + </svg:text> +</svg:svg> diff --git a/images/en/myblocks/storeinbox.svg b/images/en/myblocks/storeinbox.svg index 3b0bacc..4feb166 100644 --- a/images/en/myblocks/storeinbox.svg +++ b/images/en/myblocks/storeinbox.svg @@ -131,6 +131,110 @@ style="stop-color:#ffff00;stop-opacity:1" offset="1" /> </linearGradient> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2492"> + <stop + id="stop2494" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2496" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2524" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2522" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2520" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2514"> + <stop + id="stop2516" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop2518" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2512" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2510" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2504"> + <stop + id="stop2506" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2508" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2540" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(34.404412,58.027574)" /> </defs> <g transform="translate(59.878677,45.67647)" @@ -148,13 +252,8 @@ d="M 47,1 C 63,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 27,1 L 27,6 L 47,6 L 47,1 z" id="path10" style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <g - transform="translate(12.5,11.5)" - id="layer1" - style="fill:#ffffff;fill-opacity:1;stroke:#c0a000;stroke-opacity:1"> - <path - d="M 4,0 L 4,7 L 0,7 L 0,14 L 4,14 L 4,21 L 101,21 L 105,10.5 L 101,0 L 4,0 z" - id="path2478" - style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> + <path + d="M 13,12 L 18,12 L 18,16 L 24.999999,16 L 24.999999,12 L 116.50001,12 L 116.50001,32 L 24.999999,32 L 24.999999,28 L 18,28 L 18,32 L 13,32 L 13,12 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </svg> diff --git a/images/en/myblocks/storeinbox1.svg b/images/en/myblocks/storeinbox1.svg index 2e7101c..8cc1674 100644 --- a/images/en/myblocks/storeinbox1.svg +++ b/images/en/myblocks/storeinbox1.svg @@ -38,24 +38,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 10.5,55.5 L 26.5,55.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 47.5,55.5 L 63.5,55.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 26.5,59.5 L 47.5,59.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/myblocks/storeinbox2.svg b/images/en/myblocks/storeinbox2.svg index f5bb157..2dfbbd4 100644 --- a/images/en/myblocks/storeinbox2.svg +++ b/images/en/myblocks/storeinbox2.svg @@ -38,24 +38,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 10.5,55.5 L 26.5,55.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 47.5,55.5 L 63.5,55.5" /> - <path - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" - d="M 26.5,59.5 L 47.5,59.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/myblocks/string.svg b/images/en/myblocks/string.svg index c589e87..51b9f9e 100644 --- a/images/en/myblocks/string.svg +++ b/images/en/myblocks/string.svg @@ -6,32 +6,32 @@ xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="105" - height="21"> - <defs> + height="21" + id="svg2"> + <defs + id="defs5"> <linearGradient - id="linearGradient3886"> + id="linearGradient3166"> <stop - id="stop3888" - style="stop-color:#0000ff;stop-opacity:1" + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" offset="0" /> <stop - id="stop3890" - style="stop-color:#ffffff;stop-opacity:1" + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" offset="1" /> </linearGradient> <linearGradient - x1="210" - y1="10.5" - x2="0" - y2="10.5" - id="linearGradient4211" - xlink:href="#linearGradient3886" + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" /> </defs> - <g - id="layer1"> - <path - d="M 5,1 L 5,8 L 1,8 L 1,13 L 5,13 L 5,20 L 100,20 L 104,10.5 L 100,1 L 5,1 z" - style="fill:url(#linearGradient4211);fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - </g> + <path + d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" + id="path9" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </svg> diff --git a/images/en/nomedia.svg b/images/en/nomedia.svg new file mode 100644 index 0000000..6eb6bb2 --- /dev/null +++ b/images/en/nomedia.svg @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="767" + height="38" + id="svg2"> + <defs + id="defs41"> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient2558" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,346.13381,24.632067)" /> + </defs> + <path + d="M 0.5,37.5 L 0.5,13 L 3.5,6.5 L 8.5,2.5 L 15,0 L 751.5,0 L 758,2.5 L 764,7 L 767,15 L 767,38 L 0.5,37.5 z" + id="path4" + style="fill:#ffd000;fill-opacity:1;fill-rule:evenodd;stroke:#e0a000;stroke-width:0.99423993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(656,63)" + id="g6"> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(24,-485)" + id="path8" + style="fill:#ff4040;fill-opacity:1;fill-rule:nonzero;stroke:#ff4040;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + id="text10" + style="font-size:12px;font-weight:bold;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="91" + y="-42" + id="tspan12" + style="font-size:12px">X</tspan> + </text> + </g> + <text + x="-41.722656" + id="text24" + style="font-size:12px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="128.27734" + y="28" + id="tspan26" + style="font-size:24px">???</tspan> + </text> + <g + id="g28"> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(-4,20)" + id="path30" + style="opacity:1;fill:#404040;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(1,17)" + id="path32" + style="opacity:1;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(-1,18)" + id="path34" + style="opacity:1;fill:#ffe000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <text + id="text36" + style="font-size:12px;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"> + <tspan + x="21" + y="29" + id="tspan38" + style="font-size:24px">!</tspan> + </text> + <g + transform="translate(64.520224,-8.9311472)" + id="clipping-image" + style="display:block"> + <g + id="g2859" + style="display:inline"> + <g + id="g2861"> + <polygon + points="48.788,43.944 48.788,23.002 36.849,11.058 5.962,11.058 5.962,43.944 48.788,43.944 " + id="polygon2863" + style="fill:#ffffff;stroke:#010101;stroke-width:3.5" /> + <polyline + id="polyline2865" + points="36.849,11.058 36.849,23.002 48.788,23.002 " + style="fill:none;stroke:#010101;stroke-width:3.5" /> + </g> + </g> + <path + d="M 27.504,23.342 C 21.246,23.342 16.033,29.583 16.033,29.583 C 16.033,29.583 21.246,35.854 27.504,35.85 C 33.763,35.845 38.979,29.576 38.979,29.576 C 38.979,29.576 33.763,23.338 27.504,23.342 z M 27.504,33.984 C 25.081,33.984 23.117,32.018 23.117,29.595 C 23.117,27.176 25.081,25.207 27.504,25.207 C 29.924,25.207 31.89,27.176 31.89,29.595 C 31.89,32.019 29.924,33.984 27.504,33.984 z" + id="path2867" + style="fill:#010101;display:inline" /> + <circle + cx="27.504" + cy="29.597" + r="1.9910001" + id="circle2869" + style="fill:#010101;display:inline" /> + </g> +</svg> diff --git a/images/en/numbers/division2.svg b/images/en/numbers/division2.svg new file mode 100644 index 0000000..97aebe5 --- /dev/null +++ b/images/en/numbers/division2.svg @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="71.75" + height="70.5" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 10.75,0.75 L 52,0.75 L 52,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 52,26.75 L 52,34.75 L 71,34.75 L 71,42.75 L 67,42.75 L 67,39.75 L 58,39.75 L 58,62.959 L 67,62.959 L 67,59.75 L 71,59.75 L 71,69.75 L 10.75,69.75 L 10.75,41.25 L 6.25,41.25 L 6.25,45.25 L 0.75,45.25 L 0.75,24.75 L 6.25,24.75 L 6.25,28.75 L 10.75,28.75 L 10.75,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" /> + <text + x="16.25" + y="16.773438" + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="42.25" + y="58" + id="tspan14" + style="font-size:24px">/</tspan> + </text> +</svg> diff --git a/images/en/numbers/identity.svg b/images/en/numbers/identity.svg new file mode 100644 index 0000000..02af675 --- /dev/null +++ b/images/en/numbers/identity.svg @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="52.5" + height="57.25" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffc000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0.25,57)" /> + </defs> + <path + d="M 30,56.5 L 51.75,56.5 L 51.75,47.5 L 47.75,47.5 L 47.75,50.5 L 38.75,50.5 L 38.75,27.5 L 47.75,27.5 L 47.75,30.5 L 51.75,30.5 L 51.75,21.75 L 38.75,21.75 L 10.75,4.75 L 6.25,4.75 L 6.25,0.75 L 0.75,0.75 L 0.75,21.25 L 6.25,21.25 L 6.25,17.25 L 10.75,17.25 L 30,29.25 L 30,56.5 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a97513;stroke-width:1.5px;stroke-opacity:1" /> +</svg> diff --git a/images/en/numbers/identity2.svg b/images/en/numbers/identity2.svg new file mode 100644 index 0000000..bb9820b --- /dev/null +++ b/images/en/numbers/identity2.svg @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="52.5" + height="57.25" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffc000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 30,0.75 L 51.75,0.75 L 51.75,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 51.75,26.75 L 51.75,35.5 L 38.75,35.5 L 10.75,52.5 L 6.25,52.5 L 6.25,56.5 L 0.75,56.5 L 0.75,36 L 6.25,36 L 6.25,40 L 10.75,40 L 30,28 L 30,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a97513;stroke-width:1.5px;stroke-opacity:1" /> +</svg> diff --git a/images/en/numbers/minus2.svg b/images/en/numbers/minus2.svg new file mode 100644 index 0000000..1cdcc97 --- /dev/null +++ b/images/en/numbers/minus2.svg @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="71.75" + height="70.5" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 10.75,0.75 L 52,0.75 L 52,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 52,26.75 L 52,34.75 L 71,34.75 L 71,42.75 L 67,42.75 L 67,39.75 L 58,39.75 L 58,62.959 L 67,62.959 L 67,59.75 L 71,59.75 L 71,69.75 L 10.75,69.75 L 10.75,41.25 L 6.25,41.25 L 6.25,45.25 L 0.75,45.25 L 0.75,24.75 L 6.25,24.75 L 6.25,28.75 L 10.75,28.75 L 10.75,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" /> + <text + x="18.25" + y="16.773438" + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="44.25" + y="58" + id="tspan14" + style="font-size:24px">–</tspan> + </text> +</svg> diff --git a/images/en/numbers/numbersgroup.svg b/images/en/numbers/numbersgroup.svg index f5ef2ba..e36956b 100644 --- a/images/en/numbers/numbersgroup.svg +++ b/images/en/numbers/numbersgroup.svg @@ -1,472 +1,759 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" height="500" - version="1.0"> - <svg:defs> - <svg:linearGradient - id="linearGradient5166"> - <svg:stop - id="stop5168" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <svg:stop - id="stop5170" - offset="1" - style="stop-color:#ff00ff;stop-opacity:1;" /> - </svg:linearGradient> - <svg:linearGradient - xlink:href="#linearGradient3049" - id="linearGradient5187" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.66667,0,0,0.66667,147.83371,171.83398)" - x1="0" - y1="22" - x2="74" - y2="22" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3677" - x1="37.33316" + id="svg2"> + <defs + id="defs94"> + <linearGradient + id="linearGradient3405"> + <stop + id="stop3407" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3409" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + id="linearGradient3241"> + <stop + id="stop3243" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3245" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="37.499828" y1="41.5" - x2="107.66684" + x2="107.50017" y2="41.5" + id="linearGradient3247" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="20.764166" + y1="80.032402" + x2="47.264164" + y2="80.032402" + id="linearGradient3255" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3685" - x1="19.999912" - y1="78.214287" - x2="55.000088" - y2="78.214287" + <linearGradient + x1="86.115639" + y1="80.032402" + x2="122.24064" + y2="80.032402" + id="linearGradient3263" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3693" - x1="85.560509" - y1="78.214287" - x2="120.56069" - y2="78.214287" + <linearGradient + x1="20.764162" + y1="121.53331" + x2="47.264164" + y2="121.53331" + id="linearGradient3271" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3701" - x1="19.999912" - y1="114.35662" - x2="55.000088" - y2="114.35662" + <linearGradient + x1="86.115639" + y1="121.53331" + x2="122.24064" + y2="121.53331" + id="linearGradient3279" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3709" - x1="85.560509" - y1="114.35662" - x2="120.56069" - y2="114.35662" + <linearGradient + x1="15.95166" + y1="163.03423" + x2="52.07666" + y2="163.03423" + id="linearGradient3287" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3717" - x1="15.999892" - y1="150.49895" - x2="59.000107" - y2="150.49895" + <linearGradient + x1="79.511383" + y1="168.49895" + x2="116.8449" + y2="168.49895" + id="linearGradient3295" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3725" - x1="84.393837" - y1="150.49895" - x2="121.72736" - y2="150.49895" + <linearGradient + x1="79.511383" + y1="168.49895" + x2="116.8449" + y2="168.49895" + id="linearGradient3297" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3733" - x1="10.277154" - y1="192.5" - x2="134.72285" - y2="192.5" + <linearGradient + x1="79.511383" + y1="168.49895" + x2="116.8449" + y2="168.49895" + id="linearGradient3299" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3741" - x1="1.2215077" - y1="235" - x2="143.7785" - y2="235" + <linearGradient + x1="79.511383" + y1="168.49895" + x2="116.8449" + y2="168.49895" + id="linearGradient3301" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="79.511383" + y1="168.49895" + x2="116.8449" + y2="168.49895" + id="linearGradient3307" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(6,-5.464714)" /> + <linearGradient + x1="10.111029" + y1="240.50002" + x2="134.88898" + y2="240.50002" + id="linearGradient3315" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3749" - x1="1.2215077" - y1="278.5" - x2="143.7785" - y2="278.5" + <linearGradient + x1="1.0548444" + y1="277" + x2="143.94516" + y2="277" + id="linearGradient3323" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3757" - x1="1.2215077" - y1="318" - x2="143.7785" - y2="318" + <linearGradient + x1="1.0548444" + y1="304.5" + x2="143.94516" + y2="304.5" + id="linearGradient3331" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3765" - x1="8.1665125" - y1="360" + <linearGradient + x1="1.0548444" + y1="332" + x2="143.94516" + y2="332" + id="linearGradient3339" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="8.1665154" + y1="372" x2="69.833488" - y2="360" + y2="372" + id="linearGradient3347" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3774" + <linearGradient x1="77.666512" - y1="359.5" + y1="371.5" x2="139.33348" - y2="359.5" + y2="371.5" + id="linearGradient3355" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="12.999865" + y1="402.5" + x2="68.000137" + y2="402.5" + id="linearGradient3363" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="12.999865" + y1="402.5" + x2="68.000137" + y2="402.5" + id="linearGradient3365" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="12.999865" + y1="402.5" + x2="68.000137" + y2="402.5" + id="linearGradient3367" + xlink:href="#linearGradient3241" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3782" - x1="44.999863" + <linearGradient + x1="12.999865" y1="402.5" - x2="100.00014" + x2="68.000137" y2="402.5" + id="linearGradient3371" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(32,8)" /> + <linearGradient + x1="12.999865" + y1="402.5" + x2="68.000137" + y2="402.5" + id="linearGradient3374" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(32,8)" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3382" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3384" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3386" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3388" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3390" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3394" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-36.520584,50.43926)" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3397" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-36.520584,50.43926)" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3400" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-36.520584,50.43926)" /> + <linearGradient + x1="80.020439" + y1="401.94131" + x2="138.02074" + y2="401.94131" + id="linearGradient3403" + xlink:href="#linearGradient3241" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-36.520584,50.43926)" /> + <linearGradient + x1="20.764162" + y1="201.22266" + x2="47.264164" + y2="201.22266" + id="linearGradient3411" + xlink:href="#linearGradient3405" gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - xlink:href="#linearGradient5166" - id="linearGradient3790" - x1="43.416519" - y1="448.5" - x2="92.750099" - y2="448.5" + <linearGradient + x1="90.928139" + y1="201.22266" + x2="117.42814" + y2="201.22266" + id="linearGradient3419" + xlink:href="#linearGradient3405" gradientUnits="userSpaceOnUse" /> - </svg:defs> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" - d="M 0.5594301,0.5 L 0.49711997,486.41023 L 3.6209793,493.14297 L 8.494839,497.1072 L 15.156388,499.50288 L 128.9813,499.50288 L 135.82978,496.93866 L 141.77903,492.04729 L 144.50288,483.79171 L 144.54057,0.5 L 0.5594301,0.5 z" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + </defs> + <path + d="M 0.5594301,0.5 L 0.49711997,486.41023 L 3.6209793,493.14297 L 8.494839,497.1072 L 15.156388,499.50288 L 128.9813,499.50288 L 135.82978,496.93866 L 141.77903,492.04729 L 144.50288,483.79171 L 144.54057,0.5 L 0.5594301,0.5 z" + id="path25" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="171.19794" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + y="221.19794" + id="rect27" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="172.31435" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" + y="222.31435" + id="rect29" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="173.29239" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + y="223.29239" + id="rect31" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="55.382996" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + y="55.382996" + id="rect33" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="56.499405" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" + y="56.499405" + id="rect35" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="57.477448" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + y="57.477448" + id="rect37" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-28.931932" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + transform="scale(1,-1)" + id="rect39" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-27.815523" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + transform="scale(1,-1)" + id="rect41" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-472.77127" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + transform="scale(1,-1)" + id="rect43" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-471.43195" - transform="scale(1,-1)" /> - <svg:path - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" - cx="71.125" - cy="438.375" - rx="8.375" - ry="8.125" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - transform="translate(1.375,47.250977)" /> - <svg:text - style="font-size:12px;font-variant:normal;font-weight:bold;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-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"><svg:tspan + transform="scale(1,-1)" + id="rect45" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(1.375,47.250977)" + id="path47" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> + <text + id="text49" + style="font-size:12px;font-variant:normal;font-weight:bold;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-opacity:1;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans Bold"> + <tspan x="67.879883" y="490" - style="font-size:12px">X</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan51" + style="font-size:12px">X</tspan> + </text> + <text + id="text53" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" y="21.5" - style="font-size:20px" - id="tspan2796">Numbers</svg:tspan> - </svg:text> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + id="tspan2796" + style="font-size:20px">Numbers</tspan> + </text> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="212.883" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="258.883" + id="rect56" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="213.99942" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" + y="259.99942" + id="rect58" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="214.97745" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="260.97745" + id="rect60" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="337.883" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="347.883" + id="rect62" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="338.99939" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" + y="348.99939" + id="rect64" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="339.97745" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="349.97745" + id="rect66" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="425.883" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="429.883" + id="rect68" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="426.99939" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" + y="430.99939" + id="rect70" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137" height="0.2" x="4" - y="427" /> - <svg:path + y="431" + id="rect72" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1;stroke-opacity:1" /> + <path d="M 37.99983,34.8333 L 41.33318,34.8333 L 41.33318,37.49998 L 45.99987,37.49998 L 45.99987,34.8333 L 107.00017,34.8333 L 107.00017,48.1667 L 45.99987,48.1667 L 45.99987,45.50002 L 41.33318,45.50002 L 41.33318,48.1667 L 37.99983,48.1667 L 37.99983,34.8333 z" - style="fill:url(#linearGradient3677);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:path - style="fill:url(#linearGradient3685);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 20.499915,66.214225 L 54.500085,66.214225 L 54.500085,72.214255 L 51.833405,72.214255 L 51.833405,70.214245 L 45.833375,70.214245 L 45.833375,85.547655 L 51.833405,85.547655 L 51.833405,83.547645 L 54.500085,83.547645 L 54.500085,90.214345 L 20.499915,90.214345 L 20.499915,85.547655 L 28.499955,85.547655 L 28.499955,70.214245 L 20.499915,70.214245 L 20.499915,66.214225 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="38" - y="83" - style="font-size:16px">+</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient3693);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 86.060515,66.214225 L 120.06069,66.214225 L 120.06069,72.214255 L 117.39401,72.214255 L 117.39401,70.214245 L 111.39397,70.214245 L 111.39397,85.547655 L 117.39401,85.547655 L 117.39401,83.547645 L 120.06069,83.547645 L 120.06069,90.214345 L 86.060515,90.214345 L 86.060515,85.547655 L 94.060555,85.547655 L 94.060555,70.214245 L 86.060515,70.214245 L 86.060515,66.214225 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="103" - y="83" - style="font-size:16px">–</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3701);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 20.499915,102.35656 L 54.500085,102.35656 L 54.500085,108.35658 L 51.833405,108.35658 L 51.833405,106.35657 L 45.833375,106.35657 L 45.833375,121.68998 L 51.833405,121.68998 L 51.833405,119.68997 L 54.500085,119.68997 L 54.500085,126.35667 L 20.499915,126.35667 L 20.499915,121.68998 L 28.499955,121.68998 L 28.499955,106.35657 L 20.499915,106.35657 L 20.499915,102.35656 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="38" - y="119" - style="font-size:21px">×</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3709);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 86.060515,102.35656 L 120.06069,102.35656 L 120.06069,108.35658 L 117.39401,108.35658 L 117.39401,106.35657 L 111.39397,106.35657 L 111.39397,121.68998 L 117.39401,121.68998 L 117.39401,119.68997 L 120.06069,119.68997 L 120.06069,126.35667 L 86.060515,126.35667 L 86.060515,121.68998 L 94.060555,121.68998 L 94.060555,106.35657 L 86.060515,106.35657 L 86.060515,102.35656 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="103" - y="119" - style="font-size:16px">/</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3717);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 16.499895,138.4989 L 58.500105,138.4989 L 58.500105,144.49892 L 55.833425,144.49892 L 55.833425,142.49892 L 49.50006,142.49892 L 49.50006,157.83232 L 55.833425,157.83232 L 55.833425,155.83231 L 58.500105,155.83231 L 58.500105,162.49901 L 16.499895,162.49901 L 16.499895,157.83232 L 24.499935,157.83232 L 24.499935,142.49892 L 16.499895,142.49892 L 16.499895,138.4989 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="37" - y="154" - style="font-size:9px">mod</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3725);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 121.22736,138.49679 L 99.560582,138.49679 L 96.868887,139.93973 L 95.223158,141.58546 L 93.893887,143.83015 L 93.893887,145.78049 L 88.839403,145.84632 L 88.839403,143.83015 L 84.893842,143.83015 L 84.893842,157.16355 L 88.893862,157.16355 L 88.893862,154.83021 L 93.893887,154.83021 L 93.893887,159.60462 L 95.159004,161.44784 L 97.858,162.5011 L 121.22736,162.43527 L 121.22736,155.83021 L 117.67258,155.83021 L 117.67258,157.89306 L 112.0771,157.89306 L 111.89398,142.83015 L 117.89401,142.83015 L 117.89401,144.83016 L 121.22736,144.83016 L 121.22736,138.49679 z" /> - <svg:g> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"><svg:tspan - style="font-size:16px" + id="path74" + style="fill:url(#linearGradient3247);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <path + d="M 122.3449,151.03208 L 100.67812,151.03208 L 97.986426,152.47502 L 96.340697,154.12075 L 95.011426,156.36544 L 95.011426,158.31578 L 89.956942,158.38161 L 89.956942,156.36544 L 86.011381,156.36544 L 86.011381,169.69884 L 90.011401,169.69884 L 90.011401,167.3655 L 95.011426,167.3655 L 95.011426,172.13991 L 96.276543,173.98313 L 98.975539,175.03639 L 122.3449,174.97056 L 122.3449,168.3655 L 118.79012,168.3655 L 118.79012,170.42835 L 113.19464,170.42835 L 113.01152,155.36544 L 119.01155,155.36544 L 119.01155,157.36545 L 122.3449,157.36545 L 122.3449,151.03208 z" + id="path106" + style="fill:url(#linearGradient3307);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <g + transform="translate(1.9359525,12.535286)" + id="g108" + style="fill:#000000;fill-opacity:1"> + <text + id="text110" + style="font-size:8px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="102" y="157" - x="102">√</svg:tspan></svg:text> - </svg:g> - <svg:path - style="fill:url(#linearGradient3733);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 125.54364,182.16802 L 20.202678,182.44265 L 18.649745,183.26928 L 17.553556,184.00407 L 16.548717,185.65733 L 16.548717,191.5356 L 13.260151,191.62745 L 13.168802,190.06603 L 10.611029,189.97418 L 10.793727,199.34268 L 13.077453,199.34268 L 13.168802,197.41387 L 16.548717,197.50572 L 16.457368,200.99594 L 17.370858,201.82257 L 18.923792,202.55736 L 129.09073,202.8329 L 128.81668,199.06713 L 134.38897,198.88344 L 134.29762,190.52527 L 129.09073,190.52527 L 128.99938,185.38178 L 127.81184,183.72852 L 125.98486,182.16711 L 125.54364,182.16802 L 125.54364,182.16802" /> - <svg:path - d="M 23.057444,190.07932 L 25.310631,190.07932 L 25.310631,192.02538 L 28.465092,192.02538 L 28.465092,190.07932 L 69.698412,190.07932 L 69.698412,199.80963 L 28.465092,199.80963 L 28.465092,197.86356 L 25.310631,197.86356 L 25.310631,199.80963 L 23.057444,199.80963 L 23.057444,190.07932 z" + id="tspan112" + style="font-size:16px;fill:#000000;fill-opacity:1">√</tspan> + </text> + </g> + <path + d="M 125.54364,230.16802 L 20.202678,230.44265 L 18.649745,231.26928 L 17.553556,232.00407 L 16.548717,233.65733 L 16.548717,239.5356 L 13.260151,239.62745 L 13.168802,238.06603 L 10.611029,237.97418 L 10.793727,247.34268 L 13.077453,247.34268 L 13.168802,245.41387 L 16.548717,245.50572 L 16.457368,248.99594 L 17.370858,249.82257 L 18.923792,250.55736 L 129.09073,250.8329 L 128.81668,247.06713 L 134.38897,246.88344 L 134.29762,238.52527 L 129.09073,238.52527 L 128.99938,233.38178 L 127.81184,231.72852 L 125.98486,230.16711 L 125.54364,230.16802 L 125.54364,230.16802" + id="path114" + style="fill:url(#linearGradient3315);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <path + d="M 23.057444,238.07932 L 25.310631,238.07932 L 25.310631,240.02538 L 28.465092,240.02538 L 28.465092,238.07932 L 69.698412,238.07932 L 69.698412,247.80963 L 28.465092,247.80963 L 28.465092,245.86356 L 25.310631,245.86356 L 25.310631,247.80963 L 23.057444,247.80963 L 23.057444,238.07932 z" + id="path116" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:path - d="M 77.813595,190.07932 L 80.066783,190.07932 L 80.066783,192.02538 L 83.221245,192.02538 L 83.221245,190.07932 L 124.45457,190.07932 L 124.45457,199.80963 L 83.221245,199.80963 L 83.221245,197.86356 L 80.066783,197.86356 L 80.066783,199.80963 L 77.813595,199.80963 L 77.813595,190.07932 z" + <path + d="M 77.813595,238.07932 L 80.066783,238.07932 L 80.066783,240.02538 L 83.221245,240.02538 L 83.221245,238.07932 L 124.45457,238.07932 L 124.45457,247.80963 L 83.221245,247.80963 L 83.221245,245.86356 L 80.066783,245.86356 L 80.066783,247.80963 L 77.813595,247.80963 L 77.813595,238.07932 z" + id="path118" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + <text + y="48" + id="text120" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="189" - style="font-size:6px">random</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3757);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 131.00059,309.49992 L 13.110516,309.61103 L 9.9993735,310.49993 L 5.4437723,312.61106 L 2.9993033,314.72219 L 1.7770688,317.05555 L 1.5548444,317.94445 L 1.5548444,319.38891 L 2.4437422,320.94448 L 4.8882111,322.83339 L 7.777129,324.38896 L 10.554935,325.50008 L 13.221628,326.38898 L 131.44504,326.50009 L 135.6673,324.94452 L 139.55623,323.38895 L 142.0007,321.38893 L 143.33404,319.38891 L 143.44516,318.05556 L 142.77848,315.61109 L 140.33401,312.9444 L 137.00065,311.61105 L 134.00062,310.38882 L 131.00059,309.49992 z" /> - <svg:path - d="M 15.779593,313.30152 L 18.03278,313.30152 L 18.03278,315.24758 L 21.187242,315.24758 L 21.187242,313.30152 L 62.420561,313.30152 L 62.420561,323.03183 L 21.187242,323.03183 L 21.187242,321.08577 L 18.03278,321.08577 L 18.03278,323.03183 L 15.779593,323.03183 L 15.779593,313.30152 z" + y="237" + id="tspan122" + style="font-size:7px">random</tspan> + </text> + <path + d="M 131.00059,323.49992 L 13.110516,323.61103 L 9.9993735,324.49993 L 5.4437723,326.61106 L 2.9993033,328.72219 L 1.7770688,331.05555 L 1.5548444,331.94445 L 1.5548444,333.38891 L 2.4437422,334.94448 L 4.8882111,336.83339 L 7.777129,338.38896 L 10.554935,339.50008 L 13.221628,340.38898 L 131.44504,340.50009 L 135.6673,338.94452 L 139.55623,337.38895 L 142.0007,335.38893 L 143.33404,333.38891 L 143.44516,332.05556 L 142.77848,329.61109 L 140.33401,326.9444 L 137.00065,325.61105 L 134.00062,324.38882 L 131.00059,323.49992 z" + id="path124" + style="fill:url(#linearGradient3339);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <path + d="M 15.779593,327.30152 L 18.03278,327.30152 L 18.03278,329.24758 L 21.187242,329.24758 L 21.187242,327.30152 L 62.420561,327.30152 L 62.420561,337.03183 L 21.187242,337.03183 L 21.187242,335.08577 L 18.03278,335.08577 L 18.03278,337.03183 L 15.779593,337.03183 L 15.779593,327.30152 z" + id="path126" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:path - d="M 82.091416,313.30152 L 84.344603,313.30152 L 84.344603,315.24758 L 87.499066,315.24758 L 87.499066,313.30152 L 128.73239,313.30152 L 128.73239,323.03183 L 87.499066,323.03183 L 87.499066,321.08577 L 84.344603,321.08577 L 84.344603,323.03183 L 82.091416,323.03183 L 82.091416,313.30152 z" + <path + d="M 82.091416,327.30152 L 84.344603,327.30152 L 84.344603,329.24758 L 87.499066,329.24758 L 87.499066,327.30152 L 128.73239,327.30152 L 128.73239,337.03183 L 87.499066,337.03183 L 87.499066,335.08577 L 84.344603,335.08577 L 84.344603,337.03183 L 82.091416,337.03183 L 82.091416,327.30152 z" + id="path128" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:5px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + <text + y="14" + id="text130" + style="font-size:5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="323" - style="font-size:14px">=</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3749);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 131.00059,269.99992 L 13.110516,270.11103 L 9.9993735,270.99993 L 5.4437723,273.11106 L 2.9993033,275.22219 L 1.7770688,277.55555 L 1.5548444,278.44445 L 1.5548444,279.88891 L 2.4437422,281.44448 L 4.8882111,283.33339 L 7.777129,284.88896 L 10.554935,286.00008 L 13.221628,286.88898 L 131.44504,287.00009 L 135.6673,285.44452 L 139.55623,283.88895 L 142.0007,281.88893 L 143.33404,279.88891 L 143.44516,278.55556 L 142.77848,276.11109 L 140.33401,273.4444 L 137.00065,272.11105 L 134.00062,270.88882 L 131.00059,269.99992 z" /> - <svg:path - d="M 15.779593,273.80152 L 18.03278,273.80152 L 18.03278,275.74758 L 21.187242,275.74758 L 21.187242,273.80152 L 62.420561,273.80152 L 62.420561,283.53183 L 21.187242,283.53183 L 21.187242,281.58577 L 18.03278,281.58577 L 18.03278,283.53183 L 15.779593,283.53183 L 15.779593,273.80152 z" + y="337" + id="tspan132" + style="font-size:14px">=</tspan> + </text> + <path + d="M 131.00059,295.99992 L 13.110516,296.11103 L 9.9993735,296.99993 L 5.4437723,299.11106 L 2.9993033,301.22219 L 1.7770688,303.55555 L 1.5548444,304.44445 L 1.5548444,305.88891 L 2.4437422,307.44448 L 4.8882111,309.33339 L 7.777129,310.88896 L 10.554935,312.00008 L 13.221628,312.88898 L 131.44504,313.00009 L 135.6673,311.44452 L 139.55623,309.88895 L 142.0007,307.88893 L 143.33404,305.88891 L 143.44516,304.55556 L 142.77848,302.11109 L 140.33401,299.4444 L 137.00065,298.11105 L 134.00062,296.88882 L 131.00059,295.99992 z" + id="path134" + style="fill:url(#linearGradient3331);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <path + d="M 15.779593,299.80152 L 18.03278,299.80152 L 18.03278,301.74758 L 21.187242,301.74758 L 21.187242,299.80152 L 62.420561,299.80152 L 62.420561,309.53183 L 21.187242,309.53183 L 21.187242,307.58577 L 18.03278,307.58577 L 18.03278,309.53183 L 15.779593,309.53183 L 15.779593,299.80152 z" + id="path136" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:path - d="M 82.091416,273.80152 L 84.344603,273.80152 L 84.344603,275.74758 L 87.499066,275.74758 L 87.499066,273.80152 L 128.73239,273.80152 L 128.73239,283.53183 L 87.499066,283.53183 L 87.499066,281.58577 L 84.344603,281.58577 L 84.344603,283.53183 L 82.091416,283.53183 L 82.091416,273.80152 z" + <path + d="M 82.091416,299.80152 L 84.344603,299.80152 L 84.344603,301.74758 L 87.499066,301.74758 L 87.499066,299.80152 L 128.73239,299.80152 L 128.73239,309.53183 L 87.499066,309.53183 L 87.499066,307.58577 L 84.344603,307.58577 L 84.344603,309.53183 L 82.091416,309.53183 L 82.091416,299.80152 z" + id="path138" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:5px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"><svg:tspan + <text + y="26" + id="text140" + style="font-size:5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="283" - style="font-size:14px"><</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3741);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 131.00059,226.49992 L 13.110516,226.61103 L 9.9993735,227.49993 L 5.4437723,229.61106 L 2.9993033,231.72219 L 1.7770688,234.05555 L 1.5548444,234.94445 L 1.5548444,236.38891 L 2.4437422,237.94448 L 4.8882111,239.83339 L 7.777129,241.38896 L 10.554935,242.50008 L 13.221628,243.38898 L 131.44504,243.50009 L 135.6673,241.94452 L 139.55623,240.38895 L 142.0007,238.38893 L 143.33404,236.38891 L 143.44516,235.05556 L 142.77848,232.61109 L 140.33401,229.9444 L 137.00065,228.61105 L 134.00062,227.38882 L 131.00059,226.49992 z" /> - <svg:path - d="M 15.779593,230.30152 L 18.03278,230.30152 L 18.03278,232.24758 L 21.187242,232.24758 L 21.187242,230.30152 L 62.420561,230.30152 L 62.420561,240.03183 L 21.187242,240.03183 L 21.187242,238.08577 L 18.03278,238.08577 L 18.03278,240.03183 L 15.779593,240.03183 L 15.779593,230.30152 z" + y="309" + id="tspan142" + style="font-size:14px"><</tspan> + </text> + <path + d="M 131.00059,268.49992 L 13.110516,268.61103 L 9.9993735,269.49993 L 5.4437723,271.61106 L 2.9993033,273.72219 L 1.7770688,276.05555 L 1.5548444,276.94445 L 1.5548444,278.38891 L 2.4437422,279.94448 L 4.8882111,281.83339 L 7.777129,283.38896 L 10.554935,284.50008 L 13.221628,285.38898 L 131.44504,285.50009 L 135.6673,283.94452 L 139.55623,282.38895 L 142.0007,280.38893 L 143.33404,278.38891 L 143.44516,277.05556 L 142.77848,274.61109 L 140.33401,271.9444 L 137.00065,270.61105 L 134.00062,269.38882 L 131.00059,268.49992 z" + id="path144" + style="fill:url(#linearGradient3323);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <path + d="M 15.779593,272.30152 L 18.03278,272.30152 L 18.03278,274.24758 L 21.187242,274.24758 L 21.187242,272.30152 L 62.420561,272.30152 L 62.420561,282.03183 L 21.187242,282.03183 L 21.187242,280.08577 L 18.03278,280.08577 L 18.03278,282.03183 L 15.779593,282.03183 L 15.779593,272.30152 z" + id="path146" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:path - d="M 82.091416,230.30152 L 84.344603,230.30152 L 84.344603,232.24758 L 87.499066,232.24758 L 87.499066,230.30152 L 128.73239,230.30152 L 128.73239,240.03183 L 87.499066,240.03183 L 87.499066,238.08577 L 84.344603,238.08577 L 84.344603,240.03183 L 82.091416,240.03183 L 82.091416,230.30152 z" + <path + d="M 82.091416,272.30152 L 84.344603,272.30152 L 84.344603,274.24758 L 87.499066,274.24758 L 87.499066,272.30152 L 128.73239,272.30152 L 128.73239,282.03183 L 87.499066,282.03183 L 87.499066,280.08577 L 84.344603,280.08577 L 84.344603,282.03183 L 82.091416,282.03183 L 82.091416,272.30152 z" + id="path148" style="fill:#ffffff;fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:5px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + <text + y="42" + id="text150" + style="font-size:5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="239" - style="font-size:14px">></svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3765);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 8.666515,344.99992 L 69.333485,344.99992 L 69.333485,347.33327 L 63.66679,347.99994 L 59.66677,349.33328 L 56.666755,350.99995 L 53.333405,353.66663 L 51.66673,356.33331 L 50.933393,359.33333 L 51.533396,362.13334 L 53.00007,365.33336 L 55.333415,367.33337 L 58.666765,369.33338 L 62.000115,370.66672 L 65.6668,371.66672 L 69.333485,372.66673 L 69.333485,375.00007 L 8.666515,375.00007 L 8.666515,372.66673 L 13.333205,371.66672 L 17.866561,370.53339 L 21.66658,368.66671 L 24.33326,366.6667 L 25.999935,364.40002 L 26.99994,361.66667 L 26.99994,359.33333 L 26.866606,357.19999 L 25.999935,355.33331 L 23.999925,352.66663 L 21.266578,350.86662 L 17.799894,349.13328 L 13.66654,347.99994 L 8.666515,347.33327 L 8.666515,344.99992 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="281" + id="tspan152" + style="font-size:14px">></tspan> + </text> + <path + d="M 8.666515,356.99992 L 69.333485,356.99992 L 69.333485,359.33327 L 63.66679,359.99994 L 59.66677,361.33328 L 56.666755,362.99995 L 53.333405,365.66663 L 51.66673,368.33331 L 50.933393,371.33333 L 51.533396,374.13334 L 53.00007,377.33336 L 55.333415,379.33337 L 58.666765,381.33338 L 62.000115,382.66672 L 65.6668,383.66672 L 69.333485,384.66673 L 69.333485,387.00007 L 8.666515,387.00007 L 8.666515,384.66673 L 13.333205,383.66672 L 17.866561,382.53339 L 21.66658,380.66671 L 24.33326,378.6667 L 25.999935,376.40002 L 26.99994,373.66667 L 26.99994,371.33333 L 26.866606,369.19999 L 25.999935,367.33331 L 23.999925,364.66663 L 21.266578,362.86662 L 17.799894,361.13328 L 13.66654,359.99994 L 8.666515,359.33327 L 8.666515,356.99992 z" + id="path154" + style="fill:url(#linearGradient3347);fill-opacity:1;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" /> + <text + y="12" + id="text156" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="39" - y="364" - style="font-size:11">and</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3774);fill-opacity:1.0;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" - d="M 78.166515,344.49992 L 138.83348,344.49992 L 138.83348,346.83327 L 133.16679,347.49994 L 129.16677,348.83328 L 126.16675,350.49995 L 122.8334,353.16663 L 121.16673,355.83331 L 120.43339,358.83333 L 121.0334,361.63334 L 122.50007,364.83336 L 124.83342,366.83337 L 128.16676,368.83338 L 131.50011,370.16672 L 135.1668,371.16672 L 138.83348,372.16673 L 138.83348,374.50007 L 78.166515,374.50007 L 78.166515,372.16673 L 82.833205,371.16672 L 87.366561,370.03339 L 91.16658,368.16671 L 93.83326,366.1667 L 95.499935,363.90002 L 96.49994,361.16667 L 96.49994,358.83333 L 96.366606,356.69999 L 95.499935,354.83331 L 93.499925,352.16663 L 90.766578,350.36662 L 87.299894,348.63328 L 83.16654,347.49994 L 78.166515,346.83327 L 78.166515,344.49992 z" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="376" + id="tspan158" + style="font-size:11px">and</tspan> + </text> + <path + d="M 78.166515,356.49992 L 138.83348,356.49992 L 138.83348,358.83327 L 133.16679,359.49994 L 129.16677,360.83328 L 126.16675,362.49995 L 122.8334,365.16663 L 121.16673,367.83331 L 120.43339,370.83333 L 121.0334,373.63334 L 122.50007,376.83336 L 124.83342,378.83337 L 128.16676,380.83338 L 131.50011,382.16672 L 135.1668,383.16672 L 138.83348,384.16673 L 138.83348,386.50007 L 78.166515,386.50007 L 78.166515,384.16673 L 82.833205,383.16672 L 87.366561,382.03339 L 91.16658,380.16671 L 93.83326,378.1667 L 95.499935,375.90002 L 96.49994,373.16667 L 96.49994,370.83333 L 96.366606,368.69999 L 95.499935,366.83331 L 93.499925,364.16663 L 90.766578,362.36662 L 87.299894,360.63328 L 83.16654,359.49994 L 78.166515,358.83327 L 78.166515,356.49992 z" + id="path160" + style="fill:url(#linearGradient3355);fill-opacity:1;stroke:#a000a0;stroke-width:1px;stroke-opacity:1" /> + <text + y="12" + id="text162" + style="font-size:8px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="108" - y="363" - style="font-size:11">or</svg:tspan></svg:text> - <svg:path - style="fill:url(#linearGradient3782);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 99.500135,387.83326 L 78.833365,387.83326 L 69.702859,388.44907 L 62.143743,389.72303 L 55.213278,391.78601 L 50.406084,394.468 L 47.325727,397.47844 L 45.951693,399.83392 L 45.499865,402.16667 L 45.919619,404.35053 L 47.033217,406.70602 L 49.52085,409.32195 L 53.508882,411.61136 L 59.067239,413.53834 L 64.471011,414.78601 L 71.035993,416.12797 L 78.833365,417.16674 L 99.500135,417.16674 L 99.500135,415.16674 L 95.613222,414.45565 L 91.400679,413.11754 C 90.25565,412.5941 90.749423,412.81081 88.295954,411.41507 L 84.756944,408.90114 L 82.529748,405.7265 L 81.544442,402.25163 L 82.727965,398.28797 L 86.032833,394.82659 L 90.902247,392.17859 L 95.382932,390.79878 L 99.500135,389.83328 L 99.500135,387.83326" /> - <svg:text - style="font-size:8px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="375" + id="tspan164" + style="font-size:11px">or</tspan> + </text> + <path + d="M 99.500135,395.83326 L 78.833365,395.83326 L 69.702859,396.44907 L 62.143743,397.72303 L 55.213278,399.78601 L 50.406084,402.468 L 47.325727,405.47844 L 45.951693,407.83392 L 45.499865,410.16667 L 45.919619,412.35053 L 47.033217,414.70602 L 49.52085,417.32195 L 53.508882,419.61136 L 59.067239,421.53834 L 64.471011,422.78601 L 71.035993,424.12797 L 78.833365,425.16674 L 99.500135,425.16674 L 99.500135,423.16674 L 95.613222,422.45565 L 91.400679,421.11754 C 90.25565,420.5941 90.749423,420.81081 88.295954,419.41507 L 84.756944,416.90114 L 82.529748,413.7265 L 81.544442,410.25163 L 82.727965,406.28797 L 86.032833,402.82659 L 90.902247,400.17859 L 95.382932,398.79878 L 99.500135,397.83328 L 99.500135,395.83326" + id="path166" + style="fill:url(#linearGradient3374);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <text + x="0" + y="8" + id="text168" + style="font-size:8px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan x="68" - y="406" - style="font-size:11">not</svg:tspan></svg:text> - <svg:path - style="fill:#e000e0;fill-opacity:1;stroke:#800080;stroke-width:1;stroke-opacity:1" - d="M 90.083421,437.83328 L 101.08348,437.83328 L 101.08348,441.8333 L 98.416796,441.8333 L 98.416796,439.83329 L 91.416761,439.83329" /> - <svg:path - style="fill:#e000e0;fill-opacity:1;stroke:#800080;stroke-width:1;stroke-opacity:1" - d="M 90.083421,456.1667 L 101.08348,456.1667 L 101.08348,452.16668 L 98.416796,452.16668 L 98.416796,454.1667 L 91.416761,454.1667" /> - <svg:path - style="fill:url(#linearGradient3790);fill-opacity:1.0;stroke:#a000a0;stroke-width:1;stroke-opacity:1" - d="M 75.416681,434.49993 C 86.083401,434.49993 86.083401,434.49993 86.083401,434.49993 L 89.750086,437.16661 L 92.083431,441.16663 L 92.083431,453.83336 L 89.750086,457.16671 L 86.083401,459.83339 L 74.750011,459.83339 L 74.750011,459.83339 L 74.750011,462.50007 L 61.416611,462.50007 L 61.416611,459.83339 L 50.083221,459.83339 L 46.416536,457.16671 L 44.083191,453.83336 L 44.083191,441.16663 L 46.416536,437.16661 L 50.083221,434.49993 L 60.749941,434.49993 L 60.749941,437.83328 L 75.416681,437.83328 L 75.416681,434.49993 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - x="70" - y="451" - font-size="11">print</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - font-size="11" + y="414" + id="tspan170" + style="font-size:11px;fill:#000000;fill-opacity:1">not</tspan> + </text> + <path + d="M 90.000086,441.71384 L 101.00015,441.71384 L 101.00015,445.71386 L 98.333456,445.71386 L 98.333456,443.71385 L 91.333426,443.71385" + id="path172" + style="fill:url(#linearGradient3403);fill-opacity:1;stroke:#800080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 90.000086,460.04726 L 101.00015,460.04726 L 101.00015,456.04724 L 98.333456,456.04724 L 98.333456,458.04726 L 91.333426,458.04726" + id="path174" + style="fill:url(#linearGradient3400);fill-opacity:1;stroke:#800080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 75.333346,438.38049 C 86.000066,438.38049 86.000066,438.38049 86.000066,438.38049 L 89.666746,441.04717 L 92.000096,445.04719 L 92.000096,457.71392 L 89.666746,461.04727 L 86.000066,463.71395 L 74.666676,463.71395 L 74.666676,463.71395 L 74.666676,466.38063 L 61.333274,466.38063 L 61.333274,463.71395 L 49.999884,463.71395 L 46.333199,461.04727 L 43.999854,457.71392 L 43.999854,445.04719 L 46.333199,441.04717 L 49.999884,438.38049 L 60.666604,438.38049 L 60.666604,441.71384 L 75.333346,441.71384 L 75.333346,438.38049 z" + id="path176" + style="fill:url(#linearGradient3397);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-opacity:1" /> + <text + x="-0.083335772" + y="3.8805556" + id="text178" + style="font-size:12px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="69.916664" + y="454.88055" + id="tspan180" + style="font-size:11px;fill:#000000;fill-opacity:1">print</tspan> + </text> + <text + id="text182" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="46">number</svg:tspan></svg:text> - <svg:text - style="font-size:10.5px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan - font-size="10.5" + y="46" + id="tspan184" + style="font-size:11px">number</tspan> + </text> + <text + y="48" + id="text186" + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="46" - y="199">min</svg:tspan></svg:text> - <svg:text - style="font-size:10px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="247" + id="tspan188" + style="font-size:10.5px">min</tspan> + </text> + <text + y="48" + id="text190" + style="font-size:10px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="100" - y="199" - font-size="10.5">max</svg:tspan></svg:text> -</svg:svg> + y="247" + id="tspan192" + style="font-size:10.5px">max</tspan> + </text> + <path + d="M 35.889163,215.16016 L 46.764163,215.16016 L 46.764163,210.66016 L 44.764163,210.66016 L 44.764163,212.16016 L 40.264163,212.16016 L 40.264163,200.66016 L 44.764163,200.66016 L 44.764163,202.16016 L 46.764163,202.16016 L 46.764163,197.78516 L 40.264163,197.78516 L 26.264163,189.28516 L 24.014163,189.28516 L 24.014163,187.28516 L 21.264163,187.28516 L 21.264163,197.53516 L 24.014163,197.53516 L 24.014163,195.53516 L 26.264163,195.53516 L 35.889163,201.53516 L 35.889163,215.16016 z" + id="path10" + style="fill:url(#linearGradient3411);fill-opacity:1;stroke:#a97513;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 106.05314,187.28516 L 116.92814,187.28516 L 116.92814,191.78516 L 114.92814,191.78516 L 114.92814,190.28516 L 110.42814,190.28516 L 110.42814,201.78516 L 114.92814,201.78516 L 114.92814,200.28516 L 116.92814,200.28516 L 116.92814,204.66016 L 110.42814,204.66016 L 96.428141,213.16016 L 94.178141,213.16016 L 94.178141,215.16016 L 91.428141,215.16016 L 91.428141,204.91016 L 94.178141,204.91016 L 94.178141,206.91016 L 96.428141,206.91016 L 106.05314,200.91016 L 106.05314,187.28516 z" + id="path2796" + style="fill:url(#linearGradient3419);fill-opacity:1;stroke:#a97513;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 26.264165,62.7824 L 46.764165,62.7824 L 46.764165,67.2824 L 44.764165,67.2824 L 44.764165,65.7824 L 40.264165,65.7824 L 40.264165,77.2824 L 44.764165,77.2824 L 44.764165,75.7824 L 46.764165,75.7824 L 46.764165,83.7824 L 44.764165,83.7824 L 44.764165,82.2824 L 40.264165,82.2824 L 40.264165,93.8869 L 44.764165,93.8869 L 44.764165,92.2824 L 46.764165,92.2824 L 46.764165,97.2824 L 26.264165,97.2824 L 26.264165,83.0324 L 24.014165,83.0324 L 24.014165,85.0324 L 21.264165,85.0324 L 21.264165,74.7824 L 24.014165,74.7824 L 24.014165,76.7824 L 26.264165,76.7824 L 26.264165,62.7824 z" + id="path3132" + style="fill:url(#linearGradient3255);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="21.014164" + y="70.794121" + id="text3134" + style="font-size:6px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="34.014164" + y="83.794121" + id="tspan3136" + style="font-size:11px">+</tspan> + </text> + <path + d="M 26.264163,104.28331 L 46.764163,104.28331 L 46.764163,108.78331 L 44.764163,108.78331 L 44.764163,107.28331 L 40.264163,107.28331 L 40.264163,118.78331 L 44.764163,118.78331 L 44.764163,117.28331 L 46.764163,117.28331 L 46.764163,125.28331 L 44.764163,125.28331 L 44.764163,123.78331 L 40.264163,123.78331 L 40.264163,135.38781 L 44.764163,135.38781 L 44.764163,133.78331 L 46.764163,133.78331 L 46.764163,138.78331 L 26.264163,138.78331 L 26.264163,124.53331 L 24.014163,124.53331 L 24.014163,126.53331 L 21.264163,126.53331 L 21.264163,116.28331 L 24.014163,116.28331 L 24.014163,118.28331 L 26.264163,118.28331 L 26.264163,104.28331 z" + id="path3441" + style="fill:url(#linearGradient3271);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="21.014164" + y="112.29504" + id="text3443" + style="font-size:6px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="34.014164" + y="125.29504" + id="tspan3445" + style="font-size:11px">x</tspan> + </text> + <path + d="M 91.61564,62.7824 L 112.24064,62.7824 L 112.24064,67.2824 L 110.11564,67.2824 L 110.11564,65.7824 L 105.61564,65.7824 L 105.61564,77.2824 L 110.11564,77.2824 L 110.11564,75.7824 L 112.24064,75.7824 L 112.24064,79.7824 L 121.74064,79.7824 L 121.74064,83.7824 L 119.74064,83.7824 L 119.74064,82.2824 L 115.24064,82.2824 L 115.24064,93.8869 L 119.74064,93.8869 L 119.74064,92.2824 L 121.74064,92.2824 L 121.74064,97.2824 L 91.61564,97.2824 L 91.61564,83.0324 L 89.36564,83.0324 L 89.36564,85.0324 L 86.61564,85.0324 L 86.61564,74.7824 L 89.36564,74.7824 L 89.36564,76.7824 L 91.61564,76.7824 L 91.61564,62.7824 z" + id="path4413" + style="fill:url(#linearGradient3263);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="90.365639" + y="70.794121" + id="text4415" + style="font-size:6px;text-align:center;text-anchor:middle;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;font-family:Bitstream Vera Sans"> + <tspan + x="103.36564" + y="91.407402" + id="tspan4417" + style="font-size:11px;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none">–</tspan> + </text> + <path + d="M 91.61564,104.28331 L 112.24064,104.28331 L 112.24064,108.78331 L 110.11564,108.78331 L 110.11564,107.28331 L 105.61564,107.28331 L 105.61564,118.78331 L 110.11564,118.78331 L 110.11564,117.28331 L 112.24064,117.28331 L 112.24064,121.28331 L 121.74064,121.28331 L 121.74064,125.28331 L 119.74064,125.28331 L 119.74064,123.78331 L 115.24064,123.78331 L 115.24064,135.38781 L 119.74064,135.38781 L 119.74064,133.78331 L 121.74064,133.78331 L 121.74064,138.78331 L 91.61564,138.78331 L 91.61564,124.53332 L 89.36564,124.53332 L 89.36564,126.53332 L 86.61564,126.53332 L 86.61564,116.28331 L 89.36564,116.28331 L 89.36564,118.28331 L 91.61564,118.28331 L 91.61564,104.28331 z" + id="path4435" + style="fill:url(#linearGradient3279);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="90.365639" + y="112.29504" + id="text4437" + style="font-size:6px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="103.36564" + y="132.90833" + id="tspan4439" + style="font-size:11px">/</tspan> + </text> + <path + d="M 21.45166,145.78423 L 42.07666,145.78423 L 42.07666,150.28423 L 39.95166,150.28423 L 39.95166,148.78423 L 35.45166,148.78423 L 35.45166,160.28423 L 39.95166,160.28423 L 39.95166,158.78423 L 42.07666,158.78423 L 42.07666,162.78423 L 51.57666,162.78423 L 51.57666,166.78423 L 49.57666,166.78423 L 49.57666,165.28423 L 45.07666,165.28423 L 45.07666,176.88873 L 49.57666,176.88873 L 49.57666,175.28423 L 51.57666,175.28423 L 51.57666,180.28423 L 21.45166,180.28423 L 21.45166,166.03423 L 19.20166,166.03423 L 19.20166,168.03423 L 16.45166,168.03423 L 16.45166,157.78423 L 19.20166,157.78423 L 19.20166,159.78423 L 21.45166,159.78423 L 21.45166,145.78423 z" + id="path4445" + style="fill:url(#linearGradient3287);fill-opacity:1;stroke:#a000a0;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="20.449238" + y="153.79596" + id="text4447" + style="font-size:6px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="33.449238" + y="174.40924" + id="tspan4449" + style="font-size:10px">mod</tspan> + </text> +</svg> diff --git a/images/en/numbers/numbersmask.svg b/images/en/numbers/numbersmask.svg index 193e7a3..7fcc732 100644 --- a/images/en/numbers/numbersmask.svg +++ b/images/en/numbers/numbersmask.svg @@ -1,74 +1,1127 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg + xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" height="500" - version="1.0"> + id="svg2"> + <defs + id="defs45"> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4496" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,33.139165,170.11248)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4491" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,33.139163,211.61339)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4486" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,95.74772,211.61338)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4481" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,95.74772,170.11247)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4476" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,25.58374,253.1143)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4451" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4441" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4431" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-107.9952,288.54552)" /> + <linearGradient + id="linearGradient4389"> + <stop + id="stop4391" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4393" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4395" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient4397" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient4399"> + <stop + id="stop4401" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4403" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4405" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4407" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4409" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="84.393837" + y1="150.49895" + x2="121.72736" + y2="150.49895" + id="linearGradient4285" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-4.882461,18)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4273" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,311.64069,549.59336)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4269" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,181.07388,553.64194)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4242" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,383.87753,545.54478)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4237" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,445.61842,548.58121)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4232" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,311.64069,549.59336)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4227" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,240.79048,553.64194)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient4222" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,181.07388,553.64194)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3447" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> + <linearGradient + id="linearGradient3417"> + <stop + id="stop3419" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3421" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3423" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3425" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient3427"> + <stop + id="stop3429" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3431" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3433" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3435" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3437" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3293" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> + <linearGradient + id="linearGradient3263"> + <stop + id="stop3265" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3267" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3269" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3271" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient3273"> + <stop + id="stop3275" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3277" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3279" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3281" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3283" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3138" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> + <linearGradient + id="linearGradient3108"> + <stop + id="stop3110" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3112" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3114" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3116" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient3118"> + <stop + id="stop3120" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3122" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3124" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3126" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3128" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3024" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> + <linearGradient + id="linearGradient2994"> + <stop + id="stop2996" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2998" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3000" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3002" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient3004"> + <stop + id="stop3006" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3008" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3010" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3012" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3014" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2910" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,24.5,215.41016)" /> + <linearGradient + id="linearGradient2882"> + <stop + id="stop2884" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2886" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2888" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2890" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2892"> + <stop + id="stop2894" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2896" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2898" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2900" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2902" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2798" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,50.790988,326.09766)" /> + <linearGradient + id="linearGradient2774"> + <stop + id="stop2776" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2778" + style="stop-color:#ffc000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2780" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2782" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2784"> + <stop + id="stop2786" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2788" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2790" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2792" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2794" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffc000;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,21.014163,215.41015)" /> + <linearGradient + x1="43.416519" + y1="448.5" + x2="92.750099" + y2="448.5" + id="linearGradient2584" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(36.437247,-46.558704)" /> + <linearGradient + x1="44.999863" + y1="402.5" + x2="100.00014" + y2="402.5" + id="linearGradient2582" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32,0)" /> + <linearGradient + x1="43.416519" + y1="448.5" + x2="92.750099" + y2="448.5" + id="linearGradient3790" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(36.437247,-46.558704)" /> + <linearGradient + x1="44.999863" + y1="402.5" + x2="100.00014" + y2="402.5" + id="linearGradient3782" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32,0)" /> + <linearGradient + x1="77.666512" + y1="359.5" + x2="139.33348" + y2="359.5" + id="linearGradient3774" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,12)" /> + <linearGradient + x1="8.1665125" + y1="360" + x2="69.833488" + y2="360" + id="linearGradient3765" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,12)" /> + <linearGradient + x1="1.2215077" + y1="318" + x2="143.7785" + y2="318" + id="linearGradient3757" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,14)" /> + <linearGradient + x1="1.2215077" + y1="278.5" + x2="143.7785" + y2="278.5" + id="linearGradient3749" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,26)" /> + <linearGradient + x1="1.2215077" + y1="235" + x2="143.7785" + y2="235" + id="linearGradient3741" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,42)" /> + <linearGradient + x1="10.277154" + y1="192.5" + x2="134.72285" + y2="192.5" + id="linearGradient3733" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,48)" /> + <linearGradient + x1="84.393837" + y1="150.49895" + x2="121.72736" + y2="150.49895" + id="linearGradient3725" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-4.882461,18)" /> + <linearGradient + x1="15.999892" + y1="150.49895" + x2="59.000107" + y2="150.49895" + id="linearGradient3717" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="85.560509" + y1="114.35662" + x2="120.56069" + y2="114.35662" + id="linearGradient3709" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="19.999912" + y1="114.35662" + x2="55.000088" + y2="114.35662" + id="linearGradient3701" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="85.560509" + y1="78.214287" + x2="120.56069" + y2="78.214287" + id="linearGradient3693" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="19.999912" + y1="78.214287" + x2="55.000088" + y2="78.214287" + id="linearGradient3685" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37.33316" + y1="41.5" + x2="107.66684" + y2="41.5" + id="linearGradient3677" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient5187" + xlink:href="#linearGradient3049" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.66667,0,0,0.66667,147.83371,171.83398)" /> + <linearGradient + id="linearGradient5166"> + <stop + id="stop5168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop5170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3165" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-274.41338,253.11142)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3170" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-204.2494,211.6105)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3175" + xlink:href="#linearGradient3417" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-204.2494,170.10959)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3180" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-266.85796,211.61051)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3185" + xlink:href="#linearGradient2480" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.25,0,0,-0.25,-266.85795,170.1096)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3188" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,-249.20613,326.09478)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3191" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.5,0,0,-0.5,-278.98296,215.40727)" /> + <linearGradient + x1="77.666512" + y1="359.5" + x2="139.33348" + y2="359.5" + id="linearGradient3212" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,11.99712)" /> + <linearGradient + x1="8.1665125" + y1="360" + x2="69.833488" + y2="360" + id="linearGradient3217" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,11.99712)" /> + <linearGradient + x1="1.2215077" + y1="235" + x2="143.7785" + y2="235" + id="linearGradient3224" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,41.99712)" /> + <linearGradient + x1="1.2215077" + y1="278.5" + x2="143.7785" + y2="278.5" + id="linearGradient3231" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,25.99712)" /> + <linearGradient + x1="1.2215077" + y1="318" + x2="143.7785" + y2="318" + id="linearGradient3238" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,13.99712)" /> + <linearGradient + x1="10.277154" + y1="192.5" + x2="134.72285" + y2="192.5" + id="linearGradient3245" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,47.99712)" /> + <linearGradient + x1="37.33316" + y1="41.5" + x2="107.66684" + y2="41.5" + id="linearGradient3253" + xlink:href="#linearGradient5166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-299.99712,-2.88e-3)" /> + </defs> <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" width="143" height="440" x="1" - y="30" /> + y="30" + id="rect4" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> <rect - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" width="145" height="29" x="0" - y="0" /> + y="0" + id="rect6" + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" - d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" /> + d="M 0,470 L 0,486 L 3,493 L 8,497 L 15,499 L 129,499 L 136,497 L 142,492 L 145,484 L 145,470 L 0,470 z" + id="path8" + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> <path d="M 39,36 L 42,36 L 42,38 L 47,38 L 47,36 L 108,36 L 108,49 L 47,49 L 47,46 L 42,46 L 42,49 L 39,49 L 39,36 z" + id="path10" style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" - d="M 21,67 L 55,67 L 55,73 L 53,73 L 53,71 L 47,71 L 47,86 L 53,86 L 53,84 L 55,84 L 55,91 L 21,91 L 21,86 L 29,86 L 29,71 L 21,71 L 21,67 z" /> + d="M 122,151.5 L 100,151.5 L 98,153.5 L 96,154.5 L 95,157.5 L 95,159.5 L 90,159.5 L 90,157.5 L 86,157.5 L 86,170.5 L 90,170.5 L 90,168.5 L 95,168.5 L 95,172.5 L 96,174.5 L 99,175.5 L 122,175.5 L 122,169.5 L 119,169.5 L 119,171.5 L 113,171.5 L 113,156.5 L 119,156.5 L 119,158.5 L 122,158.5 L 122,151.5 z" + id="path22" + style="fill:#404040;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" - d="M 87,67 L 121,67 L 121,73 L 118,73 L 118,71 L 112,71 L 112,86 L 118,86 L 118,84 L 121,84 L 121,91 L 87,91 L 87,86 L 95,86 L 95,71 L 87,71 L 87,67 z" /> + d="M 126,230 L 21,230 L 20,231 L 18,232 L 17,234 L 17,239 L 14,239 L 14,238 L 11,238 L 12,247 L 14,247 L 14,245 L 17,245 L 17,249 L 18,250 L 20,250 L 130,251 L 130,247 L 135,247 L 135,238 L 130,238 L 130,233 L 129,232 L 127,230 L 126,230 L 126,230" + id="path24" + style="fill:#585858;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" - d="M 21,103 L 55,103 L 55,109 L 53,109 L 53,107 L 47,107 L 47,123 L 53,123 L 53,121 L 55,121 L 55,127 L 21,127 L 21,123 L 29,123 L 29,107 L 21,107 L 21,103 z" /> + d="M 132,323.5 L 14,323.5 L 11,324.5 L 6,326.5 L 4,329.5 L 3,331.5 L 2,332.5 L 2,333.5 L 3,335.5 L 6,337.5 L 9,338.5 L 11,339.5 L 14,340.5 L 132,340.5 L 137,339.5 L 140,337.5 L 143,335.5 L 144,333.5 L 144,332.5 L 144,329.5 L 141,327.5 L 138,325.5 L 135,324.5 L 132,323.5 z" + id="path26" + style="fill:#707070;fill-opacity:1;stroke:#606060;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" - d="M 87,103 L 121,103 L 121,109 L 118,109 L 118,107 L 112,107 L 112,123 L 118,123 L 118,121 L 121,121 L 121,127 L 87,127 L 87,123 L 95,123 L 95,107 L 87,107 L 87,103 z" /> + d="M 132,296.5 L 14,296.5 L 11,297.5 L 6,299.5 L 4,301.5 L 3,303.5 L 2,304.5 L 2,306.5 L 3,307.5 L 6,309.5 L 9,311.5 L 11,312.5 L 14,313.5 L 132,313.5 L 137,311.5 L 140,310.5 L 143,308.5 L 144,306.5 L 144,304.5 L 144,302.5 L 141,299.5 L 138,298.5 L 135,297.5 L 132,296.5 z" + id="path28" + style="fill:#686868;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 17,139 L 59,139 L 59,145 L 57,145 L 57,143 L 50,143 L 50,159 L 57,159 L 57,157 L 59,157 L 59,163 L 17,163 L 17,159 L 25,159 L 25,143 L 17,143 L 17,139 z" /> + d="M 132,268.5 L 14,268.5 L 11,269.5 L 6,271.5 L 4,274.5 L 3,276.5 L 2,277.5 L 2,278.5 L 3,280.5 L 6,282.5 L 9,283.5 L 11,284.5 L 14,285.5 L 132,285.5 L 137,284.5 L 140,282.5 L 143,280.5 L 144,278.5 L 144,277.5 L 144,274.5 L 141,272.5 L 138,270.5 L 135,269.5 L 132,268.5 z" + id="path30" + style="fill:#606060;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" - d="M 122,139 L 100,139 L 98,141 L 96,142 L 95,145 L 95,147 L 90,147 L 90,145 L 86,145 L 86,158 L 90,158 L 90,156 L 95,156 L 95,160 L 96,162 L 99,163 L 122,163 L 122,157 L 119,157 L 119,159 L 113,159 L 113,144 L 119,144 L 119,146 L 122,146 L 122,139 z" /> + d="M 10,357.5 L 70,357.5 L 70,359.5 L 65,360.5 L 61,361.5 L 58,363.5 L 54,366.5 L 53,368.5 L 52,371.5 L 52,374.5 L 54,377.5 L 56,379.5 L 60,381.5 L 63,383.5 L 67,384.5 L 70,385.5 L 70,387.5 L 10,387.5 L 10,385.5 L 14,384.5 L 19,382.5 L 23,381.5 L 25,379.5 L 27,376.5 L 28,374.5 L 28,371.5 L 28,369.5 L 27,367.5 L 25,365.5 L 22,363.5 L 19,361.5 L 15,360.5 L 10,359.5 L 10,357.5 z" + id="path32" + style="fill:#787878;fill-opacity:1;stroke:#686868;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" - d="M 126,183 L 21,183 L 20,184 L 18,185 L 17,187 L 17,192 L 14,192 L 14,191 L 11,191 L 12,200 L 14,200 L 14,198 L 17,198 L 17,202 L 18,203 L 20,203 L 130,204 L 130,200 L 135,200 L 135,191 L 130,191 L 130,186 L 129,185 L 127,183 L 126,183 L 126,183" /> + d="M 79,356.5 L 140,356.5 L 140,359.5 L 134,359.5 L 130,361.5 L 127,362.5 L 124,365.5 L 122,368.5 L 121,371.5 L 122,373.5 L 123,377.5 L 126,379.5 L 129,381.5 L 132,382.5 L 136,383.5 L 140,384.5 L 140,386.5 L 79,386.5 L 79,384.5 L 84,383.5 L 88,382.5 L 92,380.5 L 95,378.5 L 96,376.5 L 97,373.5 L 97,371.5 L 97,369.5 L 96,367.5 L 94,364.5 L 92,362.5 L 88,360.5 L 84,359.5 L 79,359.5 L 79,356.5 z" + id="path34" + style="fill:#808080;fill-opacity:1;stroke:#707070;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#606060;fill-opacity:1;stroke:#606060;stroke-width:1;stroke-opacity:1" - d="M 132,310 L 14,310 L 11,311 L 6,313 L 4,316 L 3,318 L 2,319 L 2,320 L 3,322 L 6,324 L 9,325 L 11,326 L 14,327 L 132,327 L 137,326 L 140,324 L 143,322 L 144,320 L 144,319 L 144,316 L 141,314 L 138,312 L 135,311 L 132,310 z" /> + d="M 100,396.5 L 80,396.5 L 71,396.5 L 63,398.5 L 56,400.5 L 51,402.5 L 48,405.5 L 47,408.5 L 46,410.5 L 47,412.5 L 48,415.5 L 50,417.5 L 54,419.5 L 60,421.5 L 65,423.5 L 72,424.5 L 80,425.5 L 100,425.5 L 100,423.5 L 96,422.5 L 92,421.5 C 91,420.5 92,421.5 89,419.5 L 86,417.5 L 83,414.5 L 82,410.5 L 84,406.5 L 87,403.5 L 92,400.5 L 96,399.5 L 100,398.5 L 100,396.5" + id="path36" + style="fill:#888888;fill-opacity:1;stroke:#787878;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" - d="M 132,271 L 14,271 L 11,272 L 6,274 L 4,276 L 3,278 L 2,279 L 2,281 L 3,282 L 6,284 L 9,286 L 11,287 L 14,288 L 132,288 L 137,286 L 140,285 L 143,283 L 144,281 L 144,279 L 144,277 L 141,274 L 138,273 L 135,272 L 132,271 z" /> + d="M 91,439 L 102,439 L 102,443 L 99,443 L 99,441 L 92,441" + id="path38" + style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" - d="M 132,227 L 14,227 L 11,228 L 6,230 L 4,233 L 3,235 L 2,236 L 2,237 L 3,239 L 6,241 L 9,242 L 11,243 L 14,244 L 132,244 L 137,243 L 140,241 L 143,239 L 144,237 L 144,236 L 144,233 L 141,231 L 138,229 L 135,228 L 132,227 z" /> + d="M 91,457 L 102,457 L 102,453 L 99,453 L 99,455 L 92,455" + id="path40" + style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#686868;fill-opacity:1;stroke:#686868;stroke-width:1;stroke-opacity:1" - d="M 10,346 L 70,346 L 70,348 L 65,349 L 61,350 L 58,352 L 54,355 L 53,357 L 52,360 L 52,363 L 54,366 L 56,368 L 60,370 L 63,372 L 67,373 L 70,374 L 70,376 L 10,376 L 10,374 L 14,373 L 19,371 L 23,370 L 25,368 L 27,365 L 28,363 L 28,360 L 28,358 L 27,356 L 25,354 L 22,352 L 19,350 L 15,349 L 10,348 L 10,346 z" /> + d="M 76,438.5 C 87,438.5 87,438.5 87,438.5 L 91,441.5 L 93,445.5 L 93,458.5 L 91,461.5 L 87,464.5 L 76,464.5 L 76,464.5 L 76,466.5 L 62,466.5 L 62,464.5 L 51,464.5 L 47,461.5 L 45,458.5 L 45,445.5 L 47,441.5 L 51,438.5 L 62,438.5 L 62,442.5 L 76,442.5 L 76,438.5 z" + id="path42" + style="fill:#909090;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#707070;fill-opacity:1;stroke:#707070;stroke-width:1;stroke-opacity:1" - d="M 79,345 L 140,345 L 140,348 L 134,348 L 130,350 L 127,351 L 124,354 L 122,357 L 121,360 L 122,362 L 123,366 L 126,368 L 129,370 L 132,371 L 136,372 L 140,373 L 140,375 L 79,375 L 79,373 L 84,372 L 88,371 L 92,369 L 95,367 L 96,365 L 97,362 L 97,360 L 97,358 L 96,356 L 94,353 L 92,351 L 88,349 L 84,348 L 79,348 L 79,345 z" /> + d="M 37.643216,215.5 L 48.518216,215.5 L 48.518216,211 L 46.518216,211 L 46.518216,212.5 L 42.018216,212.5 L 42.018216,201 L 46.518216,201 L 46.518216,202.5 L 48.518216,202.5 L 48.518216,198.125 L 42.018216,198.125 L 41.77105,189.68559 L 25.768216,189.625 L 25.768216,187.625 L 23.018216,187.625 L 23.018216,197.875 L 25.768216,197.875 L 25.768216,195.875 L 28.018216,195.875 L 28.010174,215.44608 L 37.643216,215.5 z" + id="path3280" + style="fill:#484848;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#787878;fill-opacity:1;stroke:#787878;stroke-width:1;stroke-opacity:1" - d="M 100,389 L 80,389 L 71,389 L 63,391 L 56,393 L 51,395 L 48,398 L 47,401 L 46,403 L 47,405 L 48,408 L 50,410 L 54,412 L 60,414 L 65,416 L 72,417 L 80,418 L 100,418 L 100,416 L 96,415 L 92,414 C 91,413 92,414 89,412 L 86,410 L 83,407 L 82,403 L 84,399 L 87,396 L 92,393 L 96,392 L 100,391 L 100,389" /> + d="M 107.8072,187.625 L 118.6822,187.625 L 118.6822,192.125 L 116.6822,192.125 L 116.6822,190.625 L 112.1822,190.625 L 112.1822,202.125 L 116.6822,202.125 L 116.6822,200.625 L 118.6822,200.625 L 118.6822,205 L 118.84657,213.23958 L 98.182196,213.5 L 95.932196,213.5 L 95.932196,215.5 L 93.182196,215.5 L 93.182196,205.25 L 95.932196,205.25 L 95.932196,207.25 L 98.182196,207.25 L 98.295328,187.61834 L 107.8072,187.625 z" + id="path3282" + style="fill:#505050;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" - d="M 91,439 L 102,439 L 102,443 L 99,443 L 99,441 L 92,441" /> + d="M 27.006062,62.998163 L 47.506062,62.998163 L 47.506062,67.498163 L 45.506062,67.498163 L 45.506062,65.998163 L 41.006062,65.998163 L 41.006062,77.498163 L 45.506062,77.498163 L 45.506062,75.998163 L 47.506062,75.998163 L 47.506062,83.998163 L 45.506062,83.998163 L 45.506062,82.498163 L 41.006062,82.498163 L 41.006062,94.102668 L 45.506062,94.102668 L 45.506062,92.498163 L 47.506062,92.498163 L 47.506062,97.498168 L 27.006062,97.498168 L 27.006062,83.248163 L 24.756062,83.248163 L 24.756062,85.248163 L 22.006062,85.248163 L 22.006062,74.998163 L 24.756062,74.998163 L 24.756062,76.998163 L 27.006062,76.998163 L 27.006062,62.998163 z" + id="path3288" + style="fill:#181818;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" - d="M 91,457 L 102,457 L 102,453 L 99,453 L 99,455 L 92,455" /> + d="M 27.006062,104.49908 L 47.506062,104.49908 L 47.506062,108.99908 L 45.506062,108.99908 L 45.506062,107.49908 L 41.006062,107.49908 L 41.006062,118.99908 L 45.506062,118.99908 L 45.506062,117.49908 L 47.506062,117.49908 L 47.506062,125.49908 L 45.506062,125.49908 L 45.506062,123.99908 L 41.006062,123.99908 L 41.006062,135.60358 L 45.506062,135.60358 L 45.506062,133.99908 L 47.506062,133.99908 L 47.506062,138.99908 L 27.006062,138.99908 L 27.006062,124.74908 L 24.756062,124.74908 L 24.756062,126.74908 L 22.006062,126.74908 L 22.006062,116.49908 L 24.756062,116.49908 L 24.756062,118.49908 L 27.006062,118.49908 L 27.006062,104.49908 z" + id="path3290" + style="fill:#282828;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" - d="M 76,435 C 87,435 87,435 87,435 L 91,438 L 93,442 L 93,455 L 91,458 L 87,461 L 76,461 L 76,461 L 76,463 L 62,463 L 62,461 L 51,461 L 47,458 L 45,455 L 45,442 L 47,438 L 51,435 L 62,435 L 62,439 L 76,439 L 76,435 z" /> + d="M 92.357542,62.998163 L 112.98254,62.998163 L 112.98254,67.498163 L 110.85754,67.498163 L 110.85754,65.998163 L 106.35754,65.998163 L 106.35754,77.498163 L 110.85754,77.498163 L 110.85754,75.998163 L 112.98254,75.998163 L 112.98254,79.998163 L 122.48254,79.998163 L 122.48254,83.998163 L 120.48254,83.998163 L 120.48254,82.498163 L 115.98254,82.498163 L 115.98254,94.102668 L 120.48254,94.102668 L 120.48254,92.498163 L 122.48254,92.498163 L 122.48254,97.498168 L 92.357542,97.498168 L 92.357542,83.248163 L 90.107542,83.248163 L 90.107542,85.248163 L 87.357542,85.248163 L 87.357542,74.998163 L 90.107542,74.998163 L 90.107542,76.998163 L 92.357542,76.998163 L 92.357542,62.998163 z" + id="path3292" + style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 22.193562,146 L 42.818562,146 L 42.818562,150.5 L 40.693562,150.5 L 40.693562,149 L 36.193562,149 L 36.193562,160.5 L 40.693562,160.5 L 40.693562,159 L 42.818562,159 L 42.818562,163 L 52.318562,163 L 52.318562,167 L 50.318562,167 L 50.318562,165.5 L 45.818562,165.5 L 45.818562,177.1045 L 50.318562,177.1045 L 50.318562,175.5 L 52.318562,175.5 L 52.318562,180.5 L 22.193562,180.5 L 22.193562,166.25 L 19.943562,166.25 L 19.943562,168.25 L 17.193562,168.25 L 17.193562,158 L 19.943562,158 L 19.943562,160 L 22.193562,160 L 22.193562,146 z" + id="path3298" + style="fill:#383838;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 91.688511,105 L 112.31351,105 L 112.31351,109.5 L 110.18851,109.5 L 110.18851,108 L 105.68851,108 L 105.68851,119.5 L 110.18851,119.5 L 110.18851,118 L 112.31351,118 L 112.31351,122 L 121.81351,122 L 121.81351,126 L 119.81351,126 L 119.81351,124.5 L 115.31351,124.5 L 115.31351,136.1045 L 119.81351,136.1045 L 119.81351,134.5 L 121.81351,134.5 L 121.81351,139.5 L 91.688511,139.5 L 91.688511,125.25001 L 89.438511,125.25001 L 89.438511,127.25001 L 86.688511,127.25001 L 86.688511,117 L 89.438511,117 L 89.438511,119 L 91.688511,119 L 91.688511,105 z" + id="path3308" + style="fill:#303030;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </svg> diff --git a/images/en/numbers/plus.svg b/images/en/numbers/plus.svg index f271826..ff30535 100644 --- a/images/en/numbers/plus.svg +++ b/images/en/numbers/plus.svg @@ -29,15 +29,6 @@ <path style="fill:url(#linearGradient3173);stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1;fill-opacity:1.0" d="M 0.5,0.5 L 51.5,0.5 L 51.5,9.5 L 47.5,9.5 L 47.5,6.5 L 38.5,6.5 L 38.5,29.5 L 47.5,29.5 L 47.5,26.5 L 51.5,26.5 L 51.5,36.5 L 0.5,36.5 L 0.5,29.5 L 12.5,29.5 L 12.5,6.5 L 0.5,6.5 L 0.5,0.5 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 1.5,1.5 L 51,1.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 39,7.5 L 47,7.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 38,30.5 L 48,30.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/numbers/plus2.svg b/images/en/numbers/plus2.svg new file mode 100644 index 0000000..9029925 --- /dev/null +++ b/images/en/numbers/plus2.svg @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="52.5" + height="70.5" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 10.75,0.75 L 51.75,0.75 L 51.75,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 51.75,26.75 L 51.75,42.75 L 47.75,42.75 L 47.75,39.75 L 38.75,39.75 L 38.75,62.959 L 47.75,62.959 L 47.75,59.75 L 51.75,59.75 L 51.75,69.75 L 10.75,69.75 L 10.75,41.25 L 6.25,41.25 L 6.25,45.25 L 0.75,45.25 L 0.75,24.75 L 6.25,24.75 L 6.25,28.75 L 10.75,28.75 L 10.75,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" /> + <text + x="0.25" + y="16.773438" + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="26.25" + y="42.773438" + id="tspan14" + style="font-size:24px">+</tspan> + </text> +</svg> diff --git a/images/en/numbers/print.svg b/images/en/numbers/print.svg index 258d503..ad0eebb 100644 --- a/images/en/numbers/print.svg +++ b/images/en/numbers/print.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#a000a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/numbers/product.svg b/images/en/numbers/product.svg index 28eda4b..576934b 100644 --- a/images/en/numbers/product.svg +++ b/images/en/numbers/product.svg @@ -29,15 +29,6 @@ <path style="fill:url(#linearGradient3173);stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1;fill-opacity:1.0" d="M 0.5,0.5 L 51.5,0.5 L 51.5,9.5 L 47.5,9.5 L 47.5,6.5 L 38.5,6.5 L 38.5,29.5 L 47.5,29.5 L 47.5,26.5 L 51.5,26.5 L 51.5,36.5 L 0.5,36.5 L 0.5,29.5 L 12.5,29.5 L 12.5,6.5 L 0.5,6.5 L 0.5,0.5 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 1.5,1.5 L 51,1.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 39,7.5 L 47,7.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 38,30.5 L 48,30.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/numbers/product2.svg b/images/en/numbers/product2.svg new file mode 100644 index 0000000..0d4eb1d --- /dev/null +++ b/images/en/numbers/product2.svg @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="52.5" + height="70.5" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 10.75,0.75 L 51.75,0.75 L 51.75,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 51.75,26.75 L 51.75,42.75 L 47.75,42.75 L 47.75,39.75 L 38.75,39.75 L 38.75,62.959 L 47.75,62.959 L 47.75,59.75 L 51.75,59.75 L 51.75,69.75 L 10.75,69.75 L 10.75,41.25 L 6.25,41.25 L 6.25,45.25 L 0.75,45.25 L 0.75,24.75 L 6.25,24.75 L 6.25,28.75 L 10.75,28.75 L 10.75,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" /> + <text + x="0.25" + y="16.773438" + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="26.25" + y="42.773438" + id="tspan14" + style="font-size:24px">x</tspan> + </text> +</svg> diff --git a/images/en/numbers/remainder.svg b/images/en/numbers/remainder.svg index d7efdf9..71e8813 100644 --- a/images/en/numbers/remainder.svg +++ b/images/en/numbers/remainder.svg @@ -30,15 +30,6 @@ <path style="fill:url(#linearGradient3165);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" d="M 0.5,0.5 L 63.5,0.5 L 63.5,9.5 L 59.5,9.5 L 59.5,6.5 L 50,6.5 L 50,29.5 L 59.5,29.5 L 59.5,26.5 L 63.5,26.5 L 63.5,36.5 L 0.5,36.5 L 0.5,29.5 L 12.5,29.5 L 12.5,6.5 L 0.5,6.5 L 0.5,0.5 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 1.5,1.5 L 63,1.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 51,7.5 L 59,7.5" /> - <path - style="fill:none;stroke:#600060;stroke-width:1;stroke-opacity:1" - d="M 50,30.5 L 60,30.5" /> <text style="font-size:14px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/numbers/remainder2.svg b/images/en/numbers/remainder2.svg new file mode 100644 index 0000000..585d9ec --- /dev/null +++ b/images/en/numbers/remainder2.svg @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="71.75" + height="70.5" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient3173" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-0.2720588,8.0000002)" /> + <linearGradient + id="linearGradient2480"> + <stop + id="stop2482" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2484" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2490" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.78e-7,29.691177)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(8.8e-8,33.25)" /> + <linearGradient + x1="-0.25" + y1="18.5" + x2="52.25" + y2="18.5" + id="linearGradient2495" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.25,0.25)" /> + </defs> + <path + d="M 10.75,0.75 L 52,0.75 L 52,9.75 L 47.75,9.75 L 47.75,6.75 L 38.75,6.75 L 38.75,29.75 L 47.75,29.75 L 47.75,26.75 L 52,26.75 L 52,34.75 L 71,34.75 L 71,42.75 L 67,42.75 L 67,39.75 L 58,39.75 L 58,62.959 L 67,62.959 L 67,59.75 L 71,59.75 L 71,69.75 L 10.75,69.75 L 10.75,41.25 L 6.25,41.25 L 6.25,45.25 L 0.75,45.25 L 0.75,24.75 L 6.25,24.75 L 6.25,28.75 L 10.75,28.75 L 10.75,0.75 z" + id="path10" + style="fill:url(#linearGradient2495);fill-opacity:1;stroke:#a000a0;stroke-width:1.5px;stroke-opacity:1" /> + <text + x="8.25" + y="16.773438" + id="text12" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="34.25" + y="58" + id="tspan14" + style="font-size:18px">mod</tspan> + </text> +</svg> diff --git a/images/en/palette/flowoff.svg b/images/en/palette/flowoff.svg index a587c0f..e372e37 100644 --- a/images/en/palette/flowoff.svg +++ b/images/en/palette/flowoff.svg @@ -1,106 +1,38 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="flowoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="21.875" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> - <path - sodipodi:type="star" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:3;stroke-opacity:1" - id="path2386" - sodipodi:sides="3" - sodipodi:cx="23.827452" - sodipodi:cy="21.192158" - sodipodi:r1="6.019218" - sodipodi:r2="3.009609" - sodipodi:arg1="-0.90175333" - sodipodi:arg2="0.14544422" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" - transform="translate(7.9058824,0.8784313)" /> - <path - sodipodi:type="star" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:3;stroke-opacity:1" - id="path2388" - sodipodi:sides="3" - sodipodi:cx="23.827452" - sodipodi:cy="21.192158" - sodipodi:r1="6.019218" - sodipodi:r2="3.009609" - sodipodi:arg1="-0.90175333" - sodipodi:arg2="0.14544422" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" - transform="matrix(-0.9848078,-0.1736482,-0.1736482,0.9848078,39.492987,16.877786)" /> - <path - style="fill:none;stroke:#808080;stroke-width:5;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" - d="M 14.27451,37.223529 C 14.27451,37.32492 16.344566,38.720174 18.647855,39.476087 C 20.253989,40.003202 22.029944,39.993789 23.058823,39.968628 C 24.810658,39.925788 26.821133,38.886817 28.544961,37.673833 C 30.918917,36.003381 32.749242,34.00291 32.611765,33.819608 L 32.611765,33.819608 L 32.721569,33.819608" - id="path2390" - sodipodi:nodetypes="csssccc" /> - <path - style="fill:none;stroke:#808080;stroke-width:5;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" - d="M 29.866667,17.353553 C 29.866667,17.252162 27.796611,15.856908 25.493322,15.100995 C 23.887188,14.57388 22.111233,14.583293 21.082354,14.608454 C 19.330519,14.651294 17.320044,15.690265 15.596216,16.903249 C 13.22226,18.573701 11.391935,20.574172 11.529412,20.757474 L 11.529412,20.757474 L 11.419608,20.757474" - id="path3162" - sodipodi:nodetypes="csssccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(-0.8271329,0.7070503)" + id="g3163"> + <path + d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" + transform="translate(8.1558824,1.1284313)" + id="path2386" + style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" /> + <path + d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" + transform="matrix(-0.9848078,-0.1736482,-0.1736482,0.9848078,39.742987,17.127786)" + id="path2388" + style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" /> + <path + d="M 14.52451,37.473529 C 14.52451,37.57492 16.594566,38.970174 18.897855,39.726087 C 20.503989,40.253202 22.279944,40.243789 23.308823,40.218628 C 25.060658,40.175788 27.071133,39.136817 28.794961,37.923833 C 31.168917,36.253381 32.999242,34.25291 32.861765,34.069608 L 32.861765,34.069608 L 32.971569,34.069608" + id="path2390" + style="fill:none;fill-opacity:1;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 30.716667,18.403553 C 30.716667,18.302162 25.524507,14.824454 21.332354,14.858454 C 17.140201,14.892454 11.631102,20.824172 11.779412,21.007474 C 11.779412,21.007474 11.779412,21.007474 11.779412,21.007474 C 11.742811,21.007474 11.706209,21.007474 11.669608,21.007474" + id="path3162" + style="fill:none;fill-opacity:1;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + </g> </svg> diff --git a/images/en/palette/flowon.svg b/images/en/palette/flowon.svg index 1402413..a6033eb 100644 --- a/images/en/palette/flowon.svg +++ b/images/en/palette/flowon.svg @@ -1,106 +1,37 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="flowon.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="10" - inkscape:cx="3.3882353" - inkscape:cy="21.901201" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#ffe000;stroke:#a06400;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> - <path - sodipodi:type="star" - style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" - id="path2386" - sodipodi:sides="3" - sodipodi:cx="23.827452" - sodipodi:cy="21.192158" - sodipodi:r1="6.019218" - sodipodi:r2="3.009609" - sodipodi:arg1="-0.90175333" - sodipodi:arg2="0.14544422" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" - transform="translate(7.9058824,0.8784313)" /> - <path - sodipodi:type="star" - style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" - id="path2388" - sodipodi:sides="3" - sodipodi:cx="23.827452" - sodipodi:cy="21.192158" - sodipodi:r1="6.019218" - sodipodi:r2="3.009609" - sodipodi:arg1="-0.90175333" - sodipodi:arg2="0.14544422" - inkscape:flatsided="true" - inkscape:rounded="0" - inkscape:randomized="0" - d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" - transform="matrix(-0.9848078,-0.1736482,-0.1736482,0.9848078,39.492987,16.877786)" /> - <path - style="fill:none;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" - d="M 14.27451,37.223529 C 14.27451,37.32492 16.344566,38.720174 18.647855,39.476087 C 20.253989,40.003202 22.029944,39.993789 23.058823,39.968628 C 24.810658,39.925788 26.821133,38.886817 28.544961,37.673833 C 30.918917,36.003381 32.749242,34.00291 32.611765,33.819608 L 32.611765,33.819608 L 32.721569,33.819608" - id="path2390" - sodipodi:nodetypes="csssccc" /> - <path - style="fill:none;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-opacity:1;fill-opacity:1" - d="M 29.866667,17.353553 C 29.866667,17.252162 27.796611,15.856908 25.493322,15.100995 C 23.887188,14.57388 22.111233,14.583293 21.082354,14.608454 C 19.330519,14.651294 17.320044,15.690265 15.596216,16.903249 C 13.22226,18.573701 11.391935,20.574172 11.529412,20.757474 L 11.529412,20.757474 L 11.419608,20.757474" - id="path3162" - sodipodi:nodetypes="csssccc" /> + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + <g + id="g3163"> + <path + d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" + transform="translate(8.1558824,1.1284313)" + id="path2386" + style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" /> + <path + d="M 27.560785,16.470589 L 26.049783,26.786103 L 17.871787,20.319781 L 27.560785,16.470589 z" + transform="matrix(-0.9848078,-0.1736482,-0.1736482,0.9848078,39.742987,17.127786)" + id="path2388" + style="opacity:1;fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:3;stroke-opacity:1" /> + <path + d="M 14.52451,37.473529 C 14.52451,37.57492 16.594566,38.970174 18.897855,39.726087 C 20.503989,40.253202 22.279944,40.243789 23.308823,40.218628 C 25.060658,40.175788 27.071133,39.136817 28.794961,37.923833 C 31.168917,36.253381 32.999242,34.25291 32.861765,34.069608 L 32.861765,34.069608 L 32.971569,34.069608" + id="path2390" + style="fill:none;fill-opacity:1;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + d="M 30.716667,18.403553 C 30.716667,18.302162 25.524507,14.824454 21.332354,14.858454 C 17.140201,14.892454 11.631102,20.824172 11.779412,21.007474 C 11.779412,21.007474 11.779412,21.007474 11.779412,21.007474 C 11.742811,21.007474 11.706209,21.007474 11.669608,21.007474" + id="path3162" + style="fill:none;fill-opacity:1;stroke:#a06400;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + </g> </svg> diff --git a/images/en/palette/myblocksoff.svg b/images/en/palette/myblocksoff.svg index ab1d831..ce85379 100644 --- a/images/en/palette/myblocksoff.svg +++ b/images/en/palette/myblocksoff.svg @@ -1,126 +1,103 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="myblocksoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> <linearGradient - gradientUnits="userSpaceOnUse" - y2="22" + x1="0" + y1="22" x2="74" + y2="22" + id="linearGradient2431" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,27.031478,32.193732)" /> + <linearGradient + x1="0" y1="22" + x2="74" + y2="22" + id="linearGradient2428" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,27.031478,45.064925)" /> + <linearGradient x1="0" + y1="22" + x2="74" + y2="22" id="linearGradient3172" - xlink:href="#linearGradient3166" /> + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3166"> <stop id="stop3168" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> <stop id="stop3170" - offset="1" - style="stop-color:#ffff00;stop-opacity:1;" /> + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> </linearGradient> - <inkscape:perspective - id="perspective30" - inkscape:persp3d-origin="43.5 : 14.666667 : 1" - inkscape:vp_z="87 : 22 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 22 : 1" - sodipodi:type="inkscape:persp3d" /> <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" + x1="0" + y1="22" + x2="74" + y2="22" id="linearGradient2557" + xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + <linearGradient x1="0" y1="22" x2="74" y2="22" - gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + id="linearGradient2561" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> <linearGradient - inkscape:collect="always" + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2461" xlink:href="#linearGradient3166" - id="linearGradient2561" gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" + gradientTransform="matrix(0.3333,0,0,0.3333,27.031478,32.193732)" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> + y2="22" + id="linearGradient2463" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,27.031478,45.064925)" /> </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="9.721764" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g - id="g2563" - transform="translate(0,4.3194795)" - style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-opacity:1"> + transform="translate(-17.113578,-17.711929)" + id="g2457"> <path - sodipodi:nodetypes="ccsccscccccccsccsccccc" + d="M 43.029878,32.527032 C 48.362678,32.527032 48.362678,32.527032 48.362678,32.527032 C 48.362678,32.527032 49.739806,33.3558 50.195828,33.860232 C 50.661605,34.375455 51.362378,35.860032 51.362378,35.860032 L 51.362378,42.192733 C 51.362378,42.192733 50.623435,43.423827 50.195828,43.859233 C 49.719356,44.344394 48.362678,45.192433 48.362678,45.192433 L 42.696578,45.192433 L 42.696578,45.192433 L 42.696578,46.525632 L 36.030578,46.525632 L 36.030578,45.192433 L 30.364478,45.192433 C 30.364478,45.192433 29.007801,44.344394 28.531328,43.859233 C 28.103721,43.423827 27.364778,42.192733 27.364778,42.192733 L 27.364778,35.860032 C 27.364778,35.860032 28.065551,34.375455 28.531328,33.860232 C 28.98735,33.3558 30.364478,32.527032 30.364478,32.527032 L 35.697278,32.527032 L 35.697278,34.193532 L 43.029878,34.193532 L 43.029878,32.527032 z" id="path9" - d="M 25.254498,10.245624 C 30.587298,10.245624 30.587298,10.245624 30.587298,10.245624 C 30.587298,10.245624 31.964426,11.074392 32.420448,11.578824 C 32.886225,12.094047 33.586998,13.578624 33.586998,13.578624 L 33.586998,19.911324 C 33.586998,19.911324 32.848055,21.142419 32.420448,21.577824 C 31.943976,22.062985 30.587298,22.911024 30.587298,22.911024 L 24.921198,22.911024 L 24.921198,22.911024 L 24.921198,24.244224 L 18.255198,24.244224 L 18.255198,22.911024 L 12.589098,22.911024 C 12.589098,22.911024 11.232421,22.062985 10.755948,21.577824 C 10.328341,21.142419 9.589398,19.911324 9.589398,19.911324 L 9.589398,13.578624 C 9.589398,13.578624 10.290171,12.094047 10.755948,11.578824 C 11.21197,11.074392 12.589098,10.245624 12.589098,10.245624 L 17.921898,10.245624 L 17.921898,11.912124 L 25.254498,11.912124 L 25.254498,10.245624 z" - style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.66659999000000003;stroke-opacity:1" /> + style="fill:url(#linearGradient2461);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> <path - sodipodi:nodetypes="ccsccscccccccsccsccccc" + d="M 43.029878,45.398226 C 48.362678,45.398226 48.362678,45.398226 48.362678,45.398226 C 48.362678,45.398226 49.739806,46.226993 50.195828,46.731425 C 50.661605,47.246648 51.362378,48.731225 51.362378,48.731225 L 51.362378,55.063926 C 51.362378,55.063926 50.623435,56.295021 50.195828,56.730425 C 49.719356,57.215587 48.362678,58.063626 48.362678,58.063626 L 42.696578,58.063626 L 42.696578,58.063626 L 42.696578,59.396826 L 36.030578,59.396826 L 36.030578,58.063626 L 30.364478,58.063626 C 30.364478,58.063626 29.007801,57.215587 28.531328,56.730425 C 28.103721,56.295021 27.364778,55.063926 27.364778,55.063926 L 27.364778,48.731225 C 27.364778,48.731225 28.065551,47.246648 28.531328,46.731425 C 28.98735,46.226993 30.364478,45.398226 30.364478,45.398226 L 35.697278,45.398226 L 35.697278,47.064725 L 43.029878,47.064725 L 43.029878,45.398226 z" id="path2559" - d="M 24.961351,23.116817 C 30.294151,23.116817 30.294151,23.116817 30.294151,23.116817 C 30.294151,23.116817 31.671279,23.945585 32.127301,24.450017 C 32.593078,24.96524 33.293851,26.449817 33.293851,26.449817 L 33.293851,32.782517 C 33.293851,32.782517 32.554908,34.013612 32.127301,34.449017 C 31.650829,34.934178 30.294151,35.782217 30.294151,35.782217 L 24.628051,35.782217 L 24.628051,35.782217 L 24.628051,37.115417 L 17.962051,37.115417 L 17.962051,35.782217 L 12.295951,35.782217 C 12.295951,35.782217 10.939274,34.934178 10.462801,34.449017 C 10.035194,34.013612 9.296251,32.782517 9.296251,32.782517 L 9.296251,26.449817 C 9.296251,26.449817 9.997024,24.96524 10.462801,24.450017 C 10.918823,23.945585 12.295951,23.116817 12.295951,23.116817 L 17.628751,23.116817 L 17.628751,24.783317 L 24.961351,24.783317 L 24.961351,23.116817 z" - style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.66659999000000003;stroke-opacity:1" /> + style="fill:url(#linearGradient2463);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> </g> </svg> diff --git a/images/en/palette/myblockson.svg b/images/en/palette/myblockson.svg index 315f5c1..4407dd4 100644 --- a/images/en/palette/myblockson.svg +++ b/images/en/palette/myblockson.svg @@ -1,145 +1,99 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="myblockson.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> <linearGradient - gradientUnits="userSpaceOnUse" - y2="22" - x2="74" - y1="22" x1="0" + y1="22" + x2="74" + y2="22" id="linearGradient3172" - xlink:href="#linearGradient3166" /> + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3166"> <stop id="stop3168" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> <stop id="stop3170" - offset="1" - style="stop-color:#ffff00;stop-opacity:1;" /> + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> </linearGradient> - <inkscape:perspective - id="perspective30" - inkscape:persp3d-origin="43.5 : 14.666667 : 1" - inkscape:vp_z="87 : 22 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 22 : 1" - sodipodi:type="inkscape:persp3d" /> <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2557" - gradientUnits="userSpaceOnUse" x1="0" y1="22" x2="74" y2="22" + id="linearGradient2557" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" + x1="0" + y1="22" + x2="74" + y2="22" id="linearGradient2561" + xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" + y2="22" id="linearGradient2567" + xlink:href="#linearGradient3166" gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" + gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> + y2="22" + id="linearGradient2569" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> <linearGradient - inkscape:collect="always" + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2428" xlink:href="#linearGradient3166" - id="linearGradient2569" gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" + gradientTransform="matrix(0.3333,0,0,0.3333,9.4179,27.352996)" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> + y2="22" + id="linearGradient2431" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,9.4179005,14.481803)" /> </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="9.721764" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> <path - style="fill:#ffe000;stroke:#a06400;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> - <g - id="g2563" - transform="translate(0,4.3194795)"> - <path - sodipodi:nodetypes="ccsccscccccccsccsccccc" - id="path9" - d="M 25.254498,10.245624 C 30.587298,10.245624 30.587298,10.245624 30.587298,10.245624 C 30.587298,10.245624 31.964426,11.074392 32.420448,11.578824 C 32.886225,12.094047 33.586998,13.578624 33.586998,13.578624 L 33.586998,19.911324 C 33.586998,19.911324 32.848055,21.142419 32.420448,21.577824 C 31.943976,22.062985 30.587298,22.911024 30.587298,22.911024 L 24.921198,22.911024 L 24.921198,22.911024 L 24.921198,24.244224 L 18.255198,24.244224 L 18.255198,22.911024 L 12.589098,22.911024 C 12.589098,22.911024 11.232421,22.062985 10.755948,21.577824 C 10.328341,21.142419 9.589398,19.911324 9.589398,19.911324 L 9.589398,13.578624 C 9.589398,13.578624 10.290171,12.094047 10.755948,11.578824 C 11.21197,11.074392 12.589098,10.245624 12.589098,10.245624 L 17.921898,10.245624 L 17.921898,11.912124 L 25.254498,11.912124 L 25.254498,10.245624 z" - style="fill:url(#linearGradient2567);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> - <path - sodipodi:nodetypes="ccsccscccccccsccsccccc" - id="path2559" - d="M 24.961351,23.116817 C 30.294151,23.116817 30.294151,23.116817 30.294151,23.116817 C 30.294151,23.116817 31.671279,23.945585 32.127301,24.450017 C 32.593078,24.96524 33.293851,26.449817 33.293851,26.449817 L 33.293851,32.782517 C 33.293851,32.782517 32.554908,34.013612 32.127301,34.449017 C 31.650829,34.934178 30.294151,35.782217 30.294151,35.782217 L 24.628051,35.782217 L 24.628051,35.782217 L 24.628051,37.115417 L 17.962051,37.115417 L 17.962051,35.782217 L 12.295951,35.782217 C 12.295951,35.782217 10.939274,34.934178 10.462801,34.449017 C 10.035194,34.013612 9.296251,32.782517 9.296251,32.782517 L 9.296251,26.449817 C 9.296251,26.449817 9.997024,24.96524 10.462801,24.450017 C 10.918823,23.945585 12.295951,23.116817 12.295951,23.116817 L 17.628751,23.116817 L 17.628751,24.783317 L 24.961351,24.783317 L 24.961351,23.116817 z" - style="fill:url(#linearGradient2569);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> - </g> + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 25.4163,14.815103 C 30.7491,14.815103 30.7491,14.815103 30.7491,14.815103 C 30.7491,14.815103 32.126228,15.643871 32.58225,16.148303 C 33.048027,16.663526 33.7488,18.148103 33.7488,18.148103 L 33.7488,24.480804 C 33.7488,24.480804 33.009857,25.711898 32.58225,26.147304 C 32.105778,26.632465 30.7491,27.480504 30.7491,27.480504 L 25.083,27.480504 L 25.083,27.480504 L 25.083,28.813703 L 18.417,28.813703 L 18.417,27.480504 L 12.7509,27.480504 C 12.7509,27.480504 11.394223,26.632465 10.91775,26.147304 C 10.490143,25.711898 9.7512,24.480804 9.7512,24.480804 L 9.7512,18.148103 C 9.7512,18.148103 10.451973,16.663526 10.91775,16.148303 C 11.373772,15.643871 12.7509,14.815103 12.7509,14.815103 L 18.0837,14.815103 L 18.0837,16.481603 L 25.4163,16.481603 L 25.4163,14.815103 z" + id="path9" + style="fill:url(#linearGradient2431);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> + <path + d="M 25.4163,27.686297 C 30.7491,27.686297 30.7491,27.686297 30.7491,27.686297 C 30.7491,27.686297 32.126228,28.515064 32.58225,29.019496 C 33.048027,29.534719 33.7488,31.019296 33.7488,31.019296 L 33.7488,37.351997 C 33.7488,37.351997 33.009857,38.583092 32.58225,39.018496 C 32.105778,39.503658 30.7491,40.351697 30.7491,40.351697 L 25.083,40.351697 L 25.083,40.351697 L 25.083,41.684897 L 18.417,41.684897 L 18.417,40.351697 L 12.7509,40.351697 C 12.7509,40.351697 11.394223,39.503658 10.91775,39.018496 C 10.490143,38.583092 9.7512,37.351997 9.7512,37.351997 L 9.7512,31.019296 C 9.7512,31.019296 10.451973,29.534719 10.91775,29.019496 C 11.373772,28.515064 12.7509,27.686297 12.7509,27.686297 L 18.0837,27.686297 L 18.0837,29.352796 L 25.4163,29.352796 L 25.4163,27.686297 z" + id="path2559" + style="fill:url(#linearGradient2428);fill-opacity:1;stroke:#c0a000;stroke-width:0.66659999;stroke-opacity:1" /> </svg> diff --git a/images/en/palette/numbersoff.svg b/images/en/palette/numbersoff.svg index 4d7234c..9fcd454 100644 --- a/images/en/palette/numbersoff.svg +++ b/images/en/palette/numbersoff.svg @@ -1,90 +1,41 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="numbersoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="21.875" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g + transform="translate(0.25,-0.9240561)" id="g2392" - transform="translate(0,-1.1740561)"> + style="fill:#a000a0;fill-opacity:1"> <text - id="text2384" - y="26.866751" x="4.5171318" - style="font-size:12px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="font-size:18px;fill:#808080;fill-opacity:1" - y="26.866751" + y="26.866751" + id="text2384" + xml:space="preserve" + style="font-size:12px;fill:#a000a0;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan x="4.5171318" + y="26.866751" id="tspan2386" - sodipodi:role="line">123</tspan></text> + style="font-size:18px;fill:#a000a0;fill-opacity:1">123</tspan></text> <text - id="text2388" - y="44.840736" x="1.8153553" - style="font-size:12px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="font-size:18px;fill:#808080;fill-opacity:1" - y="44.840736" + y="44.840736" + id="text2388" + xml:space="preserve" + style="font-size:12px;fill:#a000a0;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan x="1.8153553" + y="44.840736" id="tspan2390" - sodipodi:role="line">+–=</tspan></text> + style="font-size:18px;fill:#a000a0;fill-opacity:1">+–=</tspan></text> </g> </svg> diff --git a/images/en/palette/numberson.svg b/images/en/palette/numberson.svg index 2f83bd8..9f5a033 100644 --- a/images/en/palette/numberson.svg +++ b/images/en/palette/numberson.svg @@ -1,90 +1,40 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="numberson.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="21.875" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="g2392" /> + id="defs5" /> <path - style="fill:#ffe000;stroke:#a06400;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g - id="g2392" - transform="translate(0,-1.1740561)"> + transform="translate(0.25,-0.9240561)" + id="g2392"> <text - id="text2384" - y="26.866751" x="4.5171318" - style="font-size:12px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="font-size:18px;fill:#a06400;fill-opacity:1" - y="26.866751" + y="26.866751" + id="text2384" + xml:space="preserve" + style="font-size:12px;fill:#a000a0;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan x="4.5171318" + y="26.866751" id="tspan2386" - sodipodi:role="line">123</tspan></text> + style="font-size:18px;fill:#a000a0;fill-opacity:1">123</tspan></text> <text - id="text2388" - y="44.840736" x="1.8153553" - style="font-size:12px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="font-size:18px;fill:#a06400;fill-opacity:1" - y="44.840736" + y="44.840736" + id="text2388" + xml:space="preserve" + style="font-size:12px;fill:#a000a0;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;font-family:Bitstream Vera Sans"><tspan x="1.8153553" + y="44.840736" id="tspan2390" - sodipodi:role="line">+–=</tspan></text> + style="font-size:18px;fill:#a000a0;fill-opacity:1">+–=</tspan></text> </g> </svg> diff --git a/images/en/palette/penoff.svg b/images/en/palette/penoff.svg index e41874e..6f5494b 100644 --- a/images/en/palette/penoff.svg +++ b/images/en/palette/penoff.svg @@ -1,110 +1,52 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="penoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - <inkscape:perspective - id="perspective2465" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="13.946903" - inkscape:cx="21.5" - inkscape:cy="30.86802" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> - <path - style="fill:none;stroke:#808080;stroke-width:3;stroke-linecap:round;stroke-opacity:1;stroke-dasharray:none" - d="M 5.4492386,40.369289 C 6.8832487,41.157995 10.689009,41.771717 12.977792,41.659898 C 14.603959,41.580451 16.892721,41.180049 18.211929,40.225888 C 20.450052,38.60709 21.244624,34.396261 23.302665,32.553934 C 24.528366,31.456705 26.534509,30.109299 28.178299,30.044416 C 30.18215,29.965321 32.646467,31.558765 34.344543,32.625635 C 35.634759,33.436254 38.14467,35.995558 38.14467,35.995558" - id="path2471" - sodipodi:nodetypes="cssssss" /> - <path - style="fill:#ffffff;stroke:#ffffff;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 7.2417513,38.935279 L 8.3889594,34.274746 L 10.324873,34.633249 L 11.543782,35.708756 L 11.830584,37.788071 L 7.2417513,38.935279 z" - id="path3245" - sodipodi:nodetypes="cccccc" /> - <path - style="fill:none;stroke:#606060;stroke-width:2;stroke-linecap:round;stroke-opacity:1;stroke-dasharray:none" - d="M 5.8077411,40.154188 C 7.5285533,38.289975 7.6719543,38.433376 7.6719543,38.433376" - id="path3243" - sodipodi:nodetypes="cc" /> - <path - style="fill:#a0a0a0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1px;stroke-opacity:1" - d="M 8.8908629,33.557742 L 27.246192,15.489214 L 28.680203,16.851523 L 10.683375,34.418148 L 8.8908629,33.557742 z" - id="path3247" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1px;stroke-opacity:1" - d="M 12.117386,35.421955 L 29.970812,18.213833 L 31.404823,19.576142 L 12.475887,37.644671 L 12.117386,35.421955 z" - id="path3249" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#c4c4c4;stroke:#c4c4c4;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 10.253173,34.346447 L 11.902284,35.995558 L 30.185914,18.213832 L 28.680203,16.42132 L 10.253173,34.346447 z" - id="path3251" /> - <path - style="fill:#a0a0a0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1px;stroke-opacity:1" - d="M 29.863261,12.011739 L 32.301079,9.6456219 L 33.502063,10.488102 L 34.918148,11.689086 L 35.90403,12.96177 L 36.818211,14.449556 L 34.452094,16.959075 L 33.555837,15.453364 L 31.368971,13.087247 L 29.863261,12.011739 z" - id="path3255" - sodipodi:nodetypes="cccccccccc" /> - <path - style="fill:#c4c4c4;stroke:#c4c4c4;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 27.174492,14.772208 L 29.468909,12.692893 L 30.669893,13.535373 L 32.085978,14.736357 L 33.07186,16.009041 L 33.986041,17.496827 L 31.906726,19.361041 L 30.938769,18.213833 L 28.608502,15.991117 L 27.174492,14.772208 z" - id="path3253" - sodipodi:nodetypes="cccccccccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#a0a0a0;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(-31.525379,-20.795051)" + id="g2431"> + <path + d="M 37.427664,63.254986 C 38.861674,64.043692 42.667434,64.657414 44.956217,64.545595 C 46.582384,64.466148 48.871146,64.065746 50.190354,63.111585 C 52.428477,61.492787 53.223049,57.281958 55.28109,55.439631 C 56.506791,54.342402 58.512934,52.994996 60.156724,52.930113 C 62.160575,52.851018 64.624892,54.444462 66.322968,55.511332 C 67.613184,56.321951 70.123095,58.881255 70.123095,58.881255" + id="path2471" + style="fill:none;stroke:#0080ff;stroke-width:3;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 39.220176,61.820976 L 40.367384,57.160443 L 42.303298,57.518946 L 43.522207,58.594453 L 43.809009,60.673768 L 39.220176,61.820976 z" + id="path3245" + style="fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 37.786166,63.039885 C 39.506978,61.175672 39.650379,61.319073 39.650379,61.319073" + id="path3243" + style="fill:none;stroke:#0060ff;stroke-width:2;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 40.869288,56.443439 L 59.224617,38.374911 L 60.658628,39.73722 L 42.6618,57.303845 L 40.869288,56.443439 z" + id="path3247" + style="fill:#a0a0ff;fill-opacity:1;stroke:#a0a0ff;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 44.095811,58.307652 L 61.949237,41.09953 L 63.383248,42.461839 L 44.454312,60.530368 L 44.095811,58.307652 z" + id="path3249" + style="fill:#8080ff;fill-opacity:1;stroke:#8080ff;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 42.231598,57.232144 L 43.880709,58.881255 L 62.164339,41.099529 L 60.658628,39.307017 L 42.231598,57.232144 z" + id="path3251" + style="fill:#c4c4ff;fill-opacity:1;stroke:#c4c4ff;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 61.841686,34.897436 L 64.279504,32.531319 L 65.480488,33.373799 L 66.896573,34.574783 L 67.882455,35.847467 L 68.796636,37.335253 L 66.430519,39.844772 L 65.534262,38.339061 L 63.347396,35.972944 L 61.841686,34.897436 z" + id="path3255" + style="fill:#e0a040;fill-opacity:1;stroke:#e0a040;stroke-width:1px;stroke-opacity:1" /> + <path + d="M 59.152917,37.657905 L 61.447334,35.57859 L 62.648318,36.42107 L 64.064403,37.622054 L 65.050285,38.894738 L 65.964466,40.382524 L 63.885151,42.246738 L 62.917194,41.09953 L 60.586927,38.876814 L 59.152917,37.657905 z" + id="path3253" + style="fill:#e0e0e0;fill-opacity:1;stroke:#c4c4c4;stroke-width:1px;stroke-opacity:1" /> + </g> </svg> diff --git a/images/en/palette/penon.svg b/images/en/palette/penon.svg index bcaffbf..552f22d 100644 --- a/images/en/palette/penon.svg +++ b/images/en/palette/penon.svg @@ -1,110 +1,48 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="penon.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - <inkscape:perspective - id="perspective2465" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="1" - inkscape:cx="21.875" - inkscape:cy="28" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#ffe000;stroke:#a06400;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:none;stroke:#0080ff;stroke-width:3;stroke-linecap:round;stroke-opacity:1;stroke-dasharray:none" - d="M 5.4492386,40.369289 C 6.8832487,41.157995 10.689009,41.771717 12.977792,41.659898 C 14.603959,41.580451 16.892721,41.180049 18.211929,40.225888 C 20.450052,38.60709 21.244624,34.396261 23.302665,32.553934 C 24.528366,31.456705 26.534509,30.109299 28.178299,30.044416 C 30.18215,29.965321 32.646467,31.558765 34.344543,32.625635 C 35.634759,33.436254 38.14467,35.995558 38.14467,35.995558" + d="M 5.6992386,40.619289 C 7.1332487,41.407995 10.939009,42.021717 13.227792,41.909898 C 14.853959,41.830451 17.142721,41.430049 18.461929,40.475888 C 20.700052,38.85709 21.494624,34.646261 23.552665,32.803934 C 24.778366,31.706705 26.784509,30.359299 28.428299,30.294416 C 30.43215,30.215321 32.896467,31.808765 34.594543,32.875635 C 35.884759,33.686254 38.39467,36.245558 38.39467,36.245558" id="path2471" - sodipodi:nodetypes="cssssss" /> + style="fill:none;stroke:#0080ff;stroke-width:3;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#e0e0e0;stroke:#e0e0e0;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 7.2417513,38.935279 L 8.3889594,34.274746 L 10.324873,34.633249 L 11.543782,35.708756 L 11.830584,37.788071 L 7.2417513,38.935279 z" + d="M 7.4917513,39.185279 L 8.6389594,34.524746 L 10.574873,34.883249 L 11.793782,35.958756 L 12.080584,38.038071 L 7.4917513,39.185279 z" id="path3245" - sodipodi:nodetypes="cccccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#e0e0e0;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:none;stroke:#0060ff;stroke-width:2;stroke-linecap:round;stroke-opacity:1;stroke-dasharray:none" - d="M 5.8077411,40.154188 C 7.5285533,38.289975 7.6719543,38.433376 7.6719543,38.433376" + d="M 6.0577411,40.404188 C 7.7785533,38.539975 7.9219543,38.683376 7.9219543,38.683376" id="path3243" - sodipodi:nodetypes="cc" /> + style="fill:none;stroke:#0060ff;stroke-width:2;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1" /> <path - style="fill:#a0a0ff;fill-opacity:1;stroke:#a0a0ff;stroke-width:1px;stroke-opacity:1" - d="M 8.8908629,33.557742 L 27.246192,15.489214 L 28.680203,16.851523 L 10.683375,34.418148 L 8.8908629,33.557742 z" + d="M 9.1408629,33.807742 L 27.496192,15.739214 L 28.930203,17.101523 L 10.933375,34.668148 L 9.1408629,33.807742 z" id="path3247" - sodipodi:nodetypes="ccccc" /> + style="fill:#a0a0ff;fill-opacity:1;stroke:#a0a0ff;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:#8080ff;fill-opacity:1;stroke:#8080ff;stroke-width:1px;stroke-opacity:1" - d="M 12.117386,35.421955 L 29.970812,18.213833 L 31.404823,19.576142 L 12.475887,37.644671 L 12.117386,35.421955 z" + d="M 12.367386,35.671955 L 30.220812,18.463833 L 31.654823,19.826142 L 12.725887,37.894671 L 12.367386,35.671955 z" id="path3249" - sodipodi:nodetypes="ccccc" /> + style="fill:#8080ff;fill-opacity:1;stroke:#8080ff;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:#c4c4ff;stroke:#c4c4ff;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 10.253173,34.346447 L 11.902284,35.995558 L 30.185914,18.213832 L 28.680203,16.42132 L 10.253173,34.346447 z" - id="path3251" /> + d="M 10.503173,34.596447 L 12.152284,36.245558 L 30.435914,18.463832 L 28.930203,16.67132 L 10.503173,34.596447 z" + id="path3251" + style="fill:#c4c4ff;fill-opacity:1;stroke:#c4c4ff;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:#e0a040;fill-opacity:1;stroke:#e0a040;stroke-width:1px;stroke-opacity:1" - d="M 29.863261,12.011739 L 32.301079,9.6456219 L 33.502063,10.488102 L 34.918148,11.689086 L 35.90403,12.96177 L 36.818211,14.449556 L 34.452094,16.959075 L 33.555837,15.453364 L 31.368971,13.087247 L 29.863261,12.011739 z" + d="M 30.113261,12.261739 L 32.551079,9.8956219 L 33.752063,10.738102 L 35.168148,11.939086 L 36.15403,13.21177 L 37.068211,14.699556 L 34.702094,17.209075 L 33.805837,15.703364 L 31.618971,13.337247 L 30.113261,12.261739 z" id="path3255" - sodipodi:nodetypes="cccccccccc" /> + style="fill:#e0a040;fill-opacity:1;stroke:#e0a040;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:#e0e0e0;stroke:#c4c4c4;stroke-width:1px;stroke-opacity:1;fill-opacity:1" - d="M 27.174492,14.772208 L 29.468909,12.692893 L 30.669893,13.535373 L 32.085978,14.736357 L 33.07186,16.009041 L 33.986041,17.496827 L 31.906726,19.361041 L 30.938769,18.213833 L 28.608502,15.991117 L 27.174492,14.772208 z" + d="M 27.424492,15.022208 L 29.718909,12.942893 L 30.919893,13.785373 L 32.335978,14.986357 L 33.32186,16.259041 L 34.236041,17.746827 L 32.156726,19.611041 L 31.188769,18.463833 L 28.858502,16.241117 L 27.424492,15.022208 z" id="path3253" - sodipodi:nodetypes="cccccccccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#c4c4c4;stroke-width:1px;stroke-opacity:1" /> </svg> diff --git a/images/en/palette/sensorsoff.svg b/images/en/palette/sensorsoff.svg index 798ef1c..3356434 100644 --- a/images/en/palette/sensorsoff.svg +++ b/images/en/palette/sensorsoff.svg @@ -1,71 +1,37 @@ <?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" version="1.0" width="43.5" height="56.5" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="sensor.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata8"> - <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> - <sodipodi:namedview - inkscape:window-height="723" - inkscape:window-width="645" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="0.46942014" - inkscape:cx="372.04724" - inkscape:cy="526.18109" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:current-layer="svg2" /> + id="svg2"> <defs - id="defs4"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective10" /> - </defs> + id="defs4" /> + <path + d="M 0.75,0.75 L 34.61863,0.75 C 34.61863,0.75 38.36423,1.98211 39.66961,2.9951 C 40.85651,3.91614 42.75,6.94804 42.75,6.94804 L 42.75,49.22255 C 42.75,49.22255 40.91462,52.48677 40.10882,53.28529 C 38.68537,54.6959 34.83823,55.75 34.83823,55.75 L 0.75,55.75 L 0.75,0.75 z" + id="path2384" + style="fill:#e0e0e0;fill-opacity:1;stroke:#808080;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g - id="layer1" - transform="translate(-353.25,-504.11218)"> + transform="translate(46.111336,0.514676)" + id="g3247" + style="stroke:#800000;stroke-opacity:1"> <path - d="M 354,504.86218 L 387.86863,504.86218 C 387.86863,504.86218 391.61423,506.09429 392.91961,507.10728 C 394.10651,508.02832 396,511.06022 396,511.06022 L 396,553.33473 C 396,553.33473 394.16462,556.59895 393.35882,557.39747 C 391.93537,558.80808 388.08823,559.86218 388.08823,559.86218 L 354,559.86218 L 354,504.86218 z" - id="path2384" - style="fill:#e0e0e0;fill-opacity:1;stroke:#808080;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + d="M -36.1417,31.566802 L -36.027328,36.827935 L -24.590081,43.118421 L -24.361336,29.62247" + id="path2463" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path - d="M 378.70163,550.58979 C 378.08134,550.10187 377.24212,549.1467 376.8367,548.46719 C 376.33056,547.61884 374.99729,546.66412 372.58182,545.42036 C 368.33744,543.23488 367.03433,541.57169 365.64431,536.56593 C 363.40254,528.49279 364.56768,521.88008 369.08236,517.05352 C 371.32264,514.65848 373.69934,513.43093 376.09035,513.43394 C 378.73315,513.43726 380.52801,514.06732 382.35874,515.63435 C 384.5079,517.47395 385.46406,519.95913 385.46406,523.70544 C 385.46406,526.33979 385.3662,526.68132 384.28922,527.80544 C 382.9083,529.24681 382.07156,529.3452 381.02606,528.18914 C 380.0139,527.06996 377.53712,525.83171 376.31068,525.83171 C 375.7688,525.83171 374.79352,526.27929 374.14338,526.82634 C 372.66964,528.06641 371.07652,531.83001 371.42969,533.23717 C 371.80122,534.71747 373.0939,535.83171 374.43973,535.83171 C 375.23657,535.83171 376.21109,536.34727 377.46406,537.43171 C 378.48082,538.31171 379.5836,539.03171 379.91468,539.03171 C 380.91034,539.03171 382.08719,538.234 382.46127,537.30556 C 382.80502,536.45239 382.81395,536.45136 382.8387,537.26198 C 382.87157,538.33829 381.27226,539.83171 380.08676,539.83171 C 379.5776,539.83171 378.47494,539.21188 377.63641,538.45431 C 376.74174,537.64603 375.48216,536.96318 374.58793,536.80166 C 372.45171,536.4158 371.76526,535.98767 371.04283,534.59065 C 370.30328,533.16053 370.52482,531.70063 371.89368,528.98381 C 373.69943,525.39986 376.00891,524.32941 379.12576,525.63171 C 379.91556,525.96171 380.65141,526.23171 380.76099,526.23171 C 380.87056,526.23171 380.88258,525.15845 380.7877,523.84669 C 380.60265,521.28847 379.94619,520.20499 377.95846,519.1771 C 375.43301,517.87114 370.99919,520.81313 368.87667,525.20319 C 366.95644,529.17483 367.43958,535.60947 369.93566,539.30723 C 370.80606,540.59667 370.83336,540.714 370.11275,540.06823 C 369.64417,539.64832 368.76652,538.29832 368.16242,537.06823 C 367.21164,535.1322 367.06406,534.34802 367.06406,531.23171 C 367.06406,528.16021 367.22191,527.2949 368.13927,525.33752 C 368.73063,524.07572 369.72063,522.37873 370.33927,521.56644 C 371.68113,519.80452 374.6493,517.83171 375.95831,517.83171 C 377.10356,517.83171 379.62594,519.07877 380.5243,520.08914 C 381.39546,521.06891 382.05906,523.58039 382.06183,525.9081 C 382.06669,529.99724 384.15259,527.7417 384.399,523.38085 C 384.52136,521.21542 384.38098,520.31267 383.70467,518.9156 C 382.20842,515.82475 381.27699,515.25169 377.49179,515.09311 C 373.49593,514.92571 371.82652,515.61553 369.31074,518.47361 C 367.07918,521.0088 366.02816,524.39631 365.76686,529.8957 C 365.39051,537.81674 367.46096,541.83837 373.40934,544.74032 C 375.68898,545.85246 376.65341,546.59238 377.53573,547.90612 C 378.93474,549.98919 380.26506,550.56149 381.8974,549.78249 C 382.87618,549.31539 383.08387,548.95245 383.18706,547.52872 C 383.32566,545.6165 383.86534,545.28006 384.17721,546.91146 C 384.57254,548.97949 383.30326,550.62428 380.84675,551.22723 C 380.12783,551.40369 379.49864,551.21672 378.70163,550.58979 z M 375.37239,523.19004 C 375.50531,523.05712 375.85031,523.04291 376.13906,523.15846 C 376.45815,523.28615 376.36337,523.38093 375.89739,523.40013 C 375.47573,523.41749 375.23948,523.32296 375.37239,523.19004 z" - id="path2508" - style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-opacity:1" /> + d="M -24.132592,29.736843 L -24.075405,43.118421 L -12.352227,35.569838 L -12.352227,30.880566 L -18.299595,34.426114" + id="path2465" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M -41.860324,27.563765 L -36.256073,22.417004 L -42.089069,19.44332 L -29.965587,12.352227 L -24.246964,15.669028 L -18.757085,12.580972 L -6.6336032,19.90081 L -12.466599,22.302632 L -6.9767206,27.33502 L -18.299595,34.540486 L -24.246964,29.279352 L -30.537449,34.540486 L -41.860324,27.563765 z" + id="path2459" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M -35.455466,22.188259 L -24.704453,15.440283 L -12.924089,22.302632 L -24.246964,29.050607 L -35.455466,22.188259 z" + id="path2461" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </g> </svg> diff --git a/images/en/palette/sensorson.svg b/images/en/palette/sensorson.svg index e155baf..196654a 100644 --- a/images/en/palette/sensorson.svg +++ b/images/en/palette/sensorson.svg @@ -1,71 +1,37 @@ <?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" version="1.0" width="43.5" height="56.5" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="sensor.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata8"> - <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> - <sodipodi:namedview - inkscape:window-height="723" - inkscape:window-width="645" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="0.46942014" - inkscape:cx="372.04724" - inkscape:cy="526.18109" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:current-layer="svg2" /> + id="svg2"> <defs - id="defs4"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective10" /> - </defs> + id="defs4" /> + <path + d="M 0.75,0.75 L 34.61863,0.75 C 34.61863,0.75 38.36423,1.98211 39.66961,2.9951 C 40.85651,3.91614 42.75,6.94804 42.75,6.94804 L 42.75,49.22255 C 42.75,49.22255 40.91462,52.48677 40.10882,53.28529 C 38.68537,54.6959 34.83823,55.75 34.83823,55.75 L 0.75,55.75 L 0.75,0.75 z" + id="path2384" + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g - id="layer1" - transform="translate(-353.25,-504.11218)"> + transform="translate(46.111336,0.514676)" + id="g3247" + style="stroke:#800000;stroke-opacity:1"> <path - d="M 354,504.86218 L 387.86863,504.86218 C 387.86863,504.86218 391.61423,506.09429 392.91961,507.10728 C 394.10651,508.02832 396,511.06022 396,511.06022 L 396,553.33473 C 396,553.33473 394.16462,556.59895 393.35882,557.39747 C 391.93537,558.80808 388.08823,559.86218 388.08823,559.86218 L 354,559.86218 L 354,504.86218 z" - id="path2384" - style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> + d="M -36.1417,31.566802 L -36.027328,36.827935 L -24.590081,43.118421 L -24.361336,29.62247" + id="path2463" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path - d="M 378.70163,550.58979 C 378.08134,550.10187 377.24212,549.1467 376.8367,548.46719 C 376.33056,547.61884 374.99729,546.66412 372.58182,545.42036 C 368.33744,543.23488 367.03433,541.57169 365.64431,536.56593 C 363.40254,528.49279 364.56768,521.88008 369.08236,517.05352 C 371.32264,514.65848 373.69934,513.43093 376.09035,513.43394 C 378.73315,513.43726 380.52801,514.06732 382.35874,515.63435 C 384.5079,517.47395 385.46406,519.95913 385.46406,523.70544 C 385.46406,526.33979 385.3662,526.68132 384.28922,527.80544 C 382.9083,529.24681 382.07156,529.3452 381.02606,528.18914 C 380.0139,527.06996 377.53712,525.83171 376.31068,525.83171 C 375.7688,525.83171 374.79352,526.27929 374.14338,526.82634 C 372.66964,528.06641 371.07652,531.83001 371.42969,533.23717 C 371.80122,534.71747 373.0939,535.83171 374.43973,535.83171 C 375.23657,535.83171 376.21109,536.34727 377.46406,537.43171 C 378.48082,538.31171 379.5836,539.03171 379.91468,539.03171 C 380.91034,539.03171 382.08719,538.234 382.46127,537.30556 C 382.80502,536.45239 382.81395,536.45136 382.8387,537.26198 C 382.87157,538.33829 381.27226,539.83171 380.08676,539.83171 C 379.5776,539.83171 378.47494,539.21188 377.63641,538.45431 C 376.74174,537.64603 375.48216,536.96318 374.58793,536.80166 C 372.45171,536.4158 371.76526,535.98767 371.04283,534.59065 C 370.30328,533.16053 370.52482,531.70063 371.89368,528.98381 C 373.69943,525.39986 376.00891,524.32941 379.12576,525.63171 C 379.91556,525.96171 380.65141,526.23171 380.76099,526.23171 C 380.87056,526.23171 380.88258,525.15845 380.7877,523.84669 C 380.60265,521.28847 379.94619,520.20499 377.95846,519.1771 C 375.43301,517.87114 370.99919,520.81313 368.87667,525.20319 C 366.95644,529.17483 367.43958,535.60947 369.93566,539.30723 C 370.80606,540.59667 370.83336,540.714 370.11275,540.06823 C 369.64417,539.64832 368.76652,538.29832 368.16242,537.06823 C 367.21164,535.1322 367.06406,534.34802 367.06406,531.23171 C 367.06406,528.16021 367.22191,527.2949 368.13927,525.33752 C 368.73063,524.07572 369.72063,522.37873 370.33927,521.56644 C 371.68113,519.80452 374.6493,517.83171 375.95831,517.83171 C 377.10356,517.83171 379.62594,519.07877 380.5243,520.08914 C 381.39546,521.06891 382.05906,523.58039 382.06183,525.9081 C 382.06669,529.99724 384.15259,527.7417 384.399,523.38085 C 384.52136,521.21542 384.38098,520.31267 383.70467,518.9156 C 382.20842,515.82475 381.27699,515.25169 377.49179,515.09311 C 373.49593,514.92571 371.82652,515.61553 369.31074,518.47361 C 367.07918,521.0088 366.02816,524.39631 365.76686,529.8957 C 365.39051,537.81674 367.46096,541.83837 373.40934,544.74032 C 375.68898,545.85246 376.65341,546.59238 377.53573,547.90612 C 378.93474,549.98919 380.26506,550.56149 381.8974,549.78249 C 382.87618,549.31539 383.08387,548.95245 383.18706,547.52872 C 383.32566,545.6165 383.86534,545.28006 384.17721,546.91146 C 384.57254,548.97949 383.30326,550.62428 380.84675,551.22723 C 380.12783,551.40369 379.49864,551.21672 378.70163,550.58979 z M 375.37239,523.19004 C 375.50531,523.05712 375.85031,523.04291 376.13906,523.15846 C 376.45815,523.28615 376.36337,523.38093 375.89739,523.40013 C 375.47573,523.41749 375.23948,523.32296 375.37239,523.19004 z" - id="path2508" - style="fill:#a06400;fill-opacity:1;stroke:#a06400;stroke-width:1;stroke-opacity:1" /> + d="M -24.132592,29.736843 L -24.075405,43.118421 L -12.352227,35.569838 L -12.352227,30.880566 L -18.299595,34.426114" + id="path2465" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M -41.860324,27.563765 L -36.256073,22.417004 L -42.089069,19.44332 L -29.965587,12.352227 L -24.246964,15.669028 L -18.757085,12.580972 L -6.6336032,19.90081 L -12.466599,22.302632 L -6.9767206,27.33502 L -18.299595,34.540486 L -24.246964,29.279352 L -30.537449,34.540486 L -41.860324,27.563765 z" + id="path2459" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + d="M -35.455466,22.188259 L -24.704453,15.440283 L -12.924089,22.302632 L -24.246964,29.050607 L -35.455466,22.188259 z" + id="path2461" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#800000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </g> </svg> diff --git a/images/en/palette/templatesoff.svg b/images/en/palette/templatesoff.svg new file mode 100644 index 0000000..e0ca78e --- /dev/null +++ b/images/en/palette/templatesoff.svg @@ -0,0 +1,213 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="43.5" + height="56.5" + id="svg2"> + <defs + id="defs5"> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient2467" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2497164,0,0,0.2514503,-11.493525,14.124173)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2557" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2561" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient2567" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2497164,0,0,0.2514503,-11.743525,13.874173)" /> + <linearGradient + id="linearGradient2527"> + <stop + id="stop2529" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2531" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient2533" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + <linearGradient + id="linearGradient4342"> + <stop + id="stop3259" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4345" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient4340" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0139238,0,0,1.0946487,31.741439,7.7561892)" /> + <linearGradient + x1="0" + y1="19.625" + x2="320.75" + y2="19.625" + id="linearGradient3170" + xlink:href="#linearGradient3164" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3164"> + <stop + id="stop3166" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4336" + style="stop-color:#ff00ff;stop-opacity:0" + offset="1" /> + </linearGradient> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient4362" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9988658,0,0,1.0058014,-66.724103,-3.3087008e-3)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient4488" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient4482"> + <stop + id="stop4484" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4486" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2550" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2548" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + <linearGradient + id="linearGradient2540"> + <stop + id="stop2542" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2544" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2538" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" + id="path2384" + style="fill:#e0e0e0;fill-opacity:1;fill-rule:evenodd;stroke:#a0a0a0;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(0.6249716,0)" + id="g2462"> + <path + d="M 35.37466,14.375 L 23.6875,14.375 L 23.6875,15.75 L 18.4375,15.75 L 18.4375,14.375 L 6.8753982,14.375 C 6.8753982,14.375 6.0918894,15.033227 5.7504272,15.381061 C 5.4793625,15.657184 5.3754369,16.466903 5.3754369,16.466903 L 5.3754369,39.685 C 5.3754369,39.685 5.5354698,40.517153 5.7504272,40.68625 C 5.9580856,40.849605 6.8753982,41.25 6.8753982,41.25 L 18.5625,41.25 L 18.5625,42.125 L 23.5625,42.125 L 23.5625,41.25 L 36.87462,41.25 L 36.87462,30.625 L 36.87462,25.875 L 36.87462,16.311687 C 36.87462,16.311687 36.61331,15.620356 36.374636,15.380389 L 35.37466,14.375 z" + id="path2480" + style="opacity:0.92000002;fill:url(#linearGradient2467);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 7.8750005,17.714257 L 34.1875,17.714257 L 34.110283,23.1875 L 7.8750005,23.1875 L 7.8750005,17.714257 z" + id="path3250" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 12.180679,25.769929 L 30.444323,25.769929 L 30.444323,38.881822 L 12.180679,38.881822 L 12.180679,25.769929 z" + id="path3264" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +</svg> diff --git a/images/en/palette/templateson.svg b/images/en/palette/templateson.svg new file mode 100644 index 0000000..55a1c9a --- /dev/null +++ b/images/en/palette/templateson.svg @@ -0,0 +1,176 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="43.5" + height="56.5" + id="svg2"> + <defs + id="defs5"> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2557" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,9.2560985,9.9123239)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2561" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.3333,0,0,0.3333,8.962951,22.783517)" /> + <linearGradient + id="linearGradient4482"> + <stop + id="stop4484" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4486" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient4488" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient4362" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9988658,0,0,1.0058014,-66.724103,-3.3087008e-3)" /> + <linearGradient + id="linearGradient3164"> + <stop + id="stop3166" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4336" + style="stop-color:#ff00ff;stop-opacity:0" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="19.625" + x2="320.75" + y2="19.625" + id="linearGradient3170" + xlink:href="#linearGradient3164" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient4340" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0139238,0,0,1.0946487,31.741439,7.7561892)" /> + <linearGradient + id="linearGradient4342"> + <stop + id="stop3259" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop4345" + style="stop-color:#ff00ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient2533" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + <linearGradient + id="linearGradient2527"> + <stop + id="stop2529" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2531" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient2567" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2497164,0,0,0.2514503,-11.493525,14.124173)" /> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient2467" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2497164,0,0,0.2514503,-11.493525,14.124173)" /> + </defs> + <path + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" + id="path2384" + style="fill:#ffe000;fill-opacity:1;fill-rule:evenodd;stroke:#a06400;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(0.6249716,0)" + id="g2462"> + <path + d="M 35.37466,14.375 L 23.6875,14.375 L 23.6875,15.75 L 18.4375,15.75 L 18.4375,14.375 L 6.8753982,14.375 C 6.8753982,14.375 6.0918894,15.033227 5.7504272,15.381061 C 5.4793625,15.657184 5.3754369,16.466903 5.3754369,16.466903 L 5.3754369,39.685 C 5.3754369,39.685 5.5354698,40.517153 5.7504272,40.68625 C 5.9580856,40.849605 6.8753982,41.25 6.8753982,41.25 L 18.5625,41.25 L 18.5625,42.125 L 23.5625,42.125 L 23.5625,41.25 L 36.87462,41.25 L 36.87462,30.625 L 36.87462,25.875 L 36.87462,16.311687 C 36.87462,16.311687 36.61331,15.620356 36.374636,15.380389 L 35.37466,14.375 z" + id="path2480" + style="opacity:0.92000002;fill:url(#linearGradient2467);fill-opacity:1;fill-rule:evenodd;stroke:#c0a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 7.8750005,17.714257 L 34.1875,17.714257 L 34.110283,23.1875 L 7.8750005,23.1875 L 7.8750005,17.714257 z" + id="path3250" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 12.180679,25.769929 L 30.444323,25.769929 L 30.444323,38.881822 L 12.180679,38.881822 L 12.180679,25.769929 z" + id="path3264" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#c0a000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> +</svg> diff --git a/images/en/palette/turtleoff.svg b/images/en/palette/turtleoff.svg index 0c77cc9..0c507c7 100644 --- a/images/en/palette/turtleoff.svg +++ b/images/en/palette/turtleoff.svg @@ -1,103 +1,30 @@ <?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="44" - height="56" version="1.0" - sodipodi:docname="turtleoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <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> + width="43.5" + height="56.5" + id="svg2"> <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective3257" /> - <inkscape:perspective - id="perspective2578" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="10" - inkscape:cx="3.3882353" - inkscape:cy="29.901201" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> + id="defs5" /> <path - style="fill:#e0e0e0;stroke:#808080;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" id="path2384" - sodipodi:nodetypes="ccsccsccc" /> + style="fill:#e0e0e0;fill-opacity:1;stroke:#808080;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <path - sodipodi:nodetypes="cssssssccccccssssssssssssccccccsc" + d="M 12.555881,44.10283 C 13.931472,43.290249 15.380009,42.234524 16.055881,42.10283 C 16.731753,41.971136 16.634959,42.763471 18.055881,43.60283 C 20.927304,45.299021 23.184458,45.299021 26.055881,43.60283 C 27.476803,42.763471 27.380009,41.971136 28.055881,42.10283 C 28.731753,42.234525 30.180291,43.290249 31.555881,44.10283 C 33.153242,45.046415 37.561517,45.10283 38.555881,45.10283 C 39.918856,45.10283 38.166004,43.285432 35.555881,41.10283 L 31.555881,38.10283 L 33.555881,36.10283 C 35.607882,32.501435 36.115559,30.373507 34.555881,27.10283 L 32.555881,24.60283 L 38.055881,20.60283 C 40.109082,18.955696 39.390871,16.144856 39.055881,15.60283 C 38.886209,15.328294 37.482523,15.288018 36.555881,15.60283 C 35.629239,15.917643 35.179641,16.587544 34.380854,17.35283 C 31.668721,19.951218 32.942668,20.742854 29.137607,19.60283 C 24.742429,18.286003 24.014652,17.21115 26.769693,14.166865 C 28.312388,12.462205 28.066577,11.025952 26.37941,9.1616535 C 24.078277,6.6189306 20.386426,6.5012836 18.085293,9.0440065 C 16.398126,10.908305 15.799374,12.579852 17.342069,14.284512 C 20.09711,17.328797 19.134039,18.286003 14.738861,19.60283 C 10.947019,20.738893 11.967106,19.878099 9.331293,17.35283 C 8.562274,16.616064 8.382564,15.906053 7.555881,15.60283 C 6.729198,15.299606 5.255542,15.403169 5.055881,15.60283 C 4.656561,16.00215 3.974852,18.855701 6.055881,20.60283 L 11.555881,24.60283 L 9.555881,27.10283 C 7.990469,30.385533 8.502119,32.498343 10.555881,36.10283 L 12.555881,38.10283 L 8.555881,41.10283 C 5.945758,43.285432 4.192906,45.10283 5.555881,45.10283 C 6.550245,45.10283 10.95852,45.046415 12.555881,44.10283 z" id="path2582" - d="M 12.305881,43.85283 C 13.681472,43.040249 15.130009,41.984524 15.805881,41.85283 C 16.481753,41.721136 16.384959,42.513471 17.805881,43.35283 C 20.677304,45.049021 22.934458,45.049021 25.805881,43.35283 C 27.226803,42.513471 27.130009,41.721136 27.805881,41.85283 C 28.481753,41.984525 29.930291,43.040249 31.305881,43.85283 C 32.903242,44.796415 37.311517,44.85283 38.305881,44.85283 C 39.668856,44.85283 37.916004,43.035432 35.305881,40.85283 L 31.305881,37.85283 L 33.305881,35.85283 C 35.357882,32.251435 35.865559,30.123507 34.305881,26.85283 L 32.305881,24.35283 L 37.805881,20.35283 C 39.859082,18.705696 39.140871,15.894856 38.805881,15.35283 C 38.636209,15.078294 37.232523,15.038018 36.305881,15.35283 C 35.379239,15.667643 34.929641,16.337544 34.130854,17.10283 C 31.418721,19.701218 32.692668,20.492854 28.887607,19.35283 C 24.492429,18.036003 23.764652,16.96115 26.519693,13.916865 C 28.062388,12.212205 27.816577,10.775952 26.12941,8.9116535 C 23.828277,6.3689306 20.136426,6.2512836 17.835293,8.7940065 C 16.148126,10.658305 15.549374,12.329852 17.092069,14.034512 C 19.84711,17.078797 18.884039,18.036003 14.488861,19.35283 C 10.697019,20.488893 11.717106,19.628099 9.081293,17.10283 C 8.312274,16.366064 8.132564,15.656053 7.305881,15.35283 C 6.479198,15.049606 5.005542,15.153169 4.805881,15.35283 C 4.406561,15.75215 3.724852,18.605701 5.805881,20.35283 L 11.305881,24.35283 L 9.305881,26.85283 C 7.740469,30.135533 8.252119,32.248343 10.305881,35.85283 L 12.305881,37.85283 L 8.305881,40.85283 C 5.695758,43.035432 3.942906,44.85283 5.305881,44.85283 C 6.300245,44.85283 10.70852,44.796415 12.305881,43.85283 z" - style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-opacity:1" /> + style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-opacity:1" /> <path - transform="matrix(1.0410748,0,0,0.8754493,-3.6848662,2.5574193)" - d="M 28.6,8.333333 A 1.2333333,1.4666667 0 1 1 26.133333,8.333333 A 1.2333333,1.4666667 0 1 1 28.6,8.333333 z" - sodipodi:ry="1.4666667" - sodipodi:rx="1.2333333" - sodipodi:cy="8.333333" - sodipodi:cx="27.366667" + d="M 28.6,8.333333 C 28.6,9.1433508 28.047818,9.7999999 27.366667,9.7999999 C 26.685515,9.7999999 26.133333,9.1433508 26.133333,8.333333 C 26.133333,7.5233152 26.685515,6.8666661 27.366667,6.8666661 C 28.047818,6.8666661 28.6,7.5233152 28.6,8.333333 z" + transform="matrix(1.0410748,0,0,0.8754493,-3.4348662,2.8074193)" id="path3269" - style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-width:1.5;stroke-opacity:1" - sodipodi:type="arc" /> + style="fill:#00a000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" /> <path - transform="matrix(1.0410748,0,0,0.8754493,-9.6848661,2.5574193)" - d="M 28.6,8.333333 A 1.2333333,1.4666667 0 1 1 26.133333,8.333333 A 1.2333333,1.4666667 0 1 1 28.6,8.333333 z" - sodipodi:ry="1.4666667" - sodipodi:rx="1.2333333" - sodipodi:cy="8.333333" - sodipodi:cx="27.366667" + d="M 28.6,8.333333 C 28.6,9.1433508 28.047818,9.7999999 27.366667,9.7999999 C 26.685515,9.7999999 26.133333,9.1433508 26.133333,8.333333 C 26.133333,7.5233152 26.685515,6.8666661 27.366667,6.8666661 C 28.047818,6.8666661 28.6,7.5233152 28.6,8.333333 z" + transform="matrix(1.0410748,0,0,0.8754493,-9.4348661,2.8074193)" id="path3265" - style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-width:1.5;stroke-opacity:1" - sodipodi:type="arc" /> + style="fill:#00a000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" /> </svg> diff --git a/images/en/palette/turtleon.svg b/images/en/palette/turtleon.svg index 1991f5a..8bb5fb6 100644 --- a/images/en/palette/turtleon.svg +++ b/images/en/palette/turtleon.svg @@ -1,32 +1,43 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" - width="44" - height="56" - version="1.0"> + version="1.0" + width="43.5" + height="56.5" + id="svg2"> + <defs + id="defs19" /> <path - style="fill:#ffe000;stroke:#a06400;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.5,0.5 L 34.368627,0.5 C 34.368627,0.5 38.114227,1.7321101 39.419608,2.745098 C 40.606507,3.6661424 42.5,6.6980392 42.5,6.6980392 L 42.5,48.972549 C 42.5,48.972549 40.664623,52.23677 39.858824,53.035295 C 38.435367,54.4459 34.588235,55.5 34.588235,55.5 L 0.5,55.5 L 0.5,0.5 z" /> + d="M 0.75,0.75 L 34.618627,0.75 C 34.618627,0.75 38.364227,1.9821101 39.669608,2.995098 C 40.856507,3.9161424 42.75,6.9480392 42.75,6.9480392 L 42.75,49.222549 C 42.75,49.222549 40.914623,52.48677 40.108824,53.285295 C 38.685367,54.6959 34.838235,55.75 34.838235,55.75 L 0.75,55.75 L 0.75,0.75 z" + id="path4" + style="fill:#ffe000;fill-opacity:1;stroke:#a06400;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1" /> <g - transform="translate(-8.194119,1.85283)"> + transform="translate(-7.944119,2.10283)" + id="g6"> <path - style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-opacity:1" - d="M 20.5,42 C 21.875591,41.187419 23.324128,40.131694 24,40 C 24.675872,39.868306 24.579078,40.660641 26,41.5 C 28.871423,43.196191 31.128577,43.196191 34,41.5 C 35.420922,40.660641 35.324128,39.868306 36,40 C 36.675872,40.131695 38.12441,41.187419 39.5,42 C 41.097361,42.943585 45.505636,43 46.5,43 C 47.862975,43 46.110123,41.182602 43.5,39 L 39.5,36 L 41.5,34 C 43.552001,30.398605 44.059678,28.270677 42.5,25 L 40.5,22.5 L 46,18.5 C 48.053201,16.852866 47.33499,14.042026 47,13.5 C 46.830328,13.225464 45.426642,13.185188 44.5,13.5 C 43.573358,13.814813 43.12376,14.484714 42.324973,15.25 C 39.61284,17.848388 40.886787,18.640024 37.081726,17.5 C 32.686548,16.183173 31.958771,15.10832 34.713812,12.064035 C 36.256507,10.359375 36.010696,8.923122 34.323529,7.0588235 C 32.022396,4.5161006 28.330545,4.3984536 26.029412,6.9411765 C 24.342245,8.805475 23.743493,10.477022 25.286188,12.181682 C 28.041229,15.225967 27.078158,16.183173 22.68298,17.5 C 18.891138,18.636063 19.911225,17.775269 17.275412,15.25 C 16.506393,14.513234 16.326683,13.803223 15.5,13.5 C 14.673317,13.196776 13.199661,13.300339 13,13.5 C 12.60068,13.89932 11.918971,16.752871 14,18.5 L 19.5,22.5 L 17.5,25 C 15.934588,28.282703 16.446238,30.395513 18.5,34 L 20.5,36 L 16.5,39 C 13.889877,41.182602 12.137025,43 13.5,43 C 14.494364,43 18.902639,42.943585 20.5,42 z" /> + d="M 20.5,42 C 21.875591,41.187419 23.324128,40.131694 24,40 C 24.675872,39.868306 24.579078,40.660641 26,41.5 C 28.871423,43.196191 31.128577,43.196191 34,41.5 C 35.420922,40.660641 35.324128,39.868306 36,40 C 36.675872,40.131695 38.12441,41.187419 39.5,42 C 41.097361,42.943585 45.505636,43 46.5,43 C 47.862975,43 46.110123,41.182602 43.5,39 L 39.5,36 L 41.5,34 C 43.552001,30.398605 44.059678,28.270677 42.5,25 L 40.5,22.5 L 46,18.5 C 48.053201,16.852866 47.33499,14.042026 47,13.5 C 46.830328,13.225464 45.426642,13.185188 44.5,13.5 C 43.573358,13.814813 43.12376,14.484714 42.324973,15.25 C 39.61284,17.848388 40.886787,18.640024 37.081726,17.5 C 32.686548,16.183173 31.958771,15.10832 34.713812,12.064035 C 36.256507,10.359375 36.010696,8.923122 34.323529,7.0588235 C 32.022396,4.5161006 28.330545,4.3984536 26.029412,6.9411765 C 24.342245,8.805475 23.743493,10.477022 25.286188,12.181682 C 28.041229,15.225967 27.078158,16.183173 22.68298,17.5 C 18.891138,18.636063 19.911225,17.775269 17.275412,15.25 C 16.506393,14.513234 16.326683,13.803223 15.5,13.5 C 14.673317,13.196776 13.199661,13.300339 13,13.5 C 12.60068,13.89932 11.918971,16.752871 14,18.5 L 19.5,22.5 L 17.5,25 C 15.934588,28.282703 16.446238,30.395513 18.5,34 L 20.5,36 L 16.5,39 C 13.889877,41.182602 12.137025,43 13.5,43 C 14.494364,43 18.902639,42.943585 20.5,42 z" + id="path8" + style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-opacity:1" /> <path - style="opacity:1;fill:#00a000;fill-opacity:1;stroke:#00a000;stroke-width:1.5;stroke-opacity:1" - d="M 35.933332,10.6 A 3.0999999,2.9333334 0 1 1 29.733332,10.6 A 3.0999999,2.9333334 0 1 1 35.933332,10.6 z" - transform="matrix(0.9687388,0,0,1.0237808,-1.8069228,-0.602077)" /> + d="M 35.933332,10.6 C 35.933332,12.220035 34.545415,13.533333 32.833332,13.533333 C 31.121249,13.533333 29.733332,12.220035 29.733332,10.6 C 29.733332,8.9799646 31.121249,7.6666665 32.833332,7.6666665 C 34.545415,7.6666665 35.933332,8.9799646 35.933332,10.6 L 35.933332,10.6 z" + transform="matrix(0.9687388,0,0,1.0237808,-1.8069228,-0.602077)" + id="path10" + style="opacity:1;fill:#00a000;fill-opacity:1;stroke:#00a000;stroke-width:1.5;stroke-opacity:1" /> <path - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" - d="M 28.6,8.333333 A 1.2333333,1.4666667 0 1 1 26.133333,8.333333 A 1.2333333,1.4666667 0 1 1 28.6,8.333333 z" - transform="matrix(1.0410748,0,0,0.8754493,4.5092528,0.7045893)" /> + d="M 28.6,8.333333 C 28.6,9.1433508 28.047818,9.7999999 27.366667,9.7999999 C 26.685515,9.7999999 26.133333,9.1433508 26.133333,8.333333 C 26.133333,7.5233152 26.685515,6.8666661 27.366667,6.8666661 C 28.047818,6.8666661 28.6,7.5233152 28.6,8.333333 z" + transform="matrix(1.0410748,0,0,0.8754493,4.5092528,0.7045893)" + id="path12" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" /> <path - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" - d="M 28.6,8.333333 A 1.2333333,1.4666667 0 1 1 26.133333,8.333333 A 1.2333333,1.4666667 0 1 1 28.6,8.333333 z" - transform="matrix(1.0410748,0,0,0.8754493,-1.4907471,0.7045893)" /> + d="M 28.6,8.333333 C 28.6,9.1433508 28.047818,9.7999999 27.366667,9.7999999 C 26.685515,9.7999999 26.133333,9.1433508 26.133333,8.333333 C 26.133333,7.5233152 26.685515,6.8666661 27.366667,6.8666661 C 28.047818,6.8666661 28.6,7.5233152 28.6,8.333333 z" + transform="matrix(1.0410748,0,0,0.8754493,-1.4907471,0.7045893)" + id="path14" + style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.5;stroke-opacity:1" /> <path - style="fill:none;stroke:#008000;stroke-width:3;stroke-opacity:1" - d="M 30.000018,17.434772 C 32.533265,17.466135 36.375857,19.030117 38.250018,20.734772 C 40.267187,22.569502 40.227344,25.717122 40.450018,28.434772 C 40.659101,30.986552 40.208339,33.446565 38.800018,35.584772 C 37.70354,37.249516 36.755682,38.040252 34.950018,38.884772 C 33.924157,39.364573 31.127256,40.974015 30.000018,40.864772 C 28.241122,40.694312 26.528528,39.852644 25.050018,38.884772 C 23.577823,37.921034 22.04357,37.128976 21.200018,35.584772 C 20.087184,33.547623 19.291665,30.741637 19.550018,28.434772 C 19.851198,25.745495 19.738642,22.5451 21.750018,20.734772 C 23.35027,19.294472 27.847215,17.408119 30.000018,17.434772 z" /> + d="M 30.000018,17.434772 C 32.533265,17.466135 36.375857,19.030117 38.250018,20.734772 C 40.267187,22.569502 40.227344,25.717122 40.450018,28.434772 C 40.659101,30.986552 40.208339,33.446565 38.800018,35.584772 C 37.70354,37.249516 36.755682,38.040252 34.950018,38.884772 C 33.924157,39.364573 31.127256,40.974015 30.000018,40.864772 C 28.241122,40.694312 26.528528,39.852644 25.050018,38.884772 C 23.577823,37.921034 22.04357,37.128976 21.200018,35.584772 C 20.087184,33.547623 19.291665,30.741637 19.550018,28.434772 C 19.851198,25.745495 19.738642,22.5451 21.750018,20.734772 C 23.35027,19.294472 27.847215,17.408119 30.000018,17.434772 z" + id="path16" + style="fill:none;stroke:#008000;stroke-width:3;stroke-opacity:1" /> </g> </svg> diff --git a/images/en/pen/fillscreen.svg b/images/en/pen/fillscreen.svg index 5148764..0055479 100644 --- a/images/en/pen/fillscreen.svg +++ b/images/en/pen/fillscreen.svg @@ -41,24 +41,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,67 L 69.5,72 L 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 L 4.5,72 L 1,67 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,76.5 L 26.5,76.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,76.5 L 63.5,76.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,80 L 47,80" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/pendown.svg b/images/en/pen/pendown.svg index fbd3dbe..dba2a7b 100644 --- a/images/en/pen/pendown.svg +++ b/images/en/pen/pendown.svg @@ -29,24 +29,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/pengroup.svg b/images/en/pen/pengroup.svg index 22272eb..975584b 100644 --- a/images/en/pen/pengroup.svg +++ b/images/en/pen/pengroup.svg @@ -1,356 +1,482 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" - height="404" - version="1.0"> - <svg:defs> - <svg:linearGradient + height="500" + id="svg2"> + <defs + id="defs4"> + <linearGradient id="linearGradient3876"> - <svg:stop + <stop id="stop3878" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <svg:stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop id="stop3880" - offset="1" - style="stop-color:#00ffff;stop-opacity:1;" /> - </svg:linearGradient> - <svg:linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3889" - gradientUnits="userSpaceOnUse" + style="stop-color:#00ffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - inkscape:collect="always" + y2="22" + id="linearGradient3889" xlink:href="#linearGradient3166" - id="linearGradient3913" - gradientUnits="userSpaceOnUse" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - inkscape:collect="always" + y2="22" + id="linearGradient3913" xlink:href="#linearGradient3166" - id="linearGradient3915" - gradientUnits="userSpaceOnUse" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3876" - id="linearGradient4830" + y2="22" + id="linearGradient3915" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="18.291491" y1="48.644657" x2="67.627289" y2="48.644657" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4830" xlink:href="#linearGradient3876" - id="linearGradient4838" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="77.372711" y1="48.644657" x2="126.70851" y2="48.644657" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4838" xlink:href="#linearGradient3876" - id="linearGradient4846" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="43.415215" y1="95.379143" x2="92.751015" y2="95.379143" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4846" xlink:href="#linearGradient3876" - id="linearGradient4854" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="43.415215" y1="147.44724" x2="92.751015" y2="147.44724" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4854" xlink:href="#linearGradient3876" - id="linearGradient4862" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="43.415215" y1="199.5153" x2="92.751015" y2="199.5153" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4862" xlink:href="#linearGradient3876" - id="linearGradient4870" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="43.415215" y1="258.58374" x2="92.751015" y2="258.58374" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4870" xlink:href="#linearGradient3876" - id="linearGradient4878" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="37.331573" y1="312.79697" x2="107.66842" y2="312.79697" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4878" xlink:href="#linearGradient3876" - id="linearGradient4886" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,95.96579)" /> + <linearGradient x1="37.331573" y1="337.74872" x2="107.66842" y2="337.74872" - gradientUnits="userSpaceOnUse" /> - <svg:linearGradient - inkscape:collect="always" + id="linearGradient4886" xlink:href="#linearGradient3876" - id="linearGradient4894" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,95.96579)" /> + <linearGradient x1="37.331573" y1="362.7005" x2="107.66842" y2="362.7005" - gradientUnits="userSpaceOnUse" /> - </svg:defs> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" - d="M 0.5594301,0.5 L 0.49711997,390.41023 L 3.6209793,397.14297 L 8.494839,401.1072 L 15.156388,403.50288 L 128.9813,403.50288 L 135.82978,400.93866 L 141.77903,396.04729 L 144.50288,387.79171 L 144.54057,0.5 L 0.5594301,0.5 z" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.08842015;stroke-opacity:1" + id="linearGradient4894" + xlink:href="#linearGradient3876" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,95.96579)" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient3172" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.67,0,0,0.67,43.745213,299.47)" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ffff;stop-opacity:1" + offset="1" /> + </linearGradient> + </defs> + <path + d="M 0.5594301,0.5 L 0.49711997,486 L 3.6209793,492 L 8.494839,496 L 15.156388,499 L 128.9813,499 L 135.82978,496 L 141.77903,492 L 144.50288,486 L 144.54057,0.5 L 0.5594301,0.5 z" + id="path21" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" /> + <rect width="123.6" height="0.14" x="10.7" - y="295" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.08842015;stroke-opacity:1" + y="391" + id="rect23" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.08842015;stroke-opacity:1" /> + <rect width="123.6" height="0.14" x="10.7" - y="296" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.08842015;stroke-opacity:1" + y="392" + id="rect25" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.08842015;stroke-opacity:1" /> + <rect width="123.6" height="0.14" x="10.7" - y="297" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="393" + id="rect27" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.08842015;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7" y="-29" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + transform="scale(1,-1)" + id="rect29" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7" - y="-27.8" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="-27.799999" + transform="scale(1,-1)" + id="rect31" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7" - y="-376.8" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="-474.79999" + transform="scale(1,-1)" + id="rect33" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7" - y="-375.5" - transform="scale(1,-1)" /> - <svg:path - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - transform="translate(1.375,-48.749023)" /> - <svg:text - style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans;fill:#ffffff;"> - <svg:tspan + y="-473.5" + transform="scale(1,-1)" + id="rect35" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <path + d="M 80.875,486.375 C 80.875,490.86231 77.125385,494.5 72.5,494.5 C 67.874615,494.5 64.125,490.86231 64.125,486.375 C 64.125,481.88769 67.874615,478.25 72.5,478.25 C 77.125385,478.25 80.875,481.88769 80.875,486.375 L 80.875,486.375 z" + id="path37" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> + <text + y="96.749023" + id="text39" + style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans"> + <tspan x="68" - y="394" - style="font-size:12px;font-weight:bold;fill:#ffffff;">X</svg:tspan></svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="490.74902" + id="tspan41" + style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> + </text> + <text + id="text43" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" y="21" - style="font-size:20px">Pen</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient4830);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" - d="M 50.29309,34.643957 C 60.96029,34.643957 60.96029,34.643957 60.96029,34.643957 L 64.62714,37.310757 L 66.96059,41.310957 L 66.96059,53.978257 L 64.62714,57.311757 L 60.96029,59.978557 L 49.62639,59.978557 L 49.62639,59.978557 L 49.62639,62.645357 L 36.29239,62.645357 L 36.29239,59.978557 L 24.95849,59.978557 L 21.29164,57.311757 L 18.95819,53.978257 L 18.95819,41.310957 L 21.29164,37.310757 L 24.95849,34.643957 L 35.62569,34.643957 L 35.62569,37.977457 L 50.29309,37.977457 L 50.29309,34.643957 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan45" + style="font-size:20px">Pen</tspan> + </text> + <path + d="M 50.29309,34.643957 C 60.96029,34.643957 60.96029,34.643957 60.96029,34.643957 L 64.62714,37.310757 L 66.96059,41.310957 L 66.96059,53.978257 L 64.62714,57.311757 L 60.96029,59.978557 L 49.62639,59.978557 L 49.62639,59.978557 L 49.62639,62.645357 L 36.29239,62.645357 L 36.29239,59.978557 L 24.95849,59.978557 L 21.29164,57.311757 L 18.95819,53.978257 L 18.95819,41.310957 L 21.29164,37.310757 L 24.95849,34.643957 L 35.62569,34.643957 L 35.62569,37.977457 L 50.29309,37.977457 L 50.29309,34.643957 z" + id="path47" + style="fill:url(#linearGradient4830);fill-opacity:1;stroke:#00a0a0;stroke-width:1;stroke-opacity:1" /> + <text + id="text49" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="43" y="51.5" - font-size="11">pu</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient4838);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 109.37431,34.643957 C 120.04151,34.643957 120.04151,34.643957 120.04151,34.643957 L 123.70836,37.310757 L 126.04181,41.310957 L 126.04181,53.978257 L 123.70836,57.311757 L 120.04151,59.978557 L 108.70761,59.978557 L 108.70761,59.978557 L 108.70761,62.645357 L 95.373609,62.645357 L 95.373609,59.978557 L 84.039709,59.978557 L 80.372859,57.311757 L 78.039409,53.978257 L 78.039409,41.310957 L 80.372859,37.310757 L 84.039709,34.643957 L 94.706909,34.643957 L 94.706909,37.977457 L 109.37431,37.977457 L 109.37431,34.643957 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan51" + style="font-size:11px">pu</tspan> + </text> + <path + d="M 109.37431,34.643957 C 120.04151,34.643957 120.04151,34.643957 120.04151,34.643957 L 123.70836,37.310757 L 126.04181,41.310957 L 126.04181,53.978257 L 123.70836,57.311757 L 120.04151,59.978557 L 108.70761,59.978557 L 108.70761,59.978557 L 108.70761,62.645357 L 95.373609,62.645357 L 95.373609,59.978557 L 84.039709,59.978557 L 80.372859,57.311757 L 78.039409,53.978257 L 78.039409,41.310957 L 80.372859,37.310757 L 84.039709,34.643957 L 94.706909,34.643957 L 94.706909,37.977457 L 109.37431,37.977457 L 109.37431,34.643957 z" + id="path53" + style="fill:url(#linearGradient4838);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + id="text55" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="101" y="51.5" - font-size="11">pd</svg:tspan> - </svg:text> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,85.211967 L 101.08476,85.211967 L 101.08476,89.212167 L 98.417963,89.212167 L 98.417963,87.212067 L 91.417613,87.212067" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,103.54622 L 101.08476,103.54622 L 101.08476,99.546017 L 98.417963,99.546017 L 98.417963,101.54612 L 91.417613,101.54612" /> - <svg:path - style="fill:url(#linearGradient4846);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 75.416813,76.044842 C 86.084013,76.044842 86.084013,76.044842 86.084013,76.044842 L 89.750863,78.711642 L 92.084313,82.711842 L 92.084313,105.37964 L 89.750863,109.37984 L 86.084013,112.04664 L 74.750113,112.04664 L 74.750113,112.04664 L 74.750113,114.71344 L 61.416113,114.71344 L 61.416113,112.04664 L 50.082213,112.04664 L 46.415363,109.37984 L 44.081913,105.37964 L 44.081913,82.711842 L 46.415363,78.711642 L 50.082213,76.044842 L 60.749413,76.044842 L 60.749413,79.378342 L 75.416813,79.378342 L 75.416813,76.044842 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan57" + style="font-size:11px">pd</tspan> + </text> + <path + d="M 90.084213,85.211967 L 101.08476,85.211967 L 101.08476,89.212167 L 98.417963,89.212167 L 98.417963,87.212067 L 91.417613,87.212067" + id="path59" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90.084213,103.54622 L 101.08476,103.54622 L 101.08476,99.546017 L 98.417963,99.546017 L 98.417963,101.54612 L 91.417613,101.54612" + id="path61" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 75.416813,76.044842 C 86.084013,76.044842 86.084013,76.044842 86.084013,76.044842 L 89.750863,78.711642 L 92.084313,82.711842 L 92.084313,105.37964 L 89.750863,109.37984 L 86.084013,112.04664 L 74.750113,112.04664 L 74.750113,112.04664 L 74.750113,114.71344 L 61.416113,114.71344 L 61.416113,112.04664 L 50.082213,112.04664 L 46.415363,109.37984 L 44.081913,105.37964 L 44.081913,82.711842 L 46.415363,78.711642 L 50.082213,76.044842 L 60.749413,76.044842 L 60.749413,79.378342 L 75.416813,79.378342 L 75.416813,76.044842 z" + id="path63" + style="fill:url(#linearGradient4846);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + id="text65" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="93" - font-size="11">set</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan67" + style="font-size:11px">set</tspan> + </text> + <text + id="text69" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="106" - font-size="11">pensize</svg:tspan> - </svg:text> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,137.28005 L 101.08476,137.28005 L 101.08476,141.28025 L 98.417963,141.28025 L 98.417963,139.28015 L 91.417613,139.28015" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,155.6143 L 101.08476,155.6143 L 101.08476,151.6141 L 98.417963,151.6141 L 98.417963,153.6142 L 91.417613,153.6142" /> - <svg:path - style="fill:url(#linearGradient4854);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 75.416813,128.11293 C 86.084013,128.11293 86.084013,128.11293 86.084013,128.11293 L 89.750863,130.77973 L 92.084313,134.77993 L 92.084313,157.44773 L 89.750863,161.44793 L 86.084013,164.11473 L 74.750113,164.11473 L 74.750113,164.11473 L 74.750113,166.78153 L 61.416113,166.78153 L 61.416113,164.11473 L 50.082213,164.11473 L 46.415363,161.44793 L 44.081913,157.44773 L 44.081913,134.77993 L 46.415363,130.77973 L 50.082213,128.11293 L 60.749413,128.11293 L 60.749413,131.44643 L 75.416813,131.44643 L 75.416813,128.11293 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan71" + style="font-size:11px">pensize</tspan> + </text> + <path + d="M 90.084213,137.28005 L 101.08476,137.28005 L 101.08476,141.28025 L 98.417963,141.28025 L 98.417963,139.28015 L 91.417613,139.28015" + id="path73" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90.084213,155.6143 L 101.08476,155.6143 L 101.08476,151.6141 L 98.417963,151.6141 L 98.417963,153.6142 L 91.417613,153.6142" + id="path75" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 75.416813,128.11293 C 86.084013,128.11293 86.084013,128.11293 86.084013,128.11293 L 89.750863,130.77973 L 92.084313,134.77993 L 92.084313,157.44773 L 89.750863,161.44793 L 86.084013,164.11473 L 74.750113,164.11473 L 74.750113,164.11473 L 74.750113,166.78153 L 61.416113,166.78153 L 61.416113,164.11473 L 50.082213,164.11473 L 46.415363,161.44793 L 44.081913,157.44773 L 44.081913,134.77993 L 46.415363,130.77973 L 50.082213,128.11293 L 60.749413,128.11293 L 60.749413,131.44643 L 75.416813,131.44643 L 75.416813,128.11293 z" + id="path77" + style="fill:url(#linearGradient4854);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + id="text79" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="145" - font-size="11">set</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan81" + style="font-size:11px">set</tspan> + </text> + <text + id="text83" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="158" - font-size="11">color</svg:tspan> - </svg:text> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,189.34813 L 101.08476,189.34813 L 101.08476,193.34833 L 98.417963,193.34833 L 98.417963,191.34823 L 91.417613,191.34823" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,207.68238 L 101.08476,207.68238 L 101.08476,203.68218 L 98.417963,203.68218 L 98.417963,205.68228 L 91.417613,205.68228" /> - <svg:path - style="fill:url(#linearGradient4862);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 75.416813,180.18101 C 86.084013,180.18101 86.084013,180.18101 86.084013,180.18101 L 89.750863,182.84781 L 92.084313,186.84801 L 92.084313,209.51581 L 89.750863,213.51601 L 86.084013,216.18281 L 74.750113,216.18281 L 74.750113,216.18281 L 74.750113,218.84961 L 61.416113,218.84961 L 61.416113,216.18281 L 50.082213,216.18281 L 46.415363,213.51601 L 44.081913,209.51581 L 44.081913,186.84801 L 46.415363,182.84781 L 50.082213,180.18101 L 60.749413,180.18101 L 60.749413,183.51451 L 75.416813,183.51451 L 75.416813,180.18101 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan85" + style="font-size:11px">color</tspan> + </text> + <path + d="M 90.084213,189.34813 L 101.08476,189.34813 L 101.08476,193.34833 L 98.417963,193.34833 L 98.417963,191.34823 L 91.417613,191.34823" + id="path87" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90.084213,207.68238 L 101.08476,207.68238 L 101.08476,203.68218 L 98.417963,203.68218 L 98.417963,205.68228 L 91.417613,205.68228" + id="path89" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 75.416813,180.18101 C 86.084013,180.18101 86.084013,180.18101 86.084013,180.18101 L 89.750863,182.84781 L 92.084313,186.84801 L 92.084313,209.51581 L 89.750863,213.51601 L 86.084013,216.18281 L 74.750113,216.18281 L 74.750113,216.18281 L 74.750113,218.84961 L 61.416113,218.84961 L 61.416113,216.18281 L 50.082213,216.18281 L 46.415363,213.51601 L 44.081913,209.51581 L 44.081913,186.84801 L 46.415363,182.84781 L 50.082213,180.18101 L 60.749413,180.18101 L 60.749413,183.51451 L 75.416813,183.51451 L 75.416813,180.18101 z" + id="path91" + style="fill:url(#linearGradient4862);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + id="text93" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="197" - font-size="11">set</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan95" + style="font-size:11px">set</tspan> + </text> + <text + id="text97" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="210" - font-size="11">shade</svg:tspan> - </svg:text> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 89.917538,260.08382 L 100.91809,260.08382 L 100.91809,264.2507 L 98.251288,264.2507 L 98.251288,262.08393 L 91.250938,262.08393" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 89.917538,278.41807 L 100.91809,278.41807 L 100.91809,274.41787 L 98.251288,274.41787 L 98.251288,276.41797 L 91.250938,276.41797" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,235.5826 L 101.08476,235.5826 L 101.08476,239.5828 L 98.417963,239.5828 L 98.417963,237.5827 L 91.417613,237.5827" /> - <svg:path - style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" - d="M 90.084213,253.91685 L 101.08476,253.91685 L 101.08476,249.91665 L 98.417963,249.91665 L 98.417963,251.91675 L 91.417613,251.91675" /> - <svg:path - style="fill:url(#linearGradient4870);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 75.416813,232.2491 C 86.084013,232.2491 86.084013,232.2491 86.084013,232.2491 L 89.750863,234.9159 L 92.084313,238.9161 L 92.084313,276.2513 L 89.750863,279.5848 L 86.084013,282.2516 L 74.750113,282.2516 L 74.750113,282.2516 L 74.750113,284.9184 L 61.416113,284.9184 L 61.416113,282.2516 L 50.082213,282.2516 L 46.415363,279.5848 L 44.081913,276.2513 L 44.081913,238.9161 L 46.415363,234.9159 L 50.082213,232.2491 L 60.749413,232.2491 L 60.749413,235.5826 L 75.416813,235.5826 L 75.416813,232.2491 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan99" + style="font-size:11px">shade</tspan> + </text> + <path + d="M 89.917538,260.08382 L 100.91809,260.08382 L 100.91809,264.2507 L 98.251288,264.2507 L 98.251288,262.08393 L 91.250938,262.08393" + id="path101" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 89.917538,278.41807 L 100.91809,278.41807 L 100.91809,274.41787 L 98.251288,274.41787 L 98.251288,276.41797 L 91.250938,276.41797" + id="path103" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90.084213,235.5826 L 101.08476,235.5826 L 101.08476,239.5828 L 98.417963,239.5828 L 98.417963,237.5827 L 91.417613,237.5827" + id="path105" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 90.084213,253.91685 L 101.08476,253.91685 L 101.08476,249.91665 L 98.417963,249.91665 L 98.417963,251.91675 L 91.417613,251.91675" + id="path107" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.00004995;stroke-opacity:1" /> + <path + d="M 75.416813,232.2491 C 86.084013,232.2491 86.084013,232.2491 86.084013,232.2491 L 89.750863,234.9159 L 92.084313,238.9161 L 92.084313,276.2513 L 89.750863,279.5848 L 86.084013,282.2516 L 74.750113,282.2516 L 74.750113,282.2516 L 74.750113,284.9184 L 61.416113,284.9184 L 61.416113,282.2516 L 50.082213,282.2516 L 46.415363,279.5848 L 44.081913,276.2513 L 44.081913,238.9161 L 46.415363,234.9159 L 50.082213,232.2491 L 60.749413,232.2491 L 60.749413,235.5826 L 75.416813,235.5826 L 75.416813,232.2491 z" + id="path109" + style="fill:url(#linearGradient4870);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + id="text111" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="255" - font-size="11">fill</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan113" + style="font-size:11px">fill</tspan> + </text> + <text + id="text115" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="68" y="268" - font-size="11">screen</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:end;text-align:end;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan117" + style="font-size:11px">screen</tspan> + </text> + <text + id="text119" + style="font-size:12px;text-align:end;text-anchor:end;font-family:Bitstream Vera Sans"> + <tspan x="91" y="243" - font-size="8">color</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:end;text-align:end;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan121" + style="font-size:8px">color</tspan> + </text> + <text + id="text123" + style="font-size:12px;text-align:end;text-anchor:end;font-family:Bitstream Vera Sans"> + <tspan x="91" y="277" - font-size="8">shade</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient4878);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 37.998275,306.12996 L 41.331775,306.12996 L 41.331775,308.79676 L 45.998675,308.79676 L 45.998675,306.12996 L 107.00172,306.12996 L 107.00172,319.46396 L 45.998675,319.46396 L 45.998675,316.79716 L 41.331775,316.79716 L 41.331775,319.46396 L 37.998275,319.46396 L 37.998275,306.12996 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan125" + style="font-size:8px">shade</tspan> + </text> + <path + d="M 37.998275,402.09575 L 41.331775,402.09575 L 41.331775,404.76255 L 45.998675,404.76255 L 45.998675,402.09575 L 107.00172,402.09575 L 107.00172,415.42975 L 45.998675,415.42975 L 45.998675,412.76295 L 41.331775,412.76295 L 41.331775,415.42975 L 37.998275,415.42975 L 37.998275,402.09575 z" + id="path127" + style="fill:url(#linearGradient4878);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + y="95.96579" + id="text129" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="316" - font-size="10.5">pensize</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient4886);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 37.998275,331.08173 L 41.331775,331.08173 L 41.331775,333.74853 L 45.998675,333.74853 L 45.998675,331.08173 L 107.00172,331.08173 L 107.00172,344.41573 L 45.998675,344.41573 L 45.998675,341.74893 L 41.331775,341.74893 L 41.331775,344.41573 L 37.998275,344.41573 L 37.998275,331.08173 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="411.96579" + id="tspan131" + style="font-size:10.5px">pensize</tspan> + </text> + <path + d="M 37.998275,427.04752 L 41.331775,427.04752 L 41.331775,429.71432 L 45.998675,429.71432 L 45.998675,427.04752 L 107.00172,427.04752 L 107.00172,440.38152 L 45.998675,440.38152 L 45.998675,437.71472 L 41.331775,437.71472 L 41.331775,440.38152 L 37.998275,440.38152 L 37.998275,427.04752 z" + id="path133" + style="fill:url(#linearGradient4886);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + y="95.96579" + id="text135" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="341" - font-size="10.5">color</svg:tspan> - </svg:text> - <svg:path - style="fill:url(#linearGradient4894);fill-opacity:1.0;stroke:#00a0a0;stroke-width:1.33340001000000008;stroke-opacity:1" - d="M 37.998275,356.03351 L 41.331775,356.03351 L 41.331775,358.70031 L 45.998675,358.70031 L 45.998675,356.03351 L 107.00172,356.03351 L 107.00172,369.36751 L 45.998675,369.36751 L 45.998675,366.70071 L 41.331775,366.70071 L 41.331775,369.36751 L 37.998275,369.36751 L 37.998275,356.03351 z" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + y="436.96579" + id="tspan137" + style="font-size:10.5px">color</tspan> + </text> + <path + d="M 37.998275,451.9993 L 41.331775,451.9993 L 41.331775,454.6661 L 45.998675,454.6661 L 45.998675,451.9993 L 107.00172,451.9993 L 107.00172,465.3333 L 45.998675,465.3333 L 45.998675,462.6665 L 41.331775,462.6665 L 41.331775,465.3333 L 37.998275,465.3333 L 37.998275,451.9993 z" + id="path139" + style="fill:url(#linearGradient4894);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33340001;stroke-opacity:1" /> + <text + y="95.96579" + id="text141" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" - y="366" - font-size="10.5">shade</svg:tspan> - </svg:text> -</svg:svg> + y="461.96579" + id="tspan143" + style="font-size:10.5px">shade</tspan> + </text> + <path + d="M 90.645213,309.3525 L 101.70021,309.3525 L 101.70021,313.3725 L 99.020213,313.3725 L 99.020213,311.3625 L 91.985213,311.3625" + id="path2622" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 90.645213,327.7775 L 101.70021,327.7775 L 101.70021,323.7575 L 99.020213,323.7575 L 99.020213,325.7675 L 91.985213,325.7675" + id="path2624" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 75.905213,300.14 C 86.625213,300.14 86.625213,300.14 86.625213,300.14 L 90.310213,302.82 L 92.655213,306.84 L 92.655213,329.62 L 90.310213,333.64 L 86.625213,336.32 L 75.235213,336.32 L 75.235213,336.32 L 75.235213,339 L 61.835213,339 L 61.835213,336.32 L 50.445213,336.32 L 46.760213,333.64 L 44.415213,329.62 L 44.415213,306.84 L 46.760213,302.82 L 50.445213,300.14 L 61.165213,300.14 L 61.165213,303.49 L 75.905213,303.49 L 75.905213,300.14 z" + id="path2626" + style="fill:url(#linearGradient4886);fill-opacity:1;stroke:#00a0a0;stroke-width:1.33;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="43.745213" + y="299.47" + id="text2628" + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68.53521" + y="314.20999" + id="tspan2630" + style="font-size:10.5px">set</tspan> + </text> + <text + x="43.745213" + y="299.47" + id="text2632" + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68.53521" + y="323.59" + id="tspan2634" + style="font-size:10.5px">text</tspan> + </text> + <text + x="43.745213" + y="299.47" + id="text2636" + style="font-size:10.5px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68.53521" + y="332.97" + id="tspan2638" + style="font-size:10.5px">color</tspan> + </text> +</svg> diff --git a/images/en/pen/penmask.svg b/images/en/pen/penmask.svg index 70ec593..a050e75 100644 --- a/images/en/pen/penmask.svg +++ b/images/en/pen/penmask.svg @@ -1,79 +1,118 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg + xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" + version="1.0" width="145" - height="404" - version="1.0"> + height="500" + id="svg3575"> + <defs + id="defs3622" /> <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" width="143" height="404" x="1" - y="0" /> + y="0" + id="rect3577" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> <rect - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" width="145" height="29" x="0" - y="0" /> + y="0" + id="rect3579" + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" - d="M 0.5,374.5 L 0.5,390.5 L 3.5,397.5 L 8.5,401.5 L 15,404 L 129,404 L 136,401.5 L 142,396.5 L 145,388.5 L 145,374.5 L 0.5,374.5 z" /> + d="M 0.5,470.5 L 0.5,486.5 L 3.5,493.5 L 8.5,497.5 L 15,500 L 129,500 L 136,497.5 L 142,492.5 L 145,484.5 L 145,470.5 L 0.5,470.5 z" + id="path3581" + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> <path - style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" - d="M 50,33 C 61,33 61,33 61,33 L 64,36 L 67,40 L 67,53 L 64,56 L 61,59 L 49,59 L 49,59 L 49,61 L 36,61 L 36,59 L 25,59 L 21,56 L 19,53 L 19,40 L 21,36 L 25,33 L 35,33 L 35,37 L 50,37 L 50,33 z" /> + d="M 50,33 C 61,33 61,33 61,33 L 64,36 L 67,40 L 67,53 L 64,56 L 61,59 L 49,59 L 49,59 L 49,61 L 36,61 L 36,59 L 25,59 L 21,56 L 19,53 L 19,40 L 21,36 L 25,33 L 35,33 L 35,37 L 50,37 L 50,33 z" + id="path3583" + style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" - d="M 109,33 C 120,33 120,33 120,33 L 123,36 L 126,40 L 126,53 L 123,56 L 120,59 L 108,59 L 108,59 L 108,61 L 95,61 L 95,59 L 84,59 L 80,56 L 78,53 L 78,40 L 80,36 L 84,33 L 94,33 L 94,37 L 109,37 L 109,33 z" /> + d="M 109,33 C 120,33 120,33 120,33 L 123,36 L 126,40 L 126,53 L 123,56 L 120,59 L 108,59 L 108,59 L 108,61 L 95,61 L 95,59 L 84,59 L 80,56 L 78,53 L 78,40 L 80,36 L 84,33 L 94,33 L 94,37 L 109,37 L 109,33 z" + id="path3585" + style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" - d="M 90,84 L 101,84 L 101,88 L 98,88 L 98,86 L 91,86" /> + d="M 90,84 L 101,84 L 101,88 L 98,88 L 98,86 L 91,86" + id="path3587" + style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" - d="M 90,102 L 101,102 L 101,98 L 98,98 L 98,100 L 91,100" /> + d="M 90,102 L 101,102 L 101,98 L 98,98 L 98,100 L 91,100" + id="path3589" + style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" - d="M 75,75 C 86,75 86,75 86,75 L 89,77 L 92,81 L 92,104 L 89,108 L 86,111 L 74,111 L 74,111 L 74,113 L 61,113 L 61,111 L 50,111 L 46,108 L 44,104 L 44,81 L 46,77 L 50,75 L 60,75 L 60,78 L 75,78 L 75,75 z" /> + d="M 75,75 C 86,75 86,75 86,75 L 89,77 L 92,81 L 92,104 L 89,108 L 86,111 L 74,111 L 74,111 L 74,113 L 61,113 L 61,111 L 50,111 L 46,108 L 44,104 L 44,81 L 46,77 L 50,75 L 60,75 L 60,78 L 75,78 L 75,75 z" + id="path3591" + style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" - d="M 90,136 L 101,136 L 101,140 L 98,140 L 98,138 L 91,138" /> + d="M 90,136 L 101,136 L 101,140 L 98,140 L 98,138 L 91,138" + id="path3593" + style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" - d="M 90,154 L 101,154 L 101,150 L 98,150 L 98,152 L 91,152" /> + d="M 90,154 L 101,154 L 101,150 L 98,150 L 98,152 L 91,152" + id="path3595" + style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" - d="M 75,127 C 86,127 86,127 86,127 L 89,129 L 92,133 L 92,156 L 89,160 L 86,163 L 74,163 L 74,163 L 74,165 L 61,165 L 61,163 L 50,163 L 46,160 L 44,156 L 44,133 L 46,129 L 50,127 L 60,127 L 60,130 L 75,130 L 75,127 z" /> + d="M 75,127 C 86,127 86,127 86,127 L 89,129 L 92,133 L 92,156 L 89,160 L 86,163 L 74,163 L 74,163 L 74,165 L 61,165 L 61,163 L 50,163 L 46,160 L 44,156 L 44,133 L 46,129 L 50,127 L 60,127 L 60,130 L 75,130 L 75,127 z" + id="path3597" + style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" - d="M 90,188 L 101,188 L 101,192 L 98,192 L 98,190 L 91,190" /> + d="M 90,188 L 101,188 L 101,192 L 98,192 L 98,190 L 91,190" + id="path3599" + style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" - d="M 90,206 L 101,206 L 101,202 L 98,202 L 98,204 L 91,204" /> + d="M 90,206 L 101,206 L 101,202 L 98,202 L 98,204 L 91,204" + id="path3601" + style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" - d="M 75,179 C 86,179 86,179 86,179 L 89,182 L 92,186 L 92,208 L 89,212 L 86,215 L 74,215 L 74,215 L 74,218 L 61,218 L 61,215 L 50,215 L 46,212 L 44,208 L 44,186 L 46,182 L 50,179 L 60,179 L 60,182 L 75,182 L 75,179 z" /> + d="M 75,179 C 86,179 86,179 86,179 L 89,182 L 92,186 L 92,208 L 89,212 L 86,215 L 74,215 L 74,215 L 74,218 L 61,218 L 61,215 L 50,215 L 46,212 L 44,208 L 44,186 L 46,182 L 50,179 L 60,179 L 60,182 L 75,182 L 75,179 z" + id="path3603" + style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 90,259 L 101,259 L 101,263 L 98,263 L 98,261 L 91,261" /> + d="M 90,259 L 101,259 L 101,263 L 98,263 L 98,261 L 91,261" + id="path3605" + style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 90,277 L 101,277 L 101,273 L 98,273 L 98,275 L 91,275" /> + d="M 90,277 L 101,277 L 101,273 L 98,273 L 98,275 L 91,275" + id="path3607" + style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 90,234 L 101,234 L 101,238 L 98,238 L 98,236 L 91,236" /> + d="M 90,234 L 101,234 L 101,238 L 98,238 L 98,236 L 91,236" + id="path3609" + style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 90,253 L 101,253 L 101,249 L 98,249 L 98,251 L 91,251" /> + d="M 90,253 L 101,253 L 101,249 L 98,249 L 98,251 L 91,251" + id="path3611" + style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" - d="M 75,231 C 86,231 86,231 86,231 L 89,234 L 92,238 L 92,275 L 89,278 L 86,281 L 74,281 L 74,281 L 74,284 L 61,284 L 61,281 L 50,281 L 46,278 L 44,275 L 44,238 L 46,234 L 50,231 L 60,231 L 60,234 L 75,234 L 75,231 z" /> + d="M 75,231 C 86,231 86,231 86,231 L 89,234 L 92,238 L 92,275 L 89,278 L 86,281 L 74,281 L 74,281 L 74,284 L 61,284 L 61,281 L 50,281 L 46,278 L 44,275 L 44,238 L 46,234 L 50,231 L 60,231 L 60,234 L 75,234 L 75,231 z" + id="path3613" + style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" - d="M 38,355 L 41,355 L 41,357 L 46,357 L 46,355 L 107,355 L 107,368 L 46,368 L 46,365 L 41,365 L 41,368 L 38,368 L 38,355 z" /> + d="M 38,450.5 L 41,450.5 L 41,452.5 L 46,452.5 L 46,450.5 L 107,450.5 L 107,463.5 L 46,463.5 L 46,460.5 L 41,460.5 L 41,463.5 L 38,463.5 L 38,450.5 z" + id="path3615" + style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" - d="M 38,305 L 41,305 L 41,307 L 46,307 L 46,305 L 107,305 L 107,318 L 46,318 L 46,315 L 41,315 L 41,318 L 38,318 L 38,305 z" /> + d="M 38,400.5 L 41,400.5 L 41,402.5 L 46,402.5 L 46,400.5 L 107,400.5 L 107,413.5 L 46,413.5 L 46,410.5 L 41,410.5 L 41,413.5 L 38,413.5 L 38,400.5 z" + id="path3617" + style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:1;stroke-opacity:1" - d="M 38,330 L 41,330 L 41,332 L 46,332 L 46,330 L 107,330 L 107,343 L 46,343 L 46,340 L 41,340 L 41,343 L 38,343 L 38,330 z" /> + d="M 38,425.5 L 41,425.5 L 41,427.5 L 46,427.5 L 46,425.5 L 107,425.5 L 107,438.5 L 46,438.5 L 46,435.5 L 41,435.5 L 41,438.5 L 38,438.5 L 38,425.5 z" + id="path3619" + style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:1;stroke-opacity:1" /> + <path + d="M 76.327935,300.5 C 87.327935,300.5 87.327935,300.5 87.327935,300.5 L 90.32794,303.5 L 93.32794,307.5 L 93.32794,329.5 L 90.32794,333.5 L 87.327935,336.5 L 75.327935,336.5 L 75.327935,336.5 L 75.327935,339.5 L 62.327935,339.5 L 62.327935,336.5 L 51.327935,336.5 L 47.327935,333.5 L 45.327935,329.5 L 45.327935,307.5 L 47.327935,303.5 L 51.327935,300.5 L 61.327935,300.5 L 61.327935,303.5 L 76.327935,303.5 L 76.327935,300.5 z" + id="path3628" + style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> + <path + d="M 91.00202,308.99191 L 102.00202,308.99191 L 102.00202,312.99191 L 99.00202,312.99191 L 99.00202,310.99191 L 92.00202,310.99191" + id="path3630" + style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> + <path + d="M 91.00202,326.99191 L 102.00202,326.99191 L 102.00202,322.99191 L 99.00202,322.99191 L 99.00202,324.99191 L 92.00202,324.99191" + id="path3632" + style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:1;stroke-opacity:1" /> </svg> diff --git a/images/en/pen/penup.svg b/images/en/pen/penup.svg index 754b524..8620a83 100644 --- a/images/en/pen/penup.svg +++ b/images/en/pen/penup.svg @@ -29,24 +29,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/setcolor.svg b/images/en/pen/setcolor.svg index 594a88d..d9350bd 100644 --- a/images/en/pen/setcolor.svg +++ b/images/en/pen/setcolor.svg @@ -3,7 +3,7 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="87" - height="59" + height="60" version="1.0"> <defs> <linearGradient @@ -38,24 +38,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,55.5 L 26.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,55.5 L 63.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,59.5 L 47.5,59.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/setpensize.svg b/images/en/pen/setpensize.svg index ef12e68..e493cdb 100644 --- a/images/en/pen/setpensize.svg +++ b/images/en/pen/setpensize.svg @@ -3,7 +3,7 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="87" - height="59" + height="60" version="1.0"> <defs> <linearGradient @@ -38,24 +38,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,55.5 L 26.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,55.5 L 63.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,59.5 L 47.5,59.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/setshade.svg b/images/en/pen/setshade.svg index 7b49e28..0db8bc6 100644 --- a/images/en/pen/setshade.svg +++ b/images/en/pen/setshade.svg @@ -3,7 +3,7 @@ xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" width="87" - height="59" + height="60" version="1.0"> <defs> <linearGradient @@ -38,24 +38,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 10.5,55.5 L 26.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 47.5,55.5 L 63.5,55.5" /> - <path - style="fill:none;stroke:#006060;stroke-width:1;stroke-opacity:1" - d="M 26.5,59.5 L 47.5,59.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/pen/settextcolor.svg b/images/en/pen/settextcolor.svg new file mode 100644 index 0000000..a60f9e9 --- /dev/null +++ b/images/en/pen/settextcolor.svg @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + width="87" + height="60" + version="1.0"> + <defs> + <linearGradient + id="linearGradient3166"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop3168" /> + <stop + style="stop-color:#00ffff;stop-opacity:1;" + offset="1" + id="stop3170" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient3166" + id="linearGradient3172" + x1="0" + y1="22" + x2="74" + y2="22" + gradientUnits="userSpaceOnUse" /> + </defs> + <g + transform="translate(0,8.75)"> + <path + d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.5;stroke-opacity:1" /> + <path + d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" + style="fill:#00e0e0;fill-opacity:1;stroke:#008080;stroke-width:1.5;stroke-opacity:1" /> + </g> + <path + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a0a0;stroke-width:2;stroke-opacity:1" + d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,45 L 69.5,51 L 64,55 L 47,55 L 47,55 L 47,59 L 27,59 L 27,55 L 10,55 L 4.5,51 L 1,45 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="22" + style="font-size:18px;">set</tspan> + </text> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="36" + style="font-size:18px;">text</tspan> + </text> + <text + style="font-size:18px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <tspan + x="37" + y="50" + style="font-size:18px;">color</tspan> + </text> +</svg> diff --git a/images/en/sensors/sensorsgroup.svg b/images/en/sensors/sensorsgroup.svg index abad056..d06ac17 100644 --- a/images/en/sensors/sensorsgroup.svg +++ b/images/en/sensors/sensorsgroup.svg @@ -1,173 +1,150 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" height="404" - version="1.0"> - <svg:defs> - <svg:linearGradient + id="svg2"> + <defs + id="defs4"> + <linearGradient id="linearGradient3712"> - <svg:stop + <stop id="stop3714" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <svg:stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop id="stop3716" - offset="1" - style="stop-color:#ff0000;stop-opacity:1;" /> - </svg:linearGradient> + style="stop-color:#ff0000;stop-opacity:1" + offset="1" /> + </linearGradient> <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3712" - id="linearGradient2487" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32.50255,-122.50501)" x1="69.85585" y1="226.65366" x2="140.1927" - y2="226.65366" /> - <linearGradient - inkscape:collect="always" + y2="226.65366" + id="linearGradient2487" xlink:href="#linearGradient3712" - id="linearGradient2494" gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32.50255,-122.74776)" + gradientTransform="translate(-32.50255,-122.50501)" /> + <linearGradient x1="69.85585" y1="174.22649" x2="140.1927" - y2="174.22649" /> - <linearGradient - inkscape:collect="always" + y2="174.22649" + id="linearGradient2494" xlink:href="#linearGradient3712" - id="linearGradient2501" gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32.502549,-96.17004)" + gradientTransform="translate(-32.50255,-122.74776)" /> + <linearGradient x1="69.85585" y1="226.65366" x2="140.1927" - y2="226.65366" /> - <linearGradient - inkscape:collect="always" + y2="226.65366" + id="linearGradient2501" xlink:href="#linearGradient3712" - id="linearGradient2508" gradientUnits="userSpaceOnUse" - gradientTransform="translate(-32.502549,-96.412795)" + gradientTransform="translate(-32.502549,-96.17004)" /> + <linearGradient x1="69.85585" y1="174.22649" x2="140.1927" - y2="174.22649" /> - </svg:defs> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" - d="M 0.5594301,0.5 L 0.49711997,390.41023 L 3.6209793,397.14297 L 8.494839,401.1072 L 15.156388,403.50288 L 128.9813,403.50288 L 135.82978,400.93866 L 141.77903,396.04729 L 144.50288,387.79171 L 144.54057,0.5 L 0.5594301,0.5 z" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + y2="174.22649" + id="linearGradient2508" + xlink:href="#linearGradient3712" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32.502549,-96.412795)" /> + </defs> + <path + d="M 0.5594301,0.5 L 0.49711997,390.41023 L 3.6209793,397.14297 L 8.494839,401.1072 L 15.156388,403.50288 L 128.9813,403.50288 L 135.82978,400.93866 L 141.77903,396.04729 L 144.50288,387.79171 L 144.54057,0.5 L 0.5594301,0.5 z" + id="path13" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7153397" y="-28.931932" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + transform="scale(1,-1)" + id="rect15" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7153397" y="-27.815523" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + transform="scale(1,-1)" + id="rect17" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7153397" y="-376.77127" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" - id="rect4001" + transform="scale(1,-1)" + id="rect19" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.5" height="0.14" x="3.7153397" y="-375.43195" - transform="scale(1,-1)" /> - <svg:path - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - transform="translate(1.375,-48.749023)" /> - <svg:text + transform="scale(1,-1)" + id="rect4001" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" /> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(1.375,-48.749023)" + id="path22" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> + <text + id="text24" style="font-size:12px;font-family:Bitstream Vera Sans"> - <svg:tspan + <tspan x="68" y="394" - style="font-size:12px;font-weight:bold;fill:#ffffff">X</svg:tspan></svg:text> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> - <svg:tspan + id="tspan26" + style="font-size:12px;font-weight:bold;fill:#ffffff">X</tspan> + </text> + <text + id="text28" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" y="21.5" - style="font-size:20px">Sensors</svg:tspan> - </svg:text> + id="tspan30" + style="font-size:20px">Sensors</tspan> + </text> <path - style="fill:url(#linearGradient2508);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" d="M 38.019998,71.146685 L 41.353498,71.146685 L 41.353498,73.813485 L 46.020398,73.813485 L 46.020398,71.146685 L 107.02345,71.146685 L 107.02345,84.480685 L 46.020398,84.480685 L 46.020398,81.813885 L 41.353498,81.813885 L 41.353498,84.480685 L 38.019998,84.480685 L 38.019998,71.146685 z" - id="path100" /> + id="path100" + style="fill:url(#linearGradient2508);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" /> <text - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" - id="text102" + x="-29.99712" y="-96.412788" - x="-29.99712"> + id="text102" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="76.002876" y="81.087212" - font-size="11" id="tspan104" style="font-size:11px">pitch</tspan> </text> <path - style="fill:url(#linearGradient2501);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" - d="M 38.019998,123.81662 L 41.353498,123.81662 L 41.353498,126.48342 L 46.020398,126.48342 L 46.020398,123.81662 L 107.02345,123.81662 L 107.02345,137.15062 L 46.020398,137.15062 L 46.020398,134.48382 L 41.353498,134.48382 L 41.353498,137.15062 L 38.019998,137.15062 L 38.019998,123.81662 z" - id="path106" /> - <text - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" - id="text108" - y="-96.170036" - x="-29.99712"> - <tspan - x="76.002876" - y="133.82996" - font-size="11" - id="tspan110" - style="font-size:11px">voltage</tspan> - </text> - <path - style="fill:url(#linearGradient2494);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" d="M 38.02,44.811717 L 41.3535,44.811717 L 41.3535,47.478517 L 46.0204,47.478517 L 46.0204,44.811717 L 107.02345,44.811717 L 107.02345,58.145717 L 46.0204,58.145717 L 46.0204,55.478917 L 41.3535,55.478917 L 41.3535,58.145717 L 38.02,58.145717 L 38.02,44.811717 z" - id="path2488" /> + id="path2488" + style="fill:url(#linearGradient2494);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" /> <text - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" - id="text2490" + x="-29.78253" y="-122.74776" - x="-29.78253"> + id="text2490" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> <tspan x="76.217468" y="54.752228" - font-size="11" id="tspan2492" style="font-size:11px">volume</tspan> </text> - <path - style="fill:url(#linearGradient2487);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" - d="M 38.02,97.481654 L 41.3535,97.481654 L 41.3535,100.14845 L 46.0204,100.14845 L 46.0204,97.481654 L 107.02345,97.481654 L 107.02345,110.81565 L 46.0204,110.81565 L 46.0204,108.14885 L 41.3535,108.14885 L 41.3535,110.81565 L 38.02,110.81565 L 38.02,97.481654 z" - id="path2494" /> - <text - style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" - id="text2496" - y="-122.505" - x="-29.78253"> - <tspan - x="76.217468" - y="107.49503" - font-size="11" - id="tspan2498" - style="font-size:11px">resistance</tspan> - </text> -</svg:svg> +</svg> diff --git a/images/en/sensors/sensorsgroupxo.svg b/images/en/sensors/sensorsgroupxo.svg new file mode 100644 index 0000000..abad056 --- /dev/null +++ b/images/en/sensors/sensorsgroupxo.svg @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg:svg + xmlns:xlink="http://www.w3.org/1999/xlink" + width="145" + height="404" + version="1.0"> + <svg:defs> + <svg:linearGradient + id="linearGradient3712"> + <svg:stop + id="stop3714" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <svg:stop + id="stop3716" + offset="1" + style="stop-color:#ff0000;stop-opacity:1;" /> + </svg:linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3712" + id="linearGradient2487" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32.50255,-122.50501)" + x1="69.85585" + y1="226.65366" + x2="140.1927" + y2="226.65366" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3712" + id="linearGradient2494" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32.50255,-122.74776)" + x1="69.85585" + y1="174.22649" + x2="140.1927" + y2="174.22649" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3712" + id="linearGradient2501" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32.502549,-96.17004)" + x1="69.85585" + y1="226.65366" + x2="140.1927" + y2="226.65366" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3712" + id="linearGradient2508" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-32.502549,-96.412795)" + x1="69.85585" + y1="174.22649" + x2="140.1927" + y2="174.22649" /> + </svg:defs> + <svg:path + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1px;stroke-opacity:1" + d="M 0.5594301,0.5 L 0.49711997,390.41023 L 3.6209793,397.14297 L 8.494839,401.1072 L 15.156388,403.50288 L 128.9813,403.50288 L 135.82978,400.93866 L 141.77903,396.04729 L 144.50288,387.79171 L 144.54057,0.5 L 0.5594301,0.5 z" /> + <svg:rect + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + width="137.5" + height="0.14" + x="3.7153397" + y="-28.931932" + transform="scale(1,-1)" /> + <svg:rect + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + width="137.5" + height="0.14" + x="3.7153397" + y="-27.815523" + transform="scale(1,-1)" /> + <svg:rect + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" + width="137.5" + height="0.14" + x="3.7153397" + y="-376.77127" + transform="scale(1,-1)" /> + <svg:rect + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1;stroke-opacity:1" + id="rect4001" + width="137.5" + height="0.14" + x="3.7153397" + y="-375.43195" + transform="scale(1,-1)" /> + <svg:path + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" + d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" + transform="translate(1.375,-48.749023)" /> + <svg:text + style="font-size:12px;font-family:Bitstream Vera Sans"> + <svg:tspan + x="68" + y="394" + style="font-size:12px;font-weight:bold;fill:#ffffff">X</svg:tspan></svg:text> + <svg:text + style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> + <svg:tspan + x="72.5" + y="21.5" + style="font-size:20px">Sensors</svg:tspan> + </svg:text> + <path + style="fill:url(#linearGradient2508);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" + d="M 38.019998,71.146685 L 41.353498,71.146685 L 41.353498,73.813485 L 46.020398,73.813485 L 46.020398,71.146685 L 107.02345,71.146685 L 107.02345,84.480685 L 46.020398,84.480685 L 46.020398,81.813885 L 41.353498,81.813885 L 41.353498,84.480685 L 38.019998,84.480685 L 38.019998,71.146685 z" + id="path100" /> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" + id="text102" + y="-96.412788" + x="-29.99712"> + <tspan + x="76.002876" + y="81.087212" + font-size="11" + id="tspan104" + style="font-size:11px">pitch</tspan> + </text> + <path + style="fill:url(#linearGradient2501);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" + d="M 38.019998,123.81662 L 41.353498,123.81662 L 41.353498,126.48342 L 46.020398,126.48342 L 46.020398,123.81662 L 107.02345,123.81662 L 107.02345,137.15062 L 46.020398,137.15062 L 46.020398,134.48382 L 41.353498,134.48382 L 41.353498,137.15062 L 38.019998,137.15062 L 38.019998,123.81662 z" + id="path106" /> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" + id="text108" + y="-96.170036" + x="-29.99712"> + <tspan + x="76.002876" + y="133.82996" + font-size="11" + id="tspan110" + style="font-size:11px">voltage</tspan> + </text> + <path + style="fill:url(#linearGradient2494);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" + d="M 38.02,44.811717 L 41.3535,44.811717 L 41.3535,47.478517 L 46.0204,47.478517 L 46.0204,44.811717 L 107.02345,44.811717 L 107.02345,58.145717 L 46.0204,58.145717 L 46.0204,55.478917 L 41.3535,55.478917 L 41.3535,58.145717 L 38.02,58.145717 L 38.02,44.811717 z" + id="path2488" /> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" + id="text2490" + y="-122.74776" + x="-29.78253"> + <tspan + x="76.217468" + y="54.752228" + font-size="11" + id="tspan2492" + style="font-size:11px">volume</tspan> + </text> + <path + style="fill:url(#linearGradient2487);fill-opacity:1;stroke:#c00000;stroke-width:1;stroke-opacity:1" + d="M 38.02,97.481654 L 41.3535,97.481654 L 41.3535,100.14845 L 46.0204,100.14845 L 46.0204,97.481654 L 107.02345,97.481654 L 107.02345,110.81565 L 46.0204,110.81565 L 46.0204,108.14885 L 41.3535,108.14885 L 41.3535,110.81565 L 38.02,110.81565 L 38.02,97.481654 z" + id="path2494" /> + <text + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans" + id="text2496" + y="-122.505" + x="-29.78253"> + <tspan + x="76.217468" + y="107.49503" + font-size="11" + id="tspan2498" + style="font-size:11px">resistance</tspan> + </text> +</svg:svg> diff --git a/images/en/sensors/sensorsmask.svg b/images/en/sensors/sensorsmask.svg index 2adecbc..93bd513 100644 --- a/images/en/sensors/sensorsmask.svg +++ b/images/en/sensors/sensorsmask.svg @@ -1,38 +1,38 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg + xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" + version="1.0" width="145" height="404" - version="1.0"> + id="svg2"> + <defs + id="defs15" /> <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" width="143" height="404" x="1" - y="0" /> + y="0" + id="rect4" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> <rect - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" width="145" height="29" x="0" - y="0" /> + y="0" + id="rect6" + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" d="M 38.02,44.811717 L 41.3535,44.811717 L 41.3535,47.478517 L 46.0204,47.478517 L 46.0204,44.811717 L 107.02345,44.811717 L 107.02345,58.145717 L 46.0204,58.145717 L 46.0204,55.478917 L 41.3535,55.478917 L 41.3535,58.145717 L 38.02,58.145717 L 38.02,44.811717 z" - id="path2488" /> + id="path2488" + style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" d="M 38.019998,71.146685 L 41.353498,71.146685 L 41.353498,73.813485 L 46.020398,73.813485 L 46.020398,71.146685 L 107.02345,71.146685 L 107.02345,84.480685 L 46.020398,84.480685 L 46.020398,81.813885 L 41.353498,81.813885 L 41.353498,84.480685 L 38.019998,84.480685 L 38.019998,71.146685 z" - id="path100" /> + id="path100" + style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" /> <path - style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" - d="M 38.02,97.481654 L 41.3535,97.481654 L 41.3535,100.14845 L 46.0204,100.14845 L 46.0204,97.481654 L 107.02345,97.481654 L 107.02345,110.81565 L 46.0204,110.81565 L 46.0204,108.14885 L 41.3535,108.14885 L 41.3535,110.81565 L 38.02,110.81565 L 38.02,97.481654 z" - id="path2494" /> - <path - style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" - d="M 38.019998,123.81662 L 41.353498,123.81662 L 41.353498,126.48342 L 46.020398,126.48342 L 46.020398,123.81662 L 107.02345,123.81662 L 107.02345,137.15062 L 46.020398,137.15062 L 46.020398,134.48382 L 41.353498,134.48382 L 41.353498,137.15062 L 38.019998,137.15062 L 38.019998,123.81662 z" - id="path106" /> - <path - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" - d="M 0.5,374.5 L 0.5,390.5 L 3.5,397.5 L 8.5,401.5 L 15,404 L 129,404 L 136,401.5 L 142,396.5 L 145,388.5 L 145,374.5 L 0.5,374.5 z" /> + d="M 0.5,374.5 L 0.5,390.5 L 3.5,397.5 L 8.5,401.5 L 15,404 L 129,404 L 136,401.5 L 142,396.5 L 145,388.5 L 145,374.5 L 0.5,374.5 z" + id="path12" + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> </svg> diff --git a/images/en/sensors/sensorsmaskxo.svg b/images/en/sensors/sensorsmaskxo.svg new file mode 100644 index 0000000..2adecbc --- /dev/null +++ b/images/en/sensors/sensorsmaskxo.svg @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns="http://www.w3.org/2000/svg" + width="145" + height="404" + version="1.0"> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" + width="143" + height="404" + x="1" + y="0" /> + <rect + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" + width="145" + height="29" + x="0" + y="0" /> + <path + style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:1;stroke-opacity:1" + d="M 38.02,44.811717 L 41.3535,44.811717 L 41.3535,47.478517 L 46.0204,47.478517 L 46.0204,44.811717 L 107.02345,44.811717 L 107.02345,58.145717 L 46.0204,58.145717 L 46.0204,55.478917 L 41.3535,55.478917 L 41.3535,58.145717 L 38.02,58.145717 L 38.02,44.811717 z" + id="path2488" /> + <path + style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:1;stroke-opacity:1" + d="M 38.019998,71.146685 L 41.353498,71.146685 L 41.353498,73.813485 L 46.020398,73.813485 L 46.020398,71.146685 L 107.02345,71.146685 L 107.02345,84.480685 L 46.020398,84.480685 L 46.020398,81.813885 L 41.353498,81.813885 L 41.353498,84.480685 L 38.019998,84.480685 L 38.019998,71.146685 z" + id="path100" /> + <path + style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:1;stroke-opacity:1" + d="M 38.02,97.481654 L 41.3535,97.481654 L 41.3535,100.14845 L 46.0204,100.14845 L 46.0204,97.481654 L 107.02345,97.481654 L 107.02345,110.81565 L 46.0204,110.81565 L 46.0204,108.14885 L 41.3535,108.14885 L 41.3535,110.81565 L 38.02,110.81565 L 38.02,97.481654 z" + id="path2494" /> + <path + style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:1;stroke-opacity:1" + d="M 38.019998,123.81662 L 41.353498,123.81662 L 41.353498,126.48342 L 46.020398,126.48342 L 46.020398,123.81662 L 107.02345,123.81662 L 107.02345,137.15062 L 46.020398,137.15062 L 46.020398,134.48382 L 41.353498,134.48382 L 41.353498,137.15062 L 38.019998,137.15062 L 38.019998,123.81662 z" + id="path106" /> + <path + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" + d="M 0.5,374.5 L 0.5,390.5 L 3.5,397.5 L 8.5,401.5 L 15,404 L 129,404 L 136,401.5 L 142,396.5 L 145,388.5 L 145,374.5 L 0.5,374.5 z" /> +</svg> diff --git a/images/en/syntaxerror.svg b/images/en/syntaxerror.svg new file mode 100644 index 0000000..792e725 --- /dev/null +++ b/images/en/syntaxerror.svg @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="767" + height="38" + id="svg2"> + <defs + id="defs41"> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.67,0,0,0.67,125.79816,9.965)" /> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + </defs> + <path + d="M 0.5,37.5 L 0.5,13 L 3.5,6.5 L 8.5,2.5 L 15,0 L 751.5,0 L 758,2.5 L 764,7 L 767,15 L 767,38 L 0.5,37.5 z" + id="path4" + style="fill:#ffd000;fill-opacity:1;fill-rule:evenodd;stroke:#e0a000;stroke-width:0.99423993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(656,63)" + id="g6"> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(24,-485)" + id="path8" + style="fill:#ff4040;fill-opacity:1;fill-rule:nonzero;stroke:#ff4040;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + id="text10" + style="font-size:12px;font-weight:bold;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="91" + y="-42" + id="tspan12" + style="font-size:12px">X</tspan> + </text> + </g> + <g + transform="translate(0,-0.25)" + id="g14"> + <path + d="M 122.5,8.5 L 133.5,8.5 L 133.5,12.5 L 131,12.5 L 131,10.5 L 124,10.5" + id="path16" + style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 122.5,27 L 133.5,27 L 133.5,23 L 131,23 L 131,25 L 124,25" + id="path18" + style="fill:#a0a0a0;fill-opacity:1;stroke:#808080;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 108,5.25 C 118.5,5.25 118.5,5.25 118.5,5.25 C 118.5,5.25 121.5,7 122.25,8 C 123,9 124.5,12 124.5,12 L 124.5,24.5 C 124.5,24.5 123,27 122.25,28 C 121.25,29 118.5,30.5 118.5,30.5 L 107.25,30.5 L 107.25,30 L 107.25,33.25 L 94,33.25 L 94,30.5 L 82.5,30.5 C 82.5,30.5 80,29 79,28 C 78,27 76.5,24.5 76.5,24.5 L 76.5,12 C 76.5,12 78,9 79,8 C 80,7 82.5,5.25 82.5,5.25 L 93.25,5.25 L 93.25,8.5 L 108,8.5 L 108,5.25 z" + id="path20" + style="fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#808080;stroke-width:1.33340001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <path + d="M 126.46816,10.3 L 129.81816,10.3 L 129.81816,12.98 L 134.50816,12.98 L 134.50816,10.3 L 195.81316,10.3 L 195.81316,23.7 L 134.50816,23.7 L 134.50816,21.02 L 129.81816,21.02 L 129.81816,23.7 L 126.46816,23.7 L 126.46816,10.3 z" + id="path2498" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#0000a0;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 205.82231,17.000001 C 205.82231,25.061518 185.73387,31.596667 160.95355,31.596667 C 136.17323,31.596667 116.08479,25.061518 116.08479,17.000001 C 116.08479,8.938484 136.17323,2.4033334 160.95355,2.4033334 C 185.73387,2.4033334 205.82231,8.938484 205.82231,17.000001 L 205.82231,17.000001 z" + id="path22" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <text + x="38" + y="-0.09375" + id="text24" + style="font-size:12px;font-style:normal;font-weight:normal;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="208" + y="27.90625" + id="tspan26" + style="font-size:24px">???</tspan> + </text> + <g + id="g28"> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(-4,20)" + id="path30" + style="opacity:1;fill:#404040;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(1,17)" + id="path32" + style="opacity:1;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 44,15 L 10.5,15 L 27.5,-14 L 44,15 z" + transform="translate(-1,18)" + id="path34" + style="opacity:1;fill:#ffe000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + </g> + <text + id="text36" + style="font-size:12px;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"> + <tspan + x="21" + y="29" + id="tspan38" + style="font-size:24px">!</tspan> + </text> +</svg> diff --git a/images/en/toolbar/blocks-.svg b/images/en/toolbar/blocks-.svg deleted file mode 100644 index 5ff6345..0000000 --- a/images/en/toolbar/blocks-.svg +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - width="145" - height="28" - version="1.0"> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" - d="M 0.55943,0 L 0.49712,14.41023 L 3.62098,21.14297 L 8.49484,25.1072 L 15.15639,27.50288 L 128.9813,27.50288 L 135.82978,24.93866 L 141.77903,20.04729 L 144.50288,11.79171 L 144.54057,0 L 0.55943,0 z" /> - <svg:g - transform="translate(-0.625,-0.25098)"> - <svg:path - transform="translate(59.375,-424.74902)" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - style="fill:#00e000;fill-opacity:1;stroke:#00e000;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> - <svg:tspan - style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans;" - y="17.5" - x="125.5">+</svg:tspan></svg:text> - </svg:g> - <svg:text - style="font-size:12px;font-family:Bitstream Vera Sans"> - <svg:tspan - x="21" - y="22.5" - style="font-size:24px">Blocks</svg:tspan></svg:text> -</svg:svg> diff --git a/images/en/toolbar/hideshowon.svg b/images/en/toolbar/hideshowon.svg deleted file mode 100644 index 6f0ad56..0000000 --- a/images/en/toolbar/hideshowon.svg +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<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="53" - height="43" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="hideshowon.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.0"> - <metadata - id="metadata28"> - <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> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="6.4022989" - inkscape:cx="43.5" - inkscape:cy="-5.1863207" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> - <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 22 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="87 : 22 : 1" - inkscape:persp3d-origin="43.5 : 14.666667 : 1" - id="perspective30" /> - <linearGradient - id="linearGradient3166"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168" /> - <stop - style="stop-color:#ffff00;stop-opacity:1;" - offset="1" - id="stop3170" /> - </linearGradient> - <linearGradient - xlink:href="#linearGradient3166" - id="linearGradient3172" - x1="0" - y1="22" - x2="74" - y2="22" - gradientUnits="userSpaceOnUse" /> - <inkscape:perspective - id="perspective2472" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2487" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - </defs> - <g - id="g2478" - transform="matrix(0.7128619,0,0,0.8895426,-6.102877e-4,0.9471127)"> - <path - sodipodi:nodetypes="ccsccscccccccsccsccccc" - id="path9" - d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient2487);fill-opacity:1;stroke:#c0a000;stroke-width:2;stroke-opacity:1" /> - <path - id="path11" - d="M 49,2.5 L 63,2.5" - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" /> - <path - id="path13" - d="M 11,2.5 L 25,2.5" - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" /> - <path - id="path15" - d="M 10.5,39.5 L 26.5,39.5" - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" /> - <path - id="path17" - d="M 47.5,39.5 L 63.5,39.5" - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" /> - <path - id="path19" - d="M 26.5,43.5 L 47.5,43.5" - style="fill:none;stroke:#606000;stroke-width:1;stroke-opacity:1" /> - <path - id="path21" - d="M 25,7.5 L 49,7.5" - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" /> - </g> -</svg> diff --git a/images/en/toolbar/runoff.svg b/images/en/toolbar/runoff.svg deleted file mode 100644 index dfd8f3b..0000000 --- a/images/en/toolbar/runoff.svg +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="45" - height="45" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs12"> - -</defs><path - d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 13.767741,21.517646 C 13.899435,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.959084,35.74713 11.990413,37.017646 C 5.8646721,45.052209 10.322397,44.581986 10.990413,44.46299 C 12.332265,44.223961 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 48.407372,34.085022 50.27167,32.397855 C 52.814393,30.096722 46.490559,20.584866 44.172599,21.313987 C 40.396315,22.501827 43.839585,22.246778 41.047093,13.017646 C 39.973984,9.4710394 25.21325,2.6451193 23.466121,4.7261484 C 23.629263,5.4952279 34.939131,16.186337 39.617944,21.471087 L 28.879077,17.244367 C 25.596374,15.678955 23.03822,15.299916 19.433733,17.353678 L 16.431709,18.908334 L 14.879077,15.353678 C 12.396341,14.34585 9.5241557,16.306498 9.8770525,19.479184 C 10.079219,21.296746 13.636047,20.841774 13.767741,21.517646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#c0c0c0;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - d="M 41.27754,23.661352 C 41.986669,23.661352 42.561532,24.236214 42.561532,24.945344 C 42.561532,25.654474 41.986669,26.229337 41.27754,26.229337 C 40.56841,26.229337 39.993547,25.654474 39.993547,24.945344 C 39.993547,24.236214 40.56841,23.661352 41.27754,23.661352 z" - id="path3265" - style="fill:none;fill-opacity:1;stroke:#c0c0c0;stroke-width:1.43201554;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/en/toolbar/runon.svg b/images/en/toolbar/runon.svg deleted file mode 100644 index 4d26920..0000000 --- a/images/en/toolbar/runon.svg +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="45" - height="45" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs12"> - -</defs><path - d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 13.767741,21.517646 C 13.899435,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.959084,35.74713 11.990413,37.017646 C 5.8646721,45.052209 10.322397,44.581986 10.990413,44.46299 C 12.332265,44.223961 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 48.407372,34.085022 50.27167,32.397855 C 52.814393,30.096722 46.490559,20.584866 44.172599,21.313987 C 40.396315,22.501827 43.839585,22.246778 41.047093,13.017646 C 39.973984,9.4710394 25.21325,2.6451193 23.466121,4.7261484 C 23.629263,5.4952279 34.939131,16.186337 39.617944,21.471087 L 28.879077,17.244367 C 25.596374,15.678955 23.03822,15.299916 19.433733,17.353678 L 16.431709,18.908334 L 14.879077,15.353678 C 12.396341,14.34585 9.5241557,16.306498 9.8770525,19.479184 C 10.079219,21.296746 13.636047,20.841774 13.767741,21.517646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#00c000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - d="M 41.27754,23.661352 C 41.986669,23.661352 42.561532,24.236214 42.561532,24.945344 C 42.561532,25.654474 41.986669,26.229337 41.27754,26.229337 C 40.56841,26.229337 39.993547,25.654474 39.993547,24.945344 C 39.993547,24.236214 40.56841,23.661352 41.27754,23.661352 z" - id="path3265" - style="fill:none;fill-opacity:1;stroke:#00c000;stroke-width:1.43201554;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/en/toolbar/stepoff.svg b/images/en/toolbar/stepoff.svg deleted file mode 100644 index 1025dd4..0000000 --- a/images/en/toolbar/stepoff.svg +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="45" - height="45" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs12"> - -</defs><path - d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path - d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#c0c0c0;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - d="M 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 z" - id="path2385" - style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/en/toolbar/stepon.svg b/images/en/toolbar/stepon.svg deleted file mode 100644 index ebdc646..0000000 --- a/images/en/toolbar/stepon.svg +++ /dev/null @@ -1,27 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="45" - height="45" - viewBox="0 0 55 55" - id="svg2" - xml:space="preserve"><defs - id="defs12"> - -</defs><path - d="M 36.852226,15.69838 A 11.523279,10.799595 0 1 1 13.805668,15.69838 A 11.523279,10.799595 0 1 1 36.852226,15.69838 z" - transform="matrix(2.1478261,0,0,2.2917526,-26.902174,-8.4768043)" - id="path2387" - style="opacity:1;fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:1.92812335;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94117647" /><path - d="M 11.990413,18.017646 C 12.802994,19.393237 13.858719,20.841774 13.990413,21.517646 C 14.122107,22.193518 13.329772,22.096724 12.490413,23.517646 C 10.794222,26.389069 10.794222,28.646223 12.490413,31.517646 C 13.329772,32.938568 14.122107,32.841774 13.990413,33.517646 C 13.858718,34.193518 12.802994,35.642056 11.990413,37.017646 C 11.046828,38.615007 10.990413,43.023282 10.990413,44.017646 C 10.990413,45.380621 12.807811,43.627769 14.990413,41.017646 L 17.990413,37.017646 L 19.990413,39.017646 C 23.591808,41.069647 25.719736,41.577324 28.990413,40.017646 L 31.490413,38.017646 L 35.490413,43.517646 C 37.137547,45.570847 39.948387,44.852636 40.490413,44.517646 C 40.764949,44.347974 40.805225,42.944288 40.490413,42.017646 C 40.1756,41.091004 39.505699,40.641406 38.740413,39.842619 C 36.142025,37.130486 35.350389,38.404433 36.490413,34.599372 C 37.80724,30.204194 38.882093,29.476417 41.926378,32.231458 C 43.631038,33.774153 45.067291,33.528342 46.931589,31.841175 C 49.474312,29.540042 49.591959,25.848191 47.049236,23.547058 C 45.184938,21.859891 43.513391,21.261139 41.808731,22.803834 C 38.764446,25.558875 37.80724,24.595804 36.490413,20.200626 C 35.35435,16.408784 36.215144,17.428871 38.740413,14.793058 C 39.477179,14.024039 40.18719,13.844329 40.490413,13.017646 C 40.793637,12.190963 40.690074,10.717307 40.490413,10.517646 C 40.091093,10.118326 37.237542,9.4366173 35.490413,11.517646 L 31.490413,17.017646 L 28.990413,15.017646 C 25.70771,13.452234 23.5949,13.963884 19.990413,16.017646 L 17.990413,18.017646 L 14.990413,14.017646 C 12.807811,11.407523 10.990413,9.6546713 10.990413,11.017646 C 10.990413,12.01201 11.046828,16.420285 11.990413,18.017646 z" - id="path2582" - style="fill:#ffffff;fill-opacity:1;stroke:#00c000;stroke-width:1.83333337;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /><path - d="M 33.952541,27.5 L 21.047459,34.959514 C 21.047459,20.040486 21.047459,20.040486 21.047459,20.040486 L 33.952541,27.5 z" - id="path2496" - style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path - d="M 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 A 17.424089,16.199392 0 1 1 41.082996,20.207489 z" - id="path2385" - style="opacity:1;fill:#a0ffa0;fill-opacity:1;stroke:#00c000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /></svg>
\ No newline at end of file diff --git a/images/en/turtle/arc.svg b/images/en/turtle/arc.svg index d38beea..b703c87 100644 --- a/images/en/turtle/arc.svg +++ b/images/en/turtle/arc.svg @@ -41,24 +41,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,67 C 73,67 70.78295,70.693654 69.5,72 C 68.07044,73.455629 64,76 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 C 10,76 5.9295605,73.455629 4.5,72 C 3.2170498,70.693654 1,67 1,67 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,76.5 L 26.5,76.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,76.5 L 63.5,76.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,80 L 47,80" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/back.svg b/images/en/turtle/back.svg index d60b7b7..ec16ed7 100644 --- a/images/en/turtle/back.svg +++ b/images/en/turtle/back.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/clean.svg b/images/en/turtle/clean.svg index a28766d..42ced03 100644 --- a/images/en/turtle/clean.svg +++ b/images/en/turtle/clean.svg @@ -29,24 +29,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/forward.svg b/images/en/turtle/forward.svg index 362455e..f4ad78c 100644 --- a/images/en/turtle/forward.svg +++ b/images/en/turtle/forward.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/image.svg b/images/en/turtle/image.svg new file mode 100644 index 0000000..5d2d28c --- /dev/null +++ b/images/en/turtle/image.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="95" + height="89" + id="svg2"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="66" + y1="23" + x2="203" + y2="23" + id="linearGradient4362" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9988658,0,0,1.0058014,-66.475849,-24.253309)" /> + </defs> + <path + d="M 64.5,0.75 L 47.75,0.75 L 47.75,4.75 L 25.75,4.75 L 25.75,0.75 L 10,0.720588 C 10,0.720588 6.1158487,3.358664 4.75,4.75 C 3.665741,5.85449 1,10.75 1,10.75 L 1,77.99 C 1,77.99 1.6401315,81.31861 2.4999613,81.995 C 3.3305948,82.64842 6.999845,84.25 6.999845,84.25 L 27,84.25 L 27,88 L 47,88 L 47,84.25 L 94,84.25 L 94,8.75 L 70,8.75 L 67.5,3.75 L 64.5,0.75 z" + id="path2480" + style="opacity:1;fill:url(#linearGradient4362);fill-opacity:1;fill-rule:evenodd;stroke:#00a000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 10.75,20.802425 L 83.804575,20.802425 L 83.804575,73.25 L 10.75,73.25 L 10.75,20.802425 z" + id="path3264" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00a000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> +</svg> diff --git a/images/en/turtle/journal.svg b/images/en/turtle/journal.svg new file mode 100644 index 0000000..4859f58 --- /dev/null +++ b/images/en/turtle/journal.svg @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="75" + height="54" + id="svg2"> + <defs + id="defs5"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> + </defs> + <path + d="M 0.84217214,0.84217214 L 74.157828,0.84217214 L 74.157828,53.157828 L 0.84217214,53.157828 L 0.84217214,0.84217214 z" + id="path9" + style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(10.8745,-0.5)" + id="activity-journal" + style="stroke:#000000;stroke-opacity:1;display:block"> + <path + d="M 45.866,44.669 C 45.866,47.18 44.338,49 41.534,49 L 12.077,49 L 12.077,6 L 41.535,6 C 43.685,6 45.867,8.154 45.867,10.33 L 45.866,44.669 L 45.866,44.669 z" + id="path2458" + style="fill:#ffffff;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + + + <line + id="line2460" + y2="48.881001" + y1="6.1209998" + x2="21.341" + x1="21.341" + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + + <path + d="M 7.384,14.464 C 7.384,14.464 9.468,15.159 11.554,15.159 C 13.64,15.159 15.727,14.464 15.727,14.464" + id="path2462" + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + + <path + d="M 7.384,28.021 C 7.384,28.021 9.296,28.716 11.729,28.716 C 14.162,28.716 15.728,28.021 15.728,28.021" + id="path2464" + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + + <path + d="M 7.384,41.232 C 7.384,41.232 9.12,41.927 11.902,41.927 C 14.683,41.927 15.727,41.232 15.727,41.232" + id="path2466" + style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + +</g> +</svg> diff --git a/images/en/turtle/left.svg b/images/en/turtle/left.svg index 1326fc0..6752de9 100644 --- a/images/en/turtle/left.svg +++ b/images/en/turtle/left.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/right.svg b/images/en/turtle/right.svg index ede07e7..594bf63 100644 --- a/images/en/turtle/right.svg +++ b/images/en/turtle/right.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/seth.svg b/images/en/turtle/seth.svg index d5bc0b9..18090bf 100644 --- a/images/en/turtle/seth.svg +++ b/images/en/turtle/seth.svg @@ -34,24 +34,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,30 C 73,30 70.78295,33.693654 69.5,35 C 68.07044,36.455629 64,39 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,39.5 L 26.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,39.5 L 63.5,39.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,43.5 L 47.5,43.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/setxy.svg b/images/en/turtle/setxy.svg index 1fe59d8..bd1ba14 100644 --- a/images/en/turtle/setxy.svg +++ b/images/en/turtle/setxy.svg @@ -41,24 +41,6 @@ <path style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" d="M 48,1 C 64,1 64,1 64,1 C 64,1 68.131798,3.4865526 69.5,5 C 70.897472,6.5458243 73,11 73,11 L 73,67 C 73,67 70.78295,70.693654 69.5,72 C 68.07044,73.455629 64,76 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 C 10,76 5.9295605,73.455629 4.5,72 C 3.2170498,70.693654 1,67 1,67 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 49,2.5 L 63,2.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 11,2.5 L 25,2.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 10.5,76.5 L 26.5,76.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 47.5,76.5 L 63.5,76.5" /> - <path - style="fill:none;stroke:#ffffff;stroke-width:1;stroke-opacity:1" - d="M 25,7.5 L 49,7.5" /> - <path - style="fill:none;stroke:#006000;stroke-width:1;stroke-opacity:1" - d="M 26.5,80 L 47,80" /> <text style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans"> <tspan diff --git a/images/en/turtle/texton.svg b/images/en/turtle/texton.svg new file mode 100644 index 0000000..60ef41b --- /dev/null +++ b/images/en/turtle/texton.svg @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="75" + height="54" + id="svg2"> + <defs + id="defs5"><linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> +</linearGradient> +<linearGradient + x1="0.94254935" + y1="-31.669659" + x2="104.37702" + y2="20.434471" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7083638,0,0,1.0012565,0.1338084,32.632067)" /> +</defs> + <path + d="M 0.84217214,0.84217214 L 74.157828,0.84217214 L 74.157828,53.157828 L 0.84217214,53.157828 L 0.84217214,0.84217214 z" + id="path9" + style="fill:url(#linearGradient3172);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(-53.537231,49.852125)" + id="g3085"> + <g + id="g3077"> + <path + d="M 78.103733,-1.435059 L 102.62373,-1.435059 C 104.84873,-1.435059 106.06273,-2.882059 106.06273,-4.876059 L 106.06273,-32.156059 C 106.06273,-33.886059 104.33073,-35.597059 102.62373,-35.597059 L 98.234733,-35.597059" + id="path2999" + style="fill:#ffffff;stroke:#010101;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 98.234733,-11.845059 C 98.234733,-10.009059 96.889733,-8.644059 94.793733,-7.798059 L 78.103733,-1.435059 L 78.103733,-35.597059 L 94.793733,-44.196059 C 97.021733,-44.590059 98.234733,-43.356059 98.234733,-41.362059 L 98.234733,-11.845059 z" + id="path3005" + style="fill:#ffffff;stroke:#010101;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 80.791733,-7.830059 C 80.791733,-7.830059 79.440733,-8.373059 78.089733,-8.373059 C 76.738733,-8.373059 75.386733,-7.830059 75.386733,-7.830059" + id="path3007" + style="fill:none;stroke:#010101;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 80.791733,-18.431059 C 80.791733,-18.431059 79.552733,-18.974059 77.976733,-18.974059 C 76.399733,-18.974059 75.386733,-18.431059 75.386733,-18.431059" + id="path3009" + style="fill:none;stroke:#010101;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round" /> + <path + d="M 80.791733,-28.759059 C 80.791733,-28.759059 79.666733,-29.303059 77.864733,-29.303059 C 76.062733,-29.303059 75.386733,-28.759059 75.386733,-28.759059" + id="path3011" + style="fill:none;stroke:#010101;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round" /> + <line + id="line3013" + y2="-38.93206" + y1="-3.904058" + x2="84.576729" + x1="84.576729" + style="fill:none;stroke:#010101;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round" /> + </g> + </g> +</svg> diff --git a/images/en/turtle/turtlegroup.svg b/images/en/turtle/turtlegroup.svg index d8311fe..89862e4 100644 --- a/images/en/turtle/turtlegroup.svg +++ b/images/en/turtle/turtlegroup.svg @@ -1,521 +1,604 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" - height="452"> - <svg:defs> - <svg:linearGradient - id="linearGradient3166"> - <svg:stop - id="stop3168" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <svg:stop - id="stop3170" - offset="1" - style="stop-color:#00ff00;stop-opacity:1;" /> - </svg:linearGradient> - <svg:linearGradient - gradientUnits="userSpaceOnUse" - y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient3172" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" - y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient2653" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2668" - gradientUnits="userSpaceOnUse" + height="452" + id="svg2"> + <defs + id="defs103"> + <linearGradient + id="linearGradient3250"> + <stop + id="stop3252" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3254" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient2782" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2797" - gradientUnits="userSpaceOnUse" + id="linearGradient3256" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient2911" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2926" - gradientUnits="userSpaceOnUse" + id="linearGradient3258" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient3040" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3055" - gradientUnits="userSpaceOnUse" + id="linearGradient3260" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient3165" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3184" + id="linearGradient3264" + xlink:href="#linearGradient3250" gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.66667,0,0,0.66667,47.83321,34.333281)" /> + <linearGradient x1="0" y1="22" x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient3294" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3323" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - <svg:linearGradient + id="linearGradient3267" + xlink:href="#linearGradient3250" gradientUnits="userSpaceOnUse" - y2="22" - x2="74" - y1="22" - x1="0" - id="linearGradient3437" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3452" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" - y2="21" - x2="104" - y1="0" - x1="0" - id="linearGradient3601" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3608" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" - y2="21" - x2="104" - y1="0" - x1="0" - id="linearGradient3690" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3697" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - <svg:linearGradient - gradientUnits="userSpaceOnUse" - y2="21" - x2="104" - y1="0" - x1="0" - id="linearGradient3779" - xlink:href="#linearGradient3166" /> - <svg:linearGradient - collect="always" - xlink:href="#linearGradient3166" - id="linearGradient3786" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - </svg:defs> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" - d="M 0.5594301,0.5199639 L 0.49711997,438.41023 L 3.6209793,445.14297 L 8.494839,449.1072 L 15.156388,451.50288 L 128.9813,451.50288 L 135.82978,448.93866 L 141.77903,444.04729 L 144.50288,435.79171 L 144.54057,0.4971203 L 0.5594301,0.5199639 z" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + gradientTransform="matrix(0.66667,0,0,0.66667,47.83321,34.333281)" /> + <linearGradient + x1="7.4165211" + y1="90.000023" + x2="56.750099" + y2="90.000023" + id="linearGradient3333" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="7.4165211" + y1="130.66669" + x2="56.750099" + y2="130.66669" + id="linearGradient3341" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="79.416519" + y1="90.000023" + x2="128.75011" + y2="90.000023" + id="linearGradient3349" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="79.416519" + y1="130.66669" + x2="128.75011" + y2="130.66669" + id="linearGradient3357" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="43.416519" + y1="181.66669" + x2="92.750099" + y2="181.66669" + id="linearGradient3365" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="7.4165211" + y1="251.00002" + x2="56.750099" + y2="251.00002" + id="linearGradient3373" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="79.416519" + y1="238.66663" + x2="128.75011" + y2="238.66663" + id="linearGradient3381" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="6.5625" + y1="303.5" + x2="72.5625" + y2="303.5" + id="linearGradient3389" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="89.083481" + y1="314.81985" + x2="137.58348" + y2="314.81985" + id="linearGradient3397" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37.333157" + y1="359.00003" + x2="107.66684" + y2="359.00003" + id="linearGradient3405" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37.333157" + y1="382.66669" + x2="107.66684" + y2="382.66669" + id="linearGradient3413" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="37.333157" + y1="406.33334" + x2="107.66684" + y2="406.33334" + id="linearGradient3421" + xlink:href="#linearGradient3250" + gradientUnits="userSpaceOnUse" /> + </defs> + <path + d="M 0.5594301,0.5199639 L 0.49711997,438.41023 L 3.6209793,445.14297 L 8.494839,449.1072 L 15.156388,451.50288 L 128.9813,451.50288 L 135.82978,448.93866 L 141.77903,444.04729 L 144.50288,435.79171 L 144.54057,0.4971203 L 0.5594301,0.5199639 z" + id="path30" + style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="227.19794" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="215.19794" + id="rect32" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="228.31435" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" + y="216.31435" + id="rect34" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="229.29239" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="217.29239" + id="rect36" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="67.382996" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + y="67.382996" + id="rect38" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="68.499405" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" + y="68.499405" + id="rect40" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" - y="69.477448" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.08842015;stroke-opacity:1" - width="123.61703" - height="0.14253192" - x="10.691486" - y="341.35913" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.08842015;stroke-opacity:1" - width="123.61703" - height="0.14253192" - x="10.691486" - y="342.49942" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.08842015;stroke-opacity:1" - width="123.61703" - height="0.14253192" - x="10.691486" - y="343.49832" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + y="69.477448" + id="rect42" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-28.931932" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + transform="scale(1,-1)" + id="rect50" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-27.815523" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" + transform="scale(1,-1)" + id="rect52" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-424.77127" - transform="scale(1,-1)" /> - <svg:rect - style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" + transform="scale(1,-1)" + id="rect54" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect width="137.56932" height="0.13955142" x="3.7153397" y="-423.43195" - transform="scale(1,-1)" /> - <svg:path - style="fill:#fff080;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" - d="M 12,428.5 A 1.5,1.5 0 1 1 9,428.5 A 1.5,1.5 0 1 1 12,428.5 z" - transform="translate(122.16407,15.40625)" /> - <svg:path - style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - transform="translate(1.375,-0.749023)" /> - <svg:text - style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans;"> - <svg:tspan + transform="scale(1,-1)" + id="rect56" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <path + d="M 12,428.5 C 12,429.32843 11.328427,430 10.5,430 C 9.6715729,430 9,429.32843 9,428.5 C 9,427.67157 9.6715729,427 10.5,427 C 11.328427,427 12,427.67157 12,428.5 z" + transform="translate(122.16407,15.40625)" + id="path58" + style="fill:#fff080;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <path + d="M 79.5,438.375 C 79.5,442.86231 75.750385,446.5 71.125,446.5 C 66.499615,446.5 62.75,442.86231 62.75,438.375 C 62.75,433.88769 66.499615,430.25 71.125,430.25 C 75.750385,430.25 79.5,433.88769 79.5,438.375 L 79.5,438.375 z" + transform="translate(1.375,-0.749023)" + id="path60" + style="fill:#ff4040;fill-opacity:1;stroke:#ff4040;stroke-width:1;stroke-opacity:1" /> + <text + id="text42" + style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> + <tspan x="68" y="442" - style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans;">X</svg:tspan></svg:text> - <svg:g - transform="matrix(0.66667,0,0,0.66667,47.83321,34.333281)"> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">clean</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,7.416521,79.33328)"> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient2668);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">forward</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,79.416521,79.33328)"> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient2797);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">back</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,7.416521,119.99995)"> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient2926);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">left</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,79.416521,119.99995)"> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient3055);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">right</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,43.416521,162.66655)"> - <svg:path - d="M 69.75,42.75 L 86.25,42.75 L 86.25,49 L 82.25,49 L 82.25,45.75 L 71.75,45.75" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 69.75,70.25 L 86.25,70.25 L 86.25,64.249999 L 82.25,64.249999 L 82.25,67.249999 L 71.75,67.249999" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,67 L 69.5,72 L 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 L 4.5,72 L 1,67 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient3184);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="43" - x="37">arc</svg:tspan></svg:text> - <svg:text - style="font-size:12px;text-anchor:end;text-align:end;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:14px;" - y="22" - x="70">angle</svg:tspan> - <svg:tspan - style="font-size:14px;" - y="66" - x="70">radius</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,43.416521,237.99988)"> - <svg:path - d="M 69.75,42.75 L 86.25,42.75 L 86.25,49 L 82.25,49 L 82.25,45.75 L 71.75,45.75" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 69.75,70.25 L 86.25,70.25 L 86.25,64.249999 L 82.25,64.249999 L 82.25,67.249999 L 71.75,67.249999" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,67 L 69.5,72 L 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 L 4.5,72 L 1,67 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient3323);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="43" - x="37">setyx</svg:tspan> - </svg:text> - <svg:text - style="font-size:12px;text-anchor:end;text-align:end;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:14px;" - y="22" - x="70">x</svg:tspan> - <svg:tspan - style="font-size:14px;" - y="66" - x="70">y</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,43.416521,300.99995)"> - <svg:path - d="M 70,6 L 86.5,6 L 86.5,12 L 82.5,12 L 82.5,9 L 72,9" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 70,33.5 L 86.5,33.5 L 86.5,27.5 L 82.5,27.5 L 82.5,30.5 L 72,30.5" - style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> - <svg:path - d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" - style="fill:url(#linearGradient3452);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:18px;" - y="26" - x="37">seth</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,37.333158,351.99999)"> - <svg:path - d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:url(#linearGradient3608);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:16px;" - y="15.5" - x="52">xcor</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,37.333157,375.66665)"> - <svg:path - d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:url(#linearGradient3697);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:16px;" - y="15.5" - x="52">ycor</svg:tspan> - </svg:text> - </svg:g> - <svg:g - transform="matrix(0.66667,0,0,0.66667,37.333157,399.33331)"> - <svg:path - d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:url(#linearGradient3786);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan - style="font-size:16px;" - y="15.5" - x="52">heading</svg:tspan> - </svg:text> - </svg:g> - <svg:text - style="font-size:12px;text-anchor:middle;text-align:center;font-family:Bitstream Vera Sans;"> - <svg:tspan + id="tspan44" + style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans">X</tspan> + </text> + <path + d="M 79.83337,34.999951 C 90.50009,34.999951 90.50009,34.999951 90.50009,34.999951 L 94.166775,37.666631 L 96.50012,41.666651 L 96.50012,54.333381 L 94.166775,57.666731 L 90.50009,60.333411 L 79.1667,60.333411 L 79.1667,60.333411 L 79.1667,63.000091 L 65.8333,63.000091 L 65.8333,60.333411 L 54.49991,60.333411 L 50.833225,57.666731 L 48.49988,54.333381 L 48.49988,41.666651 L 50.833225,37.666631 L 54.49991,34.999951 L 65.16663,34.999951 L 65.16663,38.333301 L 79.83337,38.333301 L 79.83337,34.999951 z" + id="path48" + style="fill:url(#linearGradient3267);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="47.83321" + y="34.333282" + id="text50" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;font-family:Bitstream Vera Sans"> + <tspan + x="72.5" + y="51.666702" + id="tspan52" + style="font-size:12.00006008px;fill:#000000;fill-opacity:1">clean</tspan> + </text> + <path + d="M 54.083421,79.3333 L 65.083476,79.3333 L 65.083476,83.33332 L 62.416796,83.33332 L 62.416796,81.33331 L 55.416761,81.33331" + id="path76" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 54.083421,97.666725 L 65.083476,97.666725 L 65.083476,93.666705 L 62.416796,93.666705 L 62.416796,95.666715 L 55.416761,95.666715" + id="path78" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 39.416681,75.99995 C 50.083401,75.99995 50.083401,75.99995 50.083401,75.99995 L 53.750086,78.66663 L 56.083431,82.66665 L 56.083431,95.33338 L 53.750086,98.66673 L 50.083401,101.33341 L 38.750011,101.33341 L 38.750011,101.33341 L 38.750011,104.00009 L 25.416611,104.00009 L 25.416611,101.33341 L 14.083221,101.33341 L 10.416536,98.66673 L 8.083191,95.33338 L 8.083191,82.66665 L 10.416536,78.66663 L 14.083221,75.99995 L 24.749941,75.99995 L 24.749941,79.3333 L 39.416681,79.3333 L 39.416681,75.99995 z" + id="path80" + style="fill:url(#linearGradient3333);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="7.4165211" + y="75.333282" + id="text82" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="32.083309" + y="92.666702" + id="tspan84" + style="font-size:12.00006008px">forward</tspan> + </text> + <path + d="M 126.08342,79.3333 L 137.08348,79.3333 L 137.08348,83.33332 L 134.4168,83.33332 L 134.4168,81.33331 L 127.41676,81.33331" + id="path88" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 126.08342,97.666725 L 137.08348,97.666725 L 137.08348,93.666705 L 134.4168,93.666705 L 134.4168,95.666715 L 127.41676,95.666715" + id="path90" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 111.41668,75.99995 C 122.0834,75.99995 122.0834,75.99995 122.0834,75.99995 L 125.75009,78.66663 L 128.08343,82.66665 L 128.08343,95.33338 L 125.75009,98.66673 L 122.0834,101.33341 L 110.75001,101.33341 L 110.75001,101.33341 L 110.75001,104.00009 L 97.416611,104.00009 L 97.416611,101.33341 L 86.083221,101.33341 L 82.416536,98.66673 L 80.083191,95.33338 L 80.083191,82.66665 L 82.416536,78.66663 L 86.083221,75.99995 L 96.749941,75.99995 L 96.749941,79.3333 L 111.41668,79.3333 L 111.41668,75.99995 z" + id="path92" + style="fill:url(#linearGradient3349);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="79.416519" + y="75.333282" + id="text94" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="104.08331" + y="92.666702" + id="tspan96" + style="font-size:12.00006008px">back</tspan> + </text> + <path + d="M 54.083421,119.99997 L 65.083476,119.99997 L 65.083476,123.99999 L 62.416796,123.99999 L 62.416796,121.99998 L 55.416761,121.99998" + id="path100" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 54.083421,138.33339 L 65.083476,138.33339 L 65.083476,134.33337 L 62.416796,134.33337 L 62.416796,136.33338 L 55.416761,136.33338" + id="path102" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 39.416681,116.66662 C 50.083401,116.66662 50.083401,116.66662 50.083401,116.66662 L 53.750086,119.3333 L 56.083431,123.33332 L 56.083431,136.00005 L 53.750086,139.3334 L 50.083401,142.00008 L 38.750011,142.00008 L 38.750011,142.00008 L 38.750011,144.66676 L 25.416611,144.66676 L 25.416611,142.00008 L 14.083221,142.00008 L 10.416536,139.3334 L 8.083191,136.00005 L 8.083191,123.33332 L 10.416536,119.3333 L 14.083221,116.66662 L 24.749941,116.66662 L 24.749941,119.99997 L 39.416681,119.99997 L 39.416681,116.66662 z" + id="path104" + style="fill:url(#linearGradient3341);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="7.4165211" + y="115.99995" + id="text106" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="32.083309" + y="133.33337" + id="tspan108" + style="font-size:12.00006008px">left</tspan> + </text> + <path + d="M 126.08342,119.99997 L 137.08348,119.99997 L 137.08348,123.99999 L 134.4168,123.99999 L 134.4168,121.99998 L 127.41676,121.99998" + id="path112" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 126.08342,138.33339 L 137.08348,138.33339 L 137.08348,134.33337 L 134.4168,134.33337 L 134.4168,136.33338 L 127.41676,136.33338" + id="path114" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 111.41668,116.66662 C 122.0834,116.66662 122.0834,116.66662 122.0834,116.66662 L 125.75009,119.3333 L 128.08343,123.33332 L 128.08343,136.00005 L 125.75009,139.3334 L 122.0834,142.00008 L 110.75001,142.00008 L 110.75001,142.00008 L 110.75001,144.66676 L 97.416611,144.66676 L 97.416611,142.00008 L 86.083221,142.00008 L 82.416536,139.3334 L 80.083191,136.00005 L 80.083191,123.33332 L 82.416536,119.3333 L 86.083221,116.66662 L 96.749941,116.66662 L 96.749941,119.99997 L 111.41668,119.99997 L 111.41668,116.66662 z" + id="path116" + style="fill:url(#linearGradient3357);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="79.416519" + y="115.99995" + id="text118" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="104.08331" + y="133.33337" + id="tspan120" + style="font-size:12.00006008px">right</tspan> + </text> + <path + d="M 89.916753,183.16669 L 100.91681,183.16669 L 100.91681,187.33338 L 98.250129,187.33338 L 98.250129,185.1667 L 91.250094,185.1667" + id="path124" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 89.916753,201.50012 L 100.91681,201.50012 L 100.91681,197.5001 L 98.250129,197.5001 L 98.250129,199.50011 L 91.250094,199.50011" + id="path126" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 90.083421,158.66657 L 101.08348,158.66657 L 101.08348,162.66659 L 98.416796,162.66659 L 98.416796,160.66658 L 91.416761,160.66658" + id="path128" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 90.083421,177 L 101.08348,177 L 101.08348,172.99998 L 98.416796,172.99998 L 98.416796,174.99999 L 91.416761,174.99999" + id="path130" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 75.416681,155.33322 C 86.083401,155.33322 86.083401,155.33322 86.083401,155.33322 L 89.750086,157.9999 L 92.083431,161.99992 L 92.083431,199.33344 L 89.750086,202.66679 L 86.083401,205.33347 L 74.750011,205.33347 L 74.750011,205.33347 L 74.750011,208.00015 L 61.416611,208.00015 L 61.416611,205.33347 L 50.083221,205.33347 L 46.416536,202.66679 L 44.083191,199.33344 L 44.083191,161.99992 L 46.416536,157.9999 L 50.083221,155.33322 L 60.749941,155.33322 L 60.749941,158.66657 L 75.416681,158.66657 L 75.416681,155.33322 z" + id="path132" + style="fill:url(#linearGradient3365);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="43.416519" + y="154.66655" + id="text134" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="68.083313" + y="183.33336" + id="tspan136" + style="font-size:12.00006008px">arc</tspan> + </text> + <text + x="43.416519" + y="154.66655" + id="text138" + style="font-size:8.00004005px;text-align:end;text-anchor:end;font-family:Bitstream Vera Sans"> + <tspan + x="90.08342" + y="169.33328" + id="tspan140" + style="font-size:9.33337975px">angle</tspan> + <tspan + x="90.08342" + y="198.66676" + id="tspan142" + style="font-size:9.33337975px">radius</tspan> + </text> + <path + d="M 53.916753,252.50002 L 64.916809,252.50002 L 64.916809,256.66671 L 62.250129,256.66671 L 62.250129,254.50003 L 55.250093,254.50003" + id="path146" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 53.916753,270.83345 L 64.916809,270.83345 L 64.916809,266.83343 L 62.250129,266.83343 L 62.250129,268.83344 L 55.250093,268.83344" + id="path148" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 54.083421,227.9999 L 65.083476,227.9999 L 65.083476,231.99992 L 62.416796,231.99992 L 62.416796,229.99991 L 55.416761,229.99991" + id="path150" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 54.083421,246.33333 L 65.083476,246.33333 L 65.083476,242.3333 L 62.416796,242.3333 L 62.416796,244.33331 L 55.416761,244.33331" + id="path152" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 39.416681,224.66655 C 50.083401,224.66655 50.083401,224.66655 50.083401,224.66655 L 53.750086,227.33323 L 56.083431,231.33325 L 56.083431,268.66677 L 53.750086,272.00012 L 50.083401,274.6668 L 38.750011,274.6668 L 38.750011,274.6668 L 38.750011,277.33348 L 25.416611,277.33348 L 25.416611,274.6668 L 14.083221,274.6668 L 10.416536,272.00012 L 8.083191,268.66677 L 8.083191,231.33325 L 10.416536,227.33323 L 14.083221,224.66655 L 24.749941,224.66655 L 24.749941,227.9999 L 39.416681,227.9999 L 39.416681,224.66655 z" + id="path154" + style="fill:url(#linearGradient3373);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="7.4165211" + y="223.99988" + id="text156" + style="font-size:12.00006008px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="32.083309" + y="252.66669" + id="tspan158" + style="font-size:12.00006008px">setyx</tspan> + </text> + <text + x="7.4165211" + y="223.99988" + id="text160" + style="font-size:9.33337975px;text-align:end;text-anchor:end;font-family:Bitstream Vera Sans"> + <tspan + x="54.08342" + y="238.66663" + id="tspan162" + style="font-size:9.33337975px">x</tspan> + <tspan + x="54.08342" + y="268.00009" + id="tspan164" + style="font-size:9.33337975px">y</tspan> + </text> + <path + d="M 126.08342,227.9999 L 137.08348,227.9999 L 137.08348,231.99992 L 134.4168,231.99992 L 134.4168,229.99991 L 127.41676,229.99991" + id="path168" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 126.08342,246.33333 L 137.08348,246.33333 L 137.08348,242.3333 L 134.4168,242.3333 L 134.4168,244.33331 L 127.41676,244.33331" + id="path170" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.00000501;stroke-opacity:1" /> + <path + d="M 111.41668,224.66655 C 122.0834,224.66655 122.0834,224.66655 122.0834,224.66655 L 125.75009,227.33323 L 128.08343,231.33325 L 128.08343,243.99998 L 125.75009,247.33333 L 122.0834,250.00001 L 110.75001,250.00001 L 110.75001,250.00001 L 110.75001,252.66669 L 97.416611,252.66669 L 97.416611,250.00001 L 86.083221,250.00001 L 82.416536,247.33333 L 80.083191,243.99998 L 80.083191,231.33325 L 82.416536,227.33323 L 86.083221,224.66655 L 96.749941,224.66655 L 96.749941,227.9999 L 111.41668,227.9999 L 111.41668,224.66655 z" + id="path172" + style="fill:url(#linearGradient3381);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="79.416519" + y="223.99988" + id="text174" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="104.08331" + y="241.3333" + id="tspan176" + style="font-size:12.00006008px">seth</tspan> + </text> + <path + d="M 37.999828,352.33333 L 41.333178,352.33333 L 41.333178,355.00001 L 45.999868,355.00001 L 45.999868,352.33333 L 107.00017,352.33333 L 107.00017,365.66673 L 45.999868,365.66673 L 45.999868,363.00005 L 41.333178,363.00005 L 41.333178,365.66673 L 37.999828,365.66673 L 37.999828,352.33333 z" + id="path180" + style="fill:url(#linearGradient3405);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="37.333157" + y="352" + id="text182" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72" + y="362.33337" + id="tspan184" + style="font-size:10.66672039px">xcor</tspan> + </text> + <path + d="M 37.999827,375.99998 L 41.333177,375.99998 L 41.333177,378.66667 L 45.999867,378.66667 L 45.999867,375.99998 L 107.00017,375.99998 L 107.00017,389.33339 L 45.999867,389.33339 L 45.999867,386.6667 L 41.333177,386.6667 L 41.333177,389.33339 L 37.999827,389.33339 L 37.999827,375.99998 z" + id="path188" + style="fill:url(#linearGradient3413);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="37.333157" + y="375.66666" + id="text190" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72" + y="386.00003" + id="tspan192" + style="font-size:10.66672039px">ycor</tspan> + </text> + <path + d="M 37.999827,399.66664 L 41.333177,399.66664 L 41.333177,402.33333 L 45.999867,402.33333 L 45.999867,399.66664 L 107.00017,399.66664 L 107.00017,413.00005 L 45.999867,413.00005 L 45.999867,410.33336 L 41.333177,410.33336 L 41.333177,413.00005 L 37.999827,413.00005 L 37.999827,399.66664 z" + id="path196" + style="fill:url(#linearGradient3421);fill-opacity:1;stroke:#00a000;stroke-width:1.33334005;stroke-opacity:1" /> + <text + x="37.333157" + y="399.33331" + id="text198" + style="font-size:8.00004005px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan + x="72" + y="409.66669" + id="tspan200" + style="font-size:10.66672039px">heading</tspan> + </text> + <text + id="text202" + style="font-size:12px;text-align:center;text-anchor:middle;font-family:Bitstream Vera Sans"> + <tspan x="72.5" y="21.5" - style="font-size:20px">Turtle</svg:tspan> - </svg:text> -</svg:svg> + id="tspan204" + style="font-size:20px">Turtle</tspan> + </text> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="282.6077" + id="rect2582" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="283.72412" + id="rect2584" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="284.70215" + id="rect2586" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="342.55103" + id="rect2588" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:1.13613331;stroke-opacity:1" /> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="343.66745" + id="rect2590" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#fff080;stroke-width:1.13613331;stroke-opacity:1" /> + <rect + width="137.56932" + height="0.13955142" + x="3.7153397" + y="344.64548" + id="rect2592" + style="opacity:1;fill:#ffd000;fill-opacity:1;stroke:#ffffc4;stroke-width:1.13613331;stroke-opacity:1" /> + <path + d="M 69.4375,295.875 L 77.6875,295.875 L 77.6875,298.875 L 75.6875,298.875 L 75.6875,297.375 L 70.4375,297.375" + id="path2493" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 69.4375,309.625 L 77.6875,309.625 L 77.6875,306.625 L 75.6875,306.625 L 75.6875,308.125 L 70.4375,308.125" + id="path2495" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 45.0625,293 C 53.0625,293 67.0625,293 67.0625,293 C 67.0625,293 69.1284,294.24328 69.8125,295 C 70.511235,295.77291 71.5625,298 71.5625,298 L 71.5625,307.5 C 71.5625,307.5 70.453975,309.34683 69.8125,310 C 69.09772,310.72781 67.0625,312 67.0625,312 L 44.5625,312 L 44.5625,312 L 44.5625,314 L 34.5625,314 L 34.5625,312 L 12.0625,312 C 12.0625,312 10.02728,310.72781 9.3125,310 C 8.6710249,309.34683 7.5625,307.5 7.5625,307.5 L 7.5625,298 C 7.5625,298 8.6137641,295.77291 9.3125,295 C 9.9966011,294.24328 12.0625,293 12.0625,293 L 34.0625,293 L 34.0625,295.5 L 45.0625,295.5 L 45.0625,293 z" + id="path10" + style="fill:url(#linearGradient3389);fill-opacity:1;stroke:#00a000;stroke-width:1.33299994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 121.83348,293.01471 L 113.45848,293.01471 L 113.45848,295.01471 L 102.45848,295.01471 L 102.45848,293.01471 L 94.583478,293 C 94.583478,293 92.641402,294.31904 91.958478,295.01471 C 91.416348,295.56696 90.083478,298.01471 90.083478,298.01471 L 90.083478,331.63471 C 90.083478,331.63471 90.403544,333.29901 90.833459,333.63721 C 91.248775,333.96392 93.0834,334.76471 93.0834,334.76471 L 103.08348,334.76471 L 103.08348,336.63971 L 113.08348,336.63971 L 113.08348,334.76471 L 136.58348,334.76471 L 136.58348,297.01471 L 124.58348,297.01471 L 123.33348,294.51471 L 121.83348,293.01471 z" + id="path2480" + style="fill:url(#linearGradient3397);fill-opacity:1;fill-rule:evenodd;stroke:#00a000;stroke-width:1.33299994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 94.958478,303.04092 L 131.48577,303.04092 L 131.48577,329.26471 L 94.958478,329.26471 L 94.958478,303.04092 z" + id="path3264" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#00a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 13,298.5 L 15.5,298.5 L 15.5,300.5 L 19,300.5 L 19,298.5 L 64.75,298.5 L 64.75,308.5 L 19,308.5 L 19,306.5 L 15.5,306.5 L 15.5,308.5 L 13,308.5 L 13,298.5 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:#00a000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> +</svg> diff --git a/images/en/turtle/turtlemask.svg b/images/en/turtle/turtlemask.svg index 9f56748..8c2d12d 100644 --- a/images/en/turtle/turtlemask.svg +++ b/images/en/turtle/turtlemask.svg @@ -1,93 +1,152 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" width="145" height="452" - version="1.0"> + id="svg3190"> + <defs + id="defs3239"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="66.800423" + y1="23.707363" + x2="203.4543" + y2="23.237999" + id="linearGradient4362" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9988658,0,0,1.0058014,-66.475849,-58.253309)" /> + </defs> <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" width="143" height="440" x="1" - y="7" /> + y="7" + id="rect3192" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4;stroke-opacity:1" /> <g - transform="matrix(0.66667,0,0,0.66667,47.83321,33.999927)"> + transform="matrix(0.66667,0,0,0.66667,47.83321,33.999927)" + id="g3194"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3196" style="fill:#101010;fill-opacity:1;stroke:#101010;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,7.9165167,78.999925)"> + transform="matrix(0.66667,0,0,0.66667,7.9165167,75.999845)" + id="g3198"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3200" style="fill:#181818;fill-opacity:1;stroke:#181818;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,77.916518,78.999925)"> + transform="matrix(0.66667,0,0,0.66667,77.916518,75.999845)" + id="g3202"> <path - id="path2752" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path2752" style="fill:#202020;fill-opacity:1;stroke:#202020;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,7.9165167,119.6666)"> + transform="matrix(0.66667,0,0,0.66667,7.9165167,116.66652)" + id="g3205"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3207" style="fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,77.916518,119.6666)"> + transform="matrix(0.66667,0,0,0.66667,77.916518,116.66652)" + id="g3209"> <path - id="path3010" d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3010" style="fill:#303030;fill-opacity:1;stroke:#303030;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,43.416521,162.3332)"> + transform="matrix(0.66667,0,0,0.66667,43.416521,154.33273)" + id="g3212"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,67 L 69.5,72 L 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 L 4.5,72 L 1,67 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3214" style="fill:#383838;fill-opacity:1;stroke:#383838;stroke-width:2;stroke-opacity:1" /> </g> + <rect + width="145" + height="29" + x="0" + y="0" + id="rect3234" + style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" /> + <path + d="M 0.5,422 L 0.5,438 L 3.5,445 L 8.5,449 L 15,451.5 L 129,451.5 L 136,449 L 142,444 L 145,436 L 145,422 L 0.5,422 z" + id="path3236" + style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" /> <g - transform="matrix(0.66667,0,0,0.66667,43.416521,237.66653)"> + transform="matrix(0.66667,0,0,0.66667,7.9165167,223.66673)" + id="g3216"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,67 L 69.5,72 L 64,76 L 47,76 L 47,76 L 47,80 L 27,80 L 27,76 L 10,76 L 4.5,72 L 1,67 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3218" style="fill:#404040;fill-opacity:1;stroke:#404040;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,43.416521,300.6666)"> + transform="matrix(0.66667,0,0,0.66667,77.916518,223.66673)" + id="g3220" + style="fill:#000000;fill-opacity:1"> <path d="M 48,1 C 64,1 64,1 64,1 L 69.5,5 L 73,11 L 73,30 L 69.5,35 L 64,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 L 4.5,35 L 1,30 L 1,11 L 4.5,5 L 10,1 L 26,1 L 26,6 L 48,6 L 48,1 z" + id="path3222" style="fill:#484848;fill-opacity:1;stroke:#484848;stroke-width:2;stroke-opacity:1" /> </g> + <path + d="M 38.75,287.375 L 30.875,287.375 L 30.875,289.375 L 19.875,289.375 L 19.875,287.375 L 12,287.375 C 12,287.375 10.05792,287.67933 9.375,288.375 C 8.83287,288.92725 7.5,290.375 7.5,290.375 L 7.5,308.995 C 7.5,308.995 7.82007,310.65931 8.24998,310.9975 C 8.6653,311.32421 10.49992,312.125 10.49992,312.125 L 20.5,312.125 L 20.5,314 L 30.5,314 L 30.5,312.125 L 67.5,312.125 L 69,311 L 70.5,309 L 70.5,293.125 L 69,291.375 L 67.5,290.375 L 41.5,290.375 L 40.23175,288.375 L 38.75,287.375 z" + id="path2480" + style="fill:#505050;fill-opacity:1;fill-rule:evenodd;stroke:#505050;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <g - transform="matrix(0.66667,0,0,0.66667,37.333158,351.66664)"> + transform="matrix(0.66667,0,0,0.66667,37.333158,351.66664)" + id="g3224" + style="fill:#606060;fill-opacity:1;stroke:none"> <path d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:#505050;fill-opacity:1;stroke:#505050;stroke-width:2;stroke-opacity:1" /> + id="path3226" + style="fill:#606060;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,37.333157,375.3333)"> + transform="matrix(0.66667,0,0,0.66667,37.333157,375.3333)" + id="g3228" + style="fill:#686868;fill-opacity:1;stroke:none"> <path - id="path3672" d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:#585858;fill-opacity:1;stroke:#585858;stroke-width:2;stroke-opacity:1" /> + id="path3672" + style="fill:#686868;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </g> <g - transform="matrix(0.66667,0,0,0.66667,37.333157,398.99996)"> + transform="matrix(0.66667,0,0,0.66667,37.333157,398.99996)" + id="g3231" + style="fill:#707070;fill-opacity:1;stroke:none"> <path - id="path3761" d="M 1,0.5 L 6,0.5 L 6,4.5 L 13,4.5 L 13,0.5 L 104.5,0.5 L 104.5,20.5 L 13,20.5 L 13,16.5 L 6,16.5 L 6,20.5 L 1,20.5 L 1,0.5 z" - style="fill:#606060;fill-opacity:1;stroke:#606060;stroke-width:2;stroke-opacity:1" /> + id="path3761" + style="fill:#707070;fill-opacity:1;stroke:none;stroke-width:2;stroke-opacity:1" /> </g> - <rect - style="opacity:1;fill:#080808;fill-opacity:1;stroke:none;stroke-width:1;stroke-opacity:1" - width="145" - height="29" - x="0" - y="0" /> <path - style="fill:#080808;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1" - d="M 0.5,422 L 0.5,438 L 3.5,445 L 8.5,449 L 15,451.5 L 129,451.5 L 136,449 L 142,444 L 145,436 L 145,422 L 0.5,422 z" /> + d="M 122.383,292.628 L 114.00801,292.628 L 114.00801,294.628 L 103.008,294.628 L 103.008,292.628 L 95.133,292.61329 C 95.133,292.61329 93.190924,293.93233 92.508,294.628 C 91.965871,295.18025 90.633,297.628 90.633,297.628 L 90.633,331.248 C 90.633,331.248 90.953066,332.91231 91.382981,333.2505 C 91.798297,333.57721 93.632923,334.378 93.632923,334.378 L 103.633,334.378 L 103.633,336.253 L 113.633,336.253 L 113.633,334.378 L 137.133,334.378 L 137.133,296.628 L 125.133,296.628 L 123.883,294.128 L 122.383,292.628 z" + id="path3058" + style="fill:#585858;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </svg> diff --git a/images/en/turtle/write.svg b/images/en/turtle/write.svg new file mode 100644 index 0000000..b61996b --- /dev/null +++ b/images/en/turtle/write.svg @@ -0,0 +1,259 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.0" + width="142" + height="44" + id="svg2"> + <defs + id="defs4"> + <linearGradient + id="linearGradient3166"> + <stop + id="stop3168" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop3170" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="128.68382" + y2="22" + id="linearGradient3172" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2501" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2496" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3886"> + <stop + id="stop3888" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop3890" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient4211" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient4238" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2473"> + <stop + id="stop2475" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2477" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2601" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2595"> + <stop + id="stop2597" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2599" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="22" + x2="128.68382" + y2="22" + id="linearGradient2608" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="22" + x2="74" + y2="22" + id="linearGradient2515" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2509"> + <stop + id="stop2511" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2513" + style="stop-color:#ffff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + id="linearGradient2486"> + <stop + id="stop2488" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2490" + style="stop-color:#0000ff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2493" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2492"> + <stop + id="stop2494" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2496" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="104" + y2="21" + id="linearGradient2524" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,5.4999997)" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2522" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2520" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient2514"> + <stop + id="stop2516" + style="stop-color:#0000ff;stop-opacity:1" + offset="0" /> + <stop + id="stop2518" + style="stop-color:#ffffff;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="210" + y1="10.5" + x2="0" + y2="10.5" + id="linearGradient2512" + xlink:href="#linearGradient3886" + gradientUnits="userSpaceOnUse" /> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2510" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,4.96875)" /> + <linearGradient + id="linearGradient2504"> + <stop + id="stop2506" + style="stop-color:#ffffff;stop-opacity:1" + offset="0" /> + <stop + id="stop2508" + style="stop-color:#00ff00;stop-opacity:1" + offset="1" /> + </linearGradient> + <linearGradient + x1="0" + y1="0" + x2="64" + y2="0" + id="linearGradient2540" + xlink:href="#linearGradient3166" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(34.404412,58.027574)" /> + </defs> + <g + transform="translate(59.878677,45.67647)" + id="g2533"> + <path + d="M 64.871323,-38.92647 L 81.371323,-38.92647 L 81.371323,-32.92647 L 77.371323,-32.92647 L 77.371323,-35.92647 L 66.871323,-35.92647" + id="path2493" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> + <path + d="M 64.871323,-11.42647 L 81.371323,-11.42647 L 81.371323,-17.42647 L 77.371323,-17.42647 L 77.371323,-14.42647 L 66.871323,-14.42647" + id="path2495" + style="fill:#00e000;fill-opacity:1;stroke:#008000;stroke-width:1.5;stroke-opacity:1" /> + </g> + <path + d="M 47,1 C 63,1 120,1 120,1 C 120,1 124.1318,3.4865526 125.5,5 C 126.89747,6.5458243 129,11 129,11 L 129,30 C 129,30 126.78295,33.693654 125.5,35 C 124.07044,36.455629 120,39 120,39 L 47,39 L 47,39 L 47,43 L 27,43 L 27,39 L 10,39 C 10,39 5.9295605,36.455629 4.5,35 C 3.2170498,33.693654 1,30 1,30 L 1,11 C 1,11 3.1025283,6.5458243 4.5,5 C 5.8682021,3.4865526 10,1 10,1 L 27,1 L 27,6 L 47,6 L 47,1 z" + id="path10" + style="fill:url(#linearGradient3172);fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> + <path + d="M 13,12 L 18,12 L 18,16 L 24.999999,16 L 24.999999,12 L 116.50001,12 L 116.50001,32 L 24.999999,32 L 24.999999,28 L 18,28 L 18,32 L 13,32 L 13,12 z" + id="path9" + style="fill:#ffffff;fill-opacity:1;stroke:#00a000;stroke-width:2;stroke-opacity:1" /> +</svg> diff --git a/images/es/toolbar/blocks-.svg b/images/es/toolbar/blocks-.svg deleted file mode 100644 index bdf593f..0000000 --- a/images/es/toolbar/blocks-.svg +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg:svg - xmlns:svg="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - width="145" - height="28" - version="1.0"> - <svg:path - style="fill:#ffd000;fill-opacity:1;stroke:#e0a000;stroke-width:0.99423993px;stroke-opacity:1" - d="M 0.55943,0 L 0.49712,14.41023 L 3.62098,21.14297 L 8.49484,25.1072 L 15.15639,27.50288 L 128.9813,27.50288 L 135.82978,24.93866 L 141.77903,20.04729 L 144.50288,11.79171 L 144.54057,0 L 0.55943,0 z" /> - <svg:g - transform="translate(-0.625,-0.25098)"> - <svg:path - transform="translate(59.375,-424.74902)" - d="M 79.5,438.375 A 8.375,8.125 0 1 1 62.75,438.375 A 8.375,8.125 0 1 1 79.5,438.375 z" - style="fill:#00e000;fill-opacity:1;stroke:#00e000;stroke-width:1;stroke-opacity:1" /> - <svg:text - style="font-size:12px;font-weight:bold;font-family:Bitstream Vera Sans"> - <svg:tspan - style="font-size:12px;font-weight:bold;fill:#ffffff;font-family:Bitstream Vera Sans;" - y="17.5" - x="125.5">+</svg:tspan></svg:text> - </svg:g> - <svg:text - style="font-size:12px;font-family:Bitstream Vera Sans"> - <svg:tspan - x="21" - y="22.5" - style="font-size:24px">Bloques</svg:tspan></svg:text> -</svg:svg> diff --git a/images/es/toolbar/eraseroff.svg b/images/es/toolbar/eraseroff.svg deleted file mode 100644 index 9ffbb5e..0000000 --- a/images/es/toolbar/eraseroff.svg +++ /dev/null @@ -1,91 +0,0 @@ -<?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="50" - height="43" - version="1.0" - sodipodi:docname="eraseroff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - <inkscape:perspective - id="perspective3267" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="10" - inkscape:cx="25" - inkscape:cy="30.833333" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> - <path - style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 37.612208,24.238779 L 36,17.5 L 48.5,4 L 47,14.5 L 37.612208,24.238779 z" - id="path2394" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#808080;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 15,17.5 L 28.5,4 L 48.5,4 L 36,17.5 L 15,17.5 z" - id="path2390" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#a0a0a0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 22.800718,38.5 L 25.493716,28.5 L 36,17.5 L 37.432675,24.418312 L 22.800718,38.5 z" - id="path2392" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#c4c4c4;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 3.9497307,28.5 L 15,17.5 L 36,17.5 L 25.13465,28.5 L 3.9497307,28.5 z" - id="path2388" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#e0e0e0;stroke:#a0a0a0;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.26929982,38.5 L 3.8599641,28.5 L 25.044883,28.5 L 22.441652,38.5 L 0.26929982,38.5 z" - id="path2384" - sodipodi:nodetypes="ccccc" /> -</svg> diff --git a/images/es/toolbar/eraseron.svg b/images/es/toolbar/eraseron.svg deleted file mode 100644 index dcb3ae3..0000000 --- a/images/es/toolbar/eraseron.svg +++ /dev/null @@ -1,91 +0,0 @@ -<?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="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - width="50" - height="43" - version="1.0" - sodipodi:docname="eraseron.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - id="perspective9" /> - <inkscape:perspective - id="perspective3267" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="10" - inkscape:cx="25" - inkscape:cy="30.833333" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> - <path - style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 37.612208,24.238779 L 36,17.5 L 48.5,4 L 47,14.5 L 37.612208,24.238779 z" - id="path2394" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#c44000;stroke:#a00000;stroke-width:1.5;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 15,17.5 L 28.5,4 L 48.5,4 L 36,17.5 L 15,17.5 z" - id="path2390" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#a09400;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 22.800718,38.5 L 25.493716,28.5 L 36,17.5 L 37.432675,24.418312 L 22.800718,38.5 z" - id="path2392" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#c4a000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 3.9497307,28.5 L 15,17.5 L 36,17.5 L 25.13465,28.5 L 3.9497307,28.5 z" - id="path2388" - sodipodi:nodetypes="ccccc" /> - <path - style="fill:#e0d000;stroke:#a00000;stroke-width:1.50000000000000000;stroke-opacity:1;fill-opacity:1;stroke-dasharray:none" - d="M 0.26929982,38.5 L 3.8599641,28.5 L 25.044883,28.5 L 22.441652,38.5 L 0.26929982,38.5 z" - id="path2384" - sodipodi:nodetypes="ccccc" /> -</svg> diff --git a/images/es/toolbar/hideshowoff.svg b/images/es/toolbar/hideshowoff.svg deleted file mode 100644 index 19b49a3..0000000 --- a/images/es/toolbar/hideshowoff.svg +++ /dev/null @@ -1,134 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<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="53" - height="43" - id="svg2" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docname="hideshowoff.svg" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.0"> - <metadata - id="metadata28"> - <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> - <sodipodi:namedview - inkscape:window-height="1000" - inkscape:window-width="1679" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - guidetolerance="10.0" - gridtolerance="10.0" - objecttolerance="10.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - showgrid="false" - inkscape:zoom="1" - inkscape:cx="44.444505" - inkscape:cy="21.242368" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:current-layer="svg2" /> - <defs - id="defs5"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 22 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="87 : 22 : 1" - inkscape:persp3d-origin="43.5 : 14.666667 : 1" - id="perspective30" /> - <linearGradient - id="linearGradient3166"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168" /> - <stop - style="stop-color:#ffff00;stop-opacity:1;" - offset="1" - id="stop3170" /> - </linearGradient> - <linearGradient - xlink:href="#linearGradient3166" - id="linearGradient3172" - x1="0" - y1="22" - x2="74" - y2="22" - gradientUnits="userSpaceOnUse" /> - <inkscape:perspective - id="perspective2472" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3166" - id="linearGradient2487" - gradientUnits="userSpaceOnUse" - x1="0" - y1="22" - x2="74" - y2="22" /> - <inkscape:perspective - id="perspective2590" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - </defs> - <path - style="fill:#808080;fill-opacity:1;stroke:#808080;stroke-width:1.59263432;stroke-opacity:1" - d="M 34.341481,1.8366553 C 45.747271,1.8366553 45.747271,1.8366553 45.747271,1.8366553 C 45.747271,1.8366553 48.692673,4.0485498 49.668012,5.3948257 C 50.664216,6.7699023 52.163028,10.732081 52.163028,10.732081 L 52.163028,27.633391 C 52.163028,27.633391 50.582578,30.919053 49.668012,32.081104 C 48.648933,33.375948 45.747271,35.639274 45.747271,35.639274 L 33.628619,35.639274 L 33.628619,35.639274 L 33.628619,39.197444 L 19.371381,39.197444 L 19.371381,35.639274 L 7.2527289,35.639274 C 7.2527289,35.639274 4.3510677,33.375948 3.3319885,32.081104 C 2.4174221,30.919053 0.8369718,27.633391 0.8369718,27.633391 L 0.8369718,10.732081 C 0.8369718,10.732081 2.3357841,6.7699023 3.3319885,5.3948257 C 4.3073276,4.0485498 7.2527289,1.8366553 7.2527289,1.8366553 L 18.658519,1.8366553 L 18.658519,6.2843683 L 34.341481,6.2843683 L 34.341481,1.8366553 z" - id="path9" - sodipodi:nodetypes="ccsccscccccccsccsccccc" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" - id="rect3375" - width="53" - height="3" - x="0" - y="7.9999986" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" - id="rect3377" - width="53" - height="3" - x="0" - y="30" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" - id="rect3379" - width="53" - height="3" - x="0" - y="22.666666" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-opacity:1" - id="rect3381" - width="53" - height="3" - x="0" - y="15.333332" /> -</svg> diff --git a/images/es/toolbar/hideshowon.svg b/images/es/toolbar/hideshowon.svg deleted file mode 100644 index 6f0ad56..0000000 --- a/images/es/toolbar/hideshowon.svg +++ /dev/null @@ -1,127 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<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" |