summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2015-12-14 16:05:09 +0100
committerChristoph Helma <helma@in-silico.ch>2015-12-14 16:05:09 +0100
commit7d094e529df126bba3f30c8a039972062678c39c (patch)
treeb3f9bb098a737693d19a69f9c1026a507452a099
parent79c43bed16febf66a613b93fa67793a1315c72c5 (diff)
initial dataset comparison
-rw-r--r--create_nestec_models.rb9
-rw-r--r--dump/production/compounds.bsonbin2276280 -> 1825035 bytes
-rw-r--r--dump/production/crossvalidations.bsonbin360266 -> 226927 bytes
-rw-r--r--dump/production/datasets.bsonbin3807049 -> 2706802 bytes
-rw-r--r--dump/production/features.bsonbin744 -> 571 bytes
-rw-r--r--dump/production/models.bsonbin93248 -> 44423 bytes
-rw-r--r--dump/production/open_tox_model_predictions.bsonbin1504 -> 754 bytes
-rw-r--r--dump/production/repeatedcrossvalidations.bsonbin888 -> 444 bytes
-rw-r--r--dump/production/validations.bsonbin395167 -> 243773 bytes
-rw-r--r--loael-dataset-comparison.rb113
-rw-r--r--loael-dataset-comparison.svg796
-rw-r--r--loael-variability.rb89
-rw-r--r--loael_variance.svg698
-rw-r--r--paper/NestecNestlereportdraft2.txt521
-rw-r--r--paper/loael.rst9
15 files changed, 2231 insertions, 4 deletions
diff --git a/create_nestec_models.rb b/create_nestec_models.rb
index 8467826..4523250 100644
--- a/create_nestec_models.rb
+++ b/create_nestec_models.rb
@@ -6,10 +6,11 @@ $gridfs = $mongo.database.fs # recreate GridFS indexes
[
"Rat_TD50.csv",
"Mouse_TD50.csv",
- "LOAEL_mmol_corrected_smiles.csv",
- "swissMouse_chron_LOAEL_mmol.csv",
- "swissMultigen_LOAEL_mmol.csv",
- "swissRat_chron_LOAEL_mmol.csv",
+ "LOAEL-rat-combined.csv"
+ #"LOAEL_mmol_corrected_smiles.csv",
+ #"swissMouse_chron_LOAEL_mmol.csv",
+ #"swissMultigen_LOAEL_mmol.csv",
+ #"swissRat_chron_LOAEL_mmol.csv",
].each do |file|
file = File.join(File.dirname(__FILE__),"regression",file)
Model::Prediction.from_csv_file file
diff --git a/dump/production/compounds.bson b/dump/production/compounds.bson
index cbd8111..c1768d4 100644
--- a/dump/production/compounds.bson
+++ b/dump/production/compounds.bson
Binary files differ
diff --git a/dump/production/crossvalidations.bson b/dump/production/crossvalidations.bson
index e92990e..4f836f6 100644
--- a/dump/production/crossvalidations.bson
+++ b/dump/production/crossvalidations.bson
Binary files differ
diff --git a/dump/production/datasets.bson b/dump/production/datasets.bson
index c2a869a..1a6cd5d 100644
--- a/dump/production/datasets.bson
+++ b/dump/production/datasets.bson
Binary files differ
diff --git a/dump/production/features.bson b/dump/production/features.bson
index 3145641..d121c25 100644
--- a/dump/production/features.bson
+++ b/dump/production/features.bson
Binary files differ
diff --git a/dump/production/models.bson b/dump/production/models.bson
index 9331b89..e8eacc2 100644
--- a/dump/production/models.bson
+++ b/dump/production/models.bson
Binary files differ
diff --git a/dump/production/open_tox_model_predictions.bson b/dump/production/open_tox_model_predictions.bson
index 0551c0e..e2e5b66 100644
--- a/dump/production/open_tox_model_predictions.bson
+++ b/dump/production/open_tox_model_predictions.bson
Binary files differ
diff --git a/dump/production/repeatedcrossvalidations.bson b/dump/production/repeatedcrossvalidations.bson
index fe7dc5f..5c0b55a 100644
--- a/dump/production/repeatedcrossvalidations.bson
+++ b/dump/production/repeatedcrossvalidations.bson
Binary files differ
diff --git a/dump/production/validations.bson b/dump/production/validations.bson
index e5da146..1286961 100644
--- a/dump/production/validations.bson
+++ b/dump/production/validations.bson
Binary files differ
diff --git a/loael-dataset-comparison.rb b/loael-dataset-comparison.rb
new file mode 100644
index 0000000..ad708d3
--- /dev/null
+++ b/loael-dataset-comparison.rb
@@ -0,0 +1,113 @@
+require_relative '../lazar/lib/lazar'
+include OpenTox
+#$mongo.database.drop
+#$gridfs = $mongo.database.fs # recreate GridFS indexes
+# compare duplicates within datasets
+old = Dataset.from_csv_file File.join(File.dirname(__FILE__),"regression","LOAEL_mmol_corrected_smiles.csv")
+new = Dataset.from_csv_file File.join(File.dirname(__FILE__),"regression","swissRat_chron_LOAEL.csv")
+
+combined_compounds = old.compound_ids & new.compound_ids
+
+compound_vector = []
+value_vector = []
+dataset_vector = []
+
+combined_compounds.each do |cid|
+ c = Compound.find cid
+ old.values(c,old.features.first).each do |v|
+ compound_vector << c.smiles
+ value_vector << -Math.log(v)
+ dataset_vector << old.name
+ end
+ new.values(c,new.features.first).each do |v|
+ compound_vector << c.smiles
+ value_vector << -Math.log(v)
+ dataset_vector << new.name
+ end
+end
+
+R.assign "smi", compound_vector
+R.assign "values", value_vector
+R.assign "dataset", dataset_vector
+R.eval "df <- data.frame(factor(smi),values,factor(dataset))"
+R.eval "img <- ggplot(df, aes(smi,values,ymin = min(values), ymax=max(values),color=dataset))"
+R.eval "img <- img + scale_x_discrete(breaks=NULL) + geom_point() + coord_flip() + ylab('-log(LOAEL)') + xlab('Compound')"
+R.eval "ggsave(file='/home/ch/opentox/lazar-nestec-data/loael-dataset-comparison.svg', plot=img)"
+
+=begin
+
+vars = []
+
+[old, new].each do |dataset|
+ vars << []
+ #vars[dataset.name] = []
+ p dataset.name
+ p dataset.compounds.size
+ p dataset.duplicates(dataset.features.first).size
+ dataset.duplicates.each do |cid,values|
+ R.assign "values", values
+ var = R.eval("var(-log(values))").to_f
+ vars.last << var
+ #smi = Compound.find(cid).smiles
+ smi = cid.to_s
+ values.each do |val|
+ compound_vector << smi
+ value_vector << - Math.log(val)
+ dataset_vector << dataset.name
+ end
+ #vars << { :var => var, :values => values, :smiles => smi }
+ end
+ #vars.sort!{|a,b| a[:var] <=> b[:var]}
+ #vars.each do |dup|
+ #dup[:values].each do |v|
+ #compound_vector << dup[:smiles]
+ #value_vector << v
+ #end
+ #end
+end
+#p vars
+# TODO statistical test for variances
+R.assign "vars1", vars[0]
+R.assign "vars2", vars[1]
+print "p-value: #{R.eval("t.test(vars1,vars2)$p.value").to_f}"
+
+R.assign "smi", compound_vector
+R.assign "values", value_vector
+R.assign "dataset", dataset_vector
+R.eval "df <- data.frame(factor(smi),values,factor(dataset))"
+R.eval "img <- ggplot(df, aes(smi,values,ymin = min(values), ymax=max(values),color=dataset))"
+R.eval "img <- img + scale_x_discrete(breaks=NULL) + geom_point() + coord_flip()"# + xlab('-log(LOAEL)'), ylab('Compound')"
+R.eval "ggsave(file='/home/ch/opentox/lazar-nestec-data/loael_variance.svg', plot=img)"
+#R.eval "print(img)"
+#R.eval "write.csv(df,'/home/ch/opentox/lazar-nestec-data/loael.csv')"
+#`inkview /home/ch/opentox/lazar-nestec-data/loael_variance.svg`
+#R.eval "ggsave(file='test.svg', plot=img)"
+# compare datasets
+# compare combined datasets
+file = File.join(File.dirname(__FILE__),"regression","LOAEL-rat-combined.csv")
+d = Dataset.from_csv_file file
+replicates = []
+compounds = d.compound_ids.uniq
+sds = []
+compounds.each do |cid|
+ compound_idxs = d.compound_ids.each_index.select{|i| d.compound_ids[i] == cid}
+ if compound_idxs.size > 1
+ vals = compound_idxs.collect{|i| d.data_entries[i].first }
+ R.assign "values", vals
+ #sd = R.eval("sd(-log(values))").to_f
+ sd = R.eval("var(values)").to_f
+ sds << { :sd => sd, :values => vals, :smiles => Compound.find(cid).smiles }
+ #replicates << compound_idxs.collect{|i| d.data_entries[i].first }
+ #replicates[Compound.find(cid).smiles] = compound_idxs.collect{|i| d.data_entries[i].first }
+ end
+end
+p sds.sort{|a,b| a[:sd] <=> b[:sd]}
+#R.assign "replicates", replicates
+#R.assign "compounds", compounds.collect{|id| Compound.find id }
+#R.eval "df = data.frame(compounds,replicates)"
+#library(ggplot2)
+#qplot(compounds, replicates, data=df, geom="boxplot")
+#p replicates.to_json
+#p replicates.size
+# http://www.unc.edu/courses/2008spring/psyc/270/001/variance.html
+=end
diff --git a/loael-dataset-comparison.svg b/loael-dataset-comparison.svg
new file mode 100644
index 0000000..665c236
--- /dev/null
+++ b/loael-dataset-comparison.svg
@@ -0,0 +1,796 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="503pt" height="503pt" viewBox="0 0 503 503" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.71875 -3 L 0.4375 -3 L 0.4375 -2.296875 L 2.71875 -2.296875 Z M 2.71875 -3 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 4.5625 -6.796875 L 1.0625 -6.796875 L 0.546875 -3.09375 L 1.328125 -3.09375 C 1.71875 -3.5625 2.046875 -3.734375 2.578125 -3.734375 C 3.484375 -3.734375 4.0625 -3.109375 4.0625 -2.09375 C 4.0625 -1.125 3.484375 -0.53125 2.578125 -0.53125 C 1.828125 -0.53125 1.375 -0.90625 1.1875 -1.671875 L 0.328125 -1.671875 C 0.453125 -1.109375 0.546875 -0.84375 0.75 -0.59375 C 1.125 -0.078125 1.828125 0.21875 2.59375 0.21875 C 3.96875 0.21875 4.921875 -0.78125 4.921875 -2.21875 C 4.921875 -3.5625 4.03125 -4.484375 2.71875 -4.484375 C 2.25 -4.484375 1.859375 -4.359375 1.46875 -4.0625 L 1.734375 -5.96875 L 4.5625 -5.96875 Z M 4.5625 -6.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.640625 -6.796875 C 2 -6.796875 1.421875 -6.53125 1.078125 -6.046875 C 0.640625 -5.453125 0.40625 -4.546875 0.40625 -3.296875 C 0.40625 -0.984375 1.1875 0.21875 2.640625 0.21875 C 4.078125 0.21875 4.859375 -1 4.859375 -3.234375 C 4.859375 -4.5625 4.65625 -5.4375 4.203125 -6.046875 C 3.84375 -6.53125 3.28125 -6.796875 2.640625 -6.796875 Z M 2.640625 -6.046875 C 3.546875 -6.046875 4 -5.140625 4 -3.3125 C 4 -1.375 3.5625 -0.484375 2.625 -0.484375 C 1.734375 -0.484375 1.28125 -1.421875 1.28125 -3.28125 C 1.28125 -5.140625 1.734375 -6.046875 2.640625 -6.046875 Z M 2.640625 -6.046875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 2.484375 -4.84375 L 2.484375 0 L 3.328125 0 L 3.328125 -6.796875 L 2.765625 -6.796875 C 2.46875 -5.75 2.28125 -5.609375 0.984375 -5.453125 L 0.984375 -4.84375 Z M 2.484375 -4.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 1.65625 -7 L 0.765625 -7 L 0.765625 0 L 5.109375 0 L 5.109375 -0.78125 L 1.65625 -0.78125 Z M 1.65625 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 3.734375 -7.109375 C 1.734375 -7.109375 0.359375 -5.625 0.359375 -3.4375 C 0.359375 -1.25 1.71875 0.21875 3.734375 0.21875 C 4.59375 0.21875 5.34375 -0.03125 5.90625 -0.515625 C 6.671875 -1.15625 7.125 -2.25 7.125 -3.390625 C 7.125 -5.640625 5.78125 -7.109375 3.734375 -7.109375 Z M 3.734375 -6.328125 C 5.25 -6.328125 6.21875 -5.1875 6.21875 -3.40625 C 6.21875 -1.71875 5.21875 -0.5625 3.734375 -0.5625 C 2.25 -0.5625 1.25 -1.71875 1.25 -3.4375 C 1.25 -5.171875 2.25 -6.328125 3.734375 -6.328125 Z M 3.734375 -6.328125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 4.546875 -2.09375 L 5.265625 0 L 6.265625 0 L 3.8125 -7 L 2.65625 -7 L 0.15625 0 L 1.109375 0 L 1.859375 -2.09375 Z M 4.296875 -2.84375 L 2.078125 -2.84375 L 3.21875 -6.03125 Z M 4.296875 -2.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 1.75 -3.1875 L 5.5625 -3.1875 L 5.5625 -3.96875 L 1.75 -3.96875 L 1.75 -6.203125 L 5.703125 -6.203125 L 5.703125 -7 L 0.859375 -7 L 0.859375 0 L 5.875 0 L 5.875 -0.78125 L 1.75 -0.78125 Z M 1.75 -3.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 5.546875 1.203125 L -0.21875 1.203125 L -0.21875 1.6875 L 5.546875 1.6875 Z M 5.546875 1.203125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 0.671875 -5.03125 L 0.671875 0 L 1.484375 0 L 1.484375 -3.15625 C 1.484375 -3.890625 2 -4.46875 2.65625 -4.46875 C 3.25 -4.46875 3.59375 -4.109375 3.59375 -3.46875 L 3.59375 0 L 4.390625 0 L 4.390625 -3.15625 C 4.390625 -3.890625 4.921875 -4.46875 5.578125 -4.46875 C 6.15625 -4.46875 6.5 -4.09375 6.5 -3.46875 L 6.5 0 L 7.3125 0 L 7.3125 -3.765625 C 7.3125 -4.671875 6.796875 -5.171875 5.859375 -5.171875 C 5.1875 -5.171875 4.78125 -4.96875 4.3125 -4.40625 C 4.015625 -4.9375 3.609375 -5.171875 2.953125 -5.171875 C 2.28125 -5.171875 1.828125 -4.921875 1.40625 -4.3125 L 1.40625 -5.03125 Z M 0.671875 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 2.609375 -5.171875 C 1.1875 -5.171875 0.34375 -4.15625 0.34375 -2.46875 C 0.34375 -0.78125 1.1875 0.21875 2.625 0.21875 C 4.03125 0.21875 4.890625 -0.78125 4.890625 -2.4375 C 4.890625 -4.1875 4.0625 -5.171875 2.609375 -5.171875 Z M 2.625 -4.4375 C 3.515625 -4.4375 4.0625 -3.6875 4.0625 -2.453125 C 4.0625 -1.25 3.5 -0.515625 2.625 -0.515625 C 1.734375 -0.515625 1.1875 -1.25 1.1875 -2.46875 C 1.1875 -3.6875 1.734375 -4.4375 2.625 -4.4375 Z M 2.625 -4.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.453125 -7 L 0.65625 -7 L 0.65625 0 L 1.453125 0 Z M 1.453125 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 4.515625 -3.34375 C 4.484375 -3.828125 4.375 -4.140625 4.1875 -4.421875 C 3.84375 -4.890625 3.234375 -5.171875 2.53125 -5.171875 C 1.171875 -5.171875 0.296875 -4.09375 0.296875 -2.421875 C 0.296875 -0.8125 1.15625 0.21875 2.515625 0.21875 C 3.71875 0.21875 4.484375 -0.5 4.578125 -1.734375 L 3.765625 -1.734375 C 3.640625 -0.921875 3.21875 -0.515625 2.546875 -0.515625 C 1.65625 -0.515625 1.125 -1.234375 1.125 -2.421875 C 1.125 -3.6875 1.65625 -4.4375 2.515625 -4.4375 C 3.1875 -4.4375 3.609375 -4.03125 3.71875 -3.34375 Z M 4.515625 -3.34375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 0.65625 -5.03125 L 0.65625 0 L 1.46875 0 L 1.46875 -2.609375 C 1.484375 -3.8125 1.96875 -4.359375 3.078125 -4.328125 L 3.078125 -5.140625 C 2.9375 -5.15625 2.875 -5.171875 2.765625 -5.171875 C 2.25 -5.171875 1.859375 -4.859375 1.40625 -4.109375 L 1.40625 -5.03125 Z M 0.65625 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 4.921875 -2.25 C 4.921875 -3.015625 4.859375 -3.46875 4.71875 -3.84375 C 4.390625 -4.671875 3.625 -5.171875 2.6875 -5.171875 C 1.28125 -5.171875 0.390625 -4.109375 0.390625 -2.453125 C 0.390625 -0.78125 1.25 0.21875 2.671875 0.21875 C 3.8125 0.21875 4.609375 -0.4375 4.8125 -1.53125 L 4.015625 -1.53125 C 3.796875 -0.859375 3.34375 -0.515625 2.703125 -0.515625 C 2.1875 -0.515625 1.75 -0.75 1.484375 -1.171875 C 1.296875 -1.453125 1.234375 -1.75 1.21875 -2.25 Z M 1.234375 -2.890625 C 1.3125 -3.828125 1.875 -4.4375 2.671875 -4.4375 C 3.484375 -4.4375 4.0625 -3.796875 4.0625 -2.890625 Z M 1.234375 -2.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 2.4375 -5.03125 L 1.609375 -5.03125 L 1.609375 -6.40625 L 0.8125 -6.40625 L 0.8125 -5.03125 L 0.140625 -5.03125 L 0.140625 -4.375 L 0.8125 -4.375 L 0.8125 -0.578125 C 0.8125 -0.0625 1.15625 0.21875 1.78125 0.21875 C 2 0.21875 2.171875 0.203125 2.4375 0.15625 L 2.4375 -0.515625 C 2.328125 -0.484375 2.21875 -0.484375 2.046875 -0.484375 C 1.703125 -0.484375 1.609375 -0.578125 1.609375 -0.9375 L 1.609375 -4.375 L 2.4375 -4.375 Z M 2.4375 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 4.75 -7 L 3.953125 -7 L 3.953125 -4.390625 C 3.609375 -4.90625 3.078125 -5.171875 2.40625 -5.171875 C 1.109375 -5.171875 0.25 -4.125 0.25 -2.515625 C 0.25 -0.828125 1.078125 0.21875 2.4375 0.21875 C 3.125 0.21875 3.609375 -0.03125 4.03125 -0.65625 L 4.03125 0 L 4.75 0 Z M 2.546875 -4.421875 C 3.40625 -4.421875 3.953125 -3.671875 3.953125 -2.453125 C 3.953125 -1.296875 3.390625 -0.53125 2.546875 -0.53125 C 1.671875 -0.53125 1.078125 -1.3125 1.078125 -2.46875 C 1.078125 -3.640625 1.671875 -4.421875 2.546875 -4.421875 Z M 2.546875 -4.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 4.203125 -3.625 C 4.1875 -4.609375 3.546875 -5.171875 2.375 -5.171875 C 1.203125 -5.171875 0.453125 -4.5625 0.453125 -3.640625 C 0.453125 -2.84375 0.859375 -2.46875 2.046875 -2.1875 L 2.796875 -2 C 3.34375 -1.875 3.5625 -1.671875 3.5625 -1.3125 C 3.5625 -0.828125 3.09375 -0.515625 2.390625 -0.515625 C 1.96875 -0.515625 1.609375 -0.640625 1.40625 -0.859375 C 1.28125 -1 1.21875 -1.140625 1.171875 -1.5 L 0.328125 -1.5 C 0.359375 -0.328125 1.015625 0.21875 2.328125 0.21875 C 3.59375 0.21875 4.40625 -0.40625 4.40625 -1.375 C 4.40625 -2.125 3.984375 -2.53125 2.984375 -2.765625 L 2.21875 -2.953125 C 1.5625 -3.109375 1.28125 -3.3125 1.28125 -3.671875 C 1.28125 -4.140625 1.703125 -4.4375 2.34375 -4.4375 C 3 -4.4375 3.34375 -4.15625 3.359375 -3.625 Z M 4.203125 -3.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.4375 -5.03125 L 0.640625 -5.03125 L 0.640625 0 L 1.4375 0 Z M 1.4375 -7 L 0.640625 -7 L 0.640625 -5.984375 L 1.4375 -5.984375 Z M 1.4375 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 5.3125 0 L 6.796875 -5.03125 L 5.890625 -5.03125 L 4.890625 -1.109375 L 3.90625 -5.03125 L 2.921875 -5.03125 L 1.96875 -1.109375 L 0.9375 -5.03125 L 0.0625 -5.03125 L 1.515625 0 L 2.421875 0 L 3.390625 -3.9375 L 4.40625 0 Z M 5.3125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 1.78125 -3.015625 L 4.09375 -3.015625 C 4.890625 -3.015625 5.234375 -2.625 5.234375 -1.765625 L 5.234375 -1.140625 C 5.234375 -0.703125 5.3125 -0.28125 5.4375 0 L 6.515625 0 L 6.515625 -0.21875 C 6.171875 -0.453125 6.109375 -0.703125 6.09375 -1.625 C 6.078125 -2.78125 5.90625 -3.125 5.140625 -3.453125 C 5.921875 -3.84375 6.25 -4.3125 6.25 -5.125 C 6.25 -6.328125 5.5 -7 4.109375 -7 L 0.890625 -7 L 0.890625 0 L 1.78125 0 Z M 1.78125 -3.796875 L 1.78125 -6.203125 L 3.9375 -6.203125 C 4.4375 -6.203125 4.734375 -6.125 4.953125 -5.9375 C 5.1875 -5.734375 5.3125 -5.421875 5.3125 -5.015625 C 5.3125 -4.171875 4.890625 -3.796875 3.9375 -3.796875 Z M 1.78125 -3.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 5.125 -0.46875 C 5.046875 -0.453125 5.015625 -0.453125 4.953125 -0.453125 C 4.6875 -0.453125 4.53125 -0.59375 4.53125 -0.84375 L 4.53125 -3.796875 C 4.53125 -4.6875 3.875 -5.171875 2.640625 -5.171875 C 1.90625 -5.171875 1.3125 -4.953125 0.96875 -4.578125 C 0.734375 -4.328125 0.640625 -4.03125 0.625 -3.546875 L 1.421875 -3.546875 C 1.5 -4.15625 1.859375 -4.4375 2.609375 -4.4375 C 3.34375 -4.4375 3.734375 -4.15625 3.734375 -3.6875 L 3.734375 -3.46875 C 3.71875 -3.125 3.546875 -3 2.890625 -2.921875 C 1.765625 -2.765625 1.59375 -2.734375 1.28125 -2.609375 C 0.703125 -2.359375 0.40625 -1.921875 0.40625 -1.265625 C 0.40625 -0.359375 1.03125 0.21875 2.046875 0.21875 C 2.6875 0.21875 3.1875 0 3.765625 -0.515625 C 3.8125 0 4.0625 0.21875 4.578125 0.21875 C 4.765625 0.21875 4.859375 0.203125 5.125 0.140625 Z M 3.734375 -1.578125 C 3.734375 -1.3125 3.65625 -1.15625 3.421875 -0.9375 C 3.09375 -0.640625 2.703125 -0.484375 2.21875 -0.484375 C 1.609375 -0.484375 1.234375 -0.78125 1.234375 -1.28125 C 1.234375 -1.8125 1.578125 -2.078125 2.453125 -2.203125 C 3.296875 -2.328125 3.46875 -2.359375 3.734375 -2.484375 Z M 3.734375 -1.578125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 0.671875 -7 L 0.671875 0 L 1.46875 0 L 1.46875 -2.765625 C 1.46875 -3.796875 2 -4.46875 2.828125 -4.46875 C 3.09375 -4.46875 3.34375 -4.390625 3.546875 -4.25 C 3.765625 -4.078125 3.859375 -3.84375 3.859375 -3.484375 L 3.859375 0 L 4.65625 0 L 4.65625 -3.796875 C 4.65625 -4.640625 4.0625 -5.171875 3.078125 -5.171875 C 2.375 -5.171875 1.9375 -4.953125 1.46875 -4.34375 L 1.46875 -7 Z M 0.671875 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 0.671875 -5.03125 L 0.671875 0 L 1.484375 0 L 1.484375 -2.765625 C 1.484375 -3.796875 2.015625 -4.46875 2.84375 -4.46875 C 3.46875 -4.46875 3.875 -4.09375 3.875 -3.484375 L 3.875 0 L 4.671875 0 L 4.671875 -3.796875 C 4.671875 -4.640625 4.046875 -5.171875 3.078125 -5.171875 C 2.328125 -5.171875 1.859375 -4.890625 1.40625 -4.1875 L 1.40625 -5.03125 Z M 0.671875 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 3.40625 -3.75 L 0.546875 -3.75 L 0.546875 -2.875 L 3.40625 -2.875 Z M 3.40625 -3.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 1.828125 -8.75 L 0.8125 -8.75 L 0.8125 0 L 1.828125 0 Z M 1.828125 -8.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 3.265625 -6.46875 C 1.484375 -6.46875 0.4375 -5.203125 0.4375 -3.09375 C 0.4375 -0.96875 1.484375 0.28125 3.28125 0.28125 C 5.046875 0.28125 6.125 -0.984375 6.125 -3.046875 C 6.125 -5.234375 5.09375 -6.46875 3.265625 -6.46875 Z M 3.28125 -5.546875 C 4.40625 -5.546875 5.078125 -4.625 5.078125 -3.0625 C 5.078125 -1.578125 4.375 -0.640625 3.28125 -0.640625 C 2.15625 -0.640625 1.46875 -1.578125 1.46875 -3.09375 C 1.46875 -4.625 2.15625 -5.546875 3.28125 -5.546875 Z M 3.28125 -5.546875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M 4.84375 -6.28125 L 4.84375 -5.375 C 4.34375 -6.125 3.796875 -6.46875 3 -6.46875 C 1.46875 -6.46875 0.421875 -5.046875 0.421875 -3.03125 C 0.421875 -1.984375 0.671875 -1.21875 1.21875 -0.578125 C 1.6875 -0.03125 2.28125 0.28125 2.921875 0.28125 C 3.6875 0.28125 4.21875 -0.0625 4.75 -0.859375 L 4.75 -0.53125 C 4.75 1.15625 4.28125 1.78125 3.03125 1.78125 C 2.1875 1.78125 1.734375 1.4375 1.640625 0.71875 L 0.625 0.71875 C 0.71875 1.890625 1.640625 2.609375 3.015625 2.609375 C 3.9375 2.609375 4.703125 2.3125 5.109375 1.8125 C 5.59375 1.21875 5.765625 0.4375 5.765625 -1.03125 L 5.765625 -6.28125 Z M 3.09375 -5.546875 C 4.15625 -5.546875 4.75 -4.65625 4.75 -3.0625 C 4.75 -1.53125 4.140625 -0.640625 3.09375 -0.640625 C 2.0625 -0.640625 1.46875 -1.546875 1.46875 -3.09375 C 1.46875 -4.625 2.0625 -5.546875 3.09375 -5.546875 Z M 3.09375 -5.546875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 2.828125 -8.75 C 1.625 -7.171875 0.875 -4.984375 0.875 -3.109375 C 0.875 -1.21875 1.625 0.96875 2.828125 2.546875 L 3.484375 2.546875 C 2.4375 0.828125 1.84375 -1.1875 1.84375 -3.109375 C 1.84375 -5.015625 2.4375 -7.046875 3.484375 -8.75 Z M 2.828125 -8.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M 2.078125 -8.75 L 0.953125 -8.75 L 0.953125 0 L 6.390625 0 L 6.390625 -0.984375 L 2.078125 -0.984375 Z M 2.078125 -8.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-7">
+<path style="stroke:none;" d="M 4.671875 -8.890625 C 2.15625 -8.890625 0.453125 -7.046875 0.453125 -4.3125 C 0.453125 -1.5625 2.140625 0.28125 4.6875 0.28125 C 5.75 0.28125 6.6875 -0.046875 7.390625 -0.640625 C 8.34375 -1.453125 8.90625 -2.8125 8.90625 -4.234375 C 8.90625 -7.0625 7.234375 -8.890625 4.671875 -8.890625 Z M 4.671875 -7.90625 C 6.5625 -7.90625 7.78125 -6.484375 7.78125 -4.265625 C 7.78125 -2.140625 6.53125 -0.703125 4.6875 -0.703125 C 2.8125 -0.703125 1.578125 -2.140625 1.578125 -4.3125 C 1.578125 -6.46875 2.8125 -7.90625 4.671875 -7.90625 Z M 4.671875 -7.90625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-8">
+<path style="stroke:none;" d="M 5.6875 -2.625 L 6.59375 0 L 7.84375 0 L 4.765625 -8.75 L 3.328125 -8.75 L 0.203125 0 L 1.390625 0 L 2.3125 -2.625 Z M 5.375 -3.5625 L 2.59375 -3.5625 L 4.03125 -7.546875 Z M 5.375 -3.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-9">
+<path style="stroke:none;" d="M 2.203125 -3.984375 L 6.953125 -3.984375 L 6.953125 -4.96875 L 2.203125 -4.96875 L 2.203125 -7.765625 L 7.140625 -7.765625 L 7.140625 -8.75 L 1.078125 -8.75 L 1.078125 0 L 7.359375 0 L 7.359375 -0.984375 L 2.203125 -0.984375 Z M 2.203125 -3.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-10">
+<path style="stroke:none;" d="M 1.109375 2.546875 C 2.3125 0.96875 3.078125 -1.21875 3.078125 -3.09375 C 3.078125 -4.984375 2.3125 -7.171875 1.109375 -8.75 L 0.453125 -8.75 C 1.515625 -7.03125 2.09375 -5.015625 2.09375 -3.09375 C 2.09375 -1.1875 1.515625 0.84375 0.453125 2.546875 Z M 1.109375 2.546875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -6.03125 -7.9375 C -7.953125 -7.59375 -8.890625 -6.484375 -8.890625 -4.578125 C -8.890625 -3.390625 -8.515625 -2.453125 -7.796875 -1.796875 C -6.9375 -1.015625 -5.6875 -0.578125 -4.265625 -0.578125 C -2.828125 -0.578125 -1.59375 -1.015625 -0.75 -1.84375 C -0.046875 -2.515625 0.28125 -3.390625 0.28125 -4.53125 C 0.28125 -6.65625 -0.875 -7.859375 -3.1875 -8.125 L -3.1875 -6.96875 C -2.59375 -6.875 -2.1875 -6.75 -1.84375 -6.578125 C -1.109375 -6.21875 -0.703125 -5.46875 -0.703125 -4.53125 C -0.703125 -2.796875 -2.09375 -1.6875 -4.28125 -1.6875 C -6.53125 -1.6875 -7.90625 -2.734375 -7.90625 -4.4375 C -7.90625 -5.140625 -7.703125 -5.8125 -7.359375 -6.171875 C -7.0625 -6.484375 -6.703125 -6.671875 -6.03125 -6.796875 Z M -6.03125 -7.9375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M -6.46875 -3.265625 C -6.46875 -1.484375 -5.203125 -0.4375 -3.09375 -0.4375 C -0.96875 -0.4375 0.28125 -1.484375 0.28125 -3.28125 C 0.28125 -5.046875 -0.984375 -6.125 -3.046875 -6.125 C -5.234375 -6.125 -6.46875 -5.09375 -6.46875 -3.265625 Z M -5.546875 -3.28125 C -5.546875 -4.40625 -4.625 -5.078125 -3.0625 -5.078125 C -1.578125 -5.078125 -0.640625 -4.375 -0.640625 -3.28125 C -0.640625 -2.15625 -1.578125 -1.46875 -3.09375 -1.46875 C -4.625 -1.46875 -5.546875 -2.15625 -5.546875 -3.28125 Z M -5.546875 -3.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M -6.28125 -0.84375 L 0 -0.84375 L 0 -1.84375 L -3.953125 -1.84375 C -4.859375 -1.84375 -5.59375 -2.515625 -5.59375 -3.328125 C -5.59375 -4.0625 -5.140625 -4.484375 -4.328125 -4.484375 L 0 -4.484375 L 0 -5.5 L -3.953125 -5.5 C -4.859375 -5.5 -5.59375 -6.15625 -5.59375 -6.96875 C -5.59375 -7.703125 -5.125 -8.140625 -4.328125 -8.140625 L 0 -8.140625 L 0 -9.140625 L -4.71875 -9.140625 C -5.84375 -9.140625 -6.46875 -8.5 -6.46875 -7.3125 C -6.46875 -6.484375 -6.21875 -5.96875 -5.515625 -5.390625 C -6.1875 -5.015625 -6.46875 -4.515625 -6.46875 -3.703125 C -6.46875 -2.859375 -6.15625 -2.296875 -5.40625 -1.765625 L -6.28125 -1.765625 Z M -6.28125 -0.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-4">
+<path style="stroke:none;" d="M 2.609375 -0.640625 L 2.609375 -1.65625 L -0.65625 -1.65625 C -0.015625 -2.1875 0.28125 -2.765625 0.28125 -3.59375 C 0.28125 -5.21875 -1.03125 -6.28125 -3.03125 -6.28125 C -5.140625 -6.28125 -6.46875 -5.25 -6.46875 -3.578125 C -6.46875 -2.71875 -6.078125 -2.046875 -5.34375 -1.578125 L -6.28125 -1.578125 L -6.28125 -0.640625 Z M -5.53125 -3.40625 C -5.53125 -4.515625 -4.5625 -5.234375 -3.0625 -5.234375 C -1.625 -5.234375 -0.65625 -4.5 -0.65625 -3.40625 C -0.65625 -2.34375 -1.625 -1.65625 -3.09375 -1.65625 C -4.578125 -1.65625 -5.53125 -2.34375 -5.53125 -3.40625 Z M -5.53125 -3.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-5">
+<path style="stroke:none;" d="M 0 -5.78125 L -6.28125 -5.78125 L -6.28125 -4.78125 L -2.71875 -4.78125 C -1.4375 -4.78125 -0.59375 -4.109375 -0.59375 -3.078125 C -0.59375 -2.28125 -1.078125 -1.78125 -1.84375 -1.78125 L -6.28125 -1.78125 L -6.28125 -0.78125 L -1.4375 -0.78125 C -0.390625 -0.78125 0.28125 -1.5625 0.28125 -2.78125 C 0.28125 -3.703125 -0.046875 -4.296875 -0.875 -4.890625 L 0 -4.890625 Z M 0 -5.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-6">
+<path style="stroke:none;" d="M -6.28125 -0.84375 L 0 -0.84375 L 0 -1.84375 L -3.46875 -1.84375 C -4.75 -1.84375 -5.59375 -2.515625 -5.59375 -3.546875 C -5.59375 -4.34375 -5.109375 -4.84375 -4.359375 -4.84375 L 0 -4.84375 L 0 -5.84375 L -4.75 -5.84375 C -5.796875 -5.84375 -6.46875 -5.0625 -6.46875 -3.859375 C -6.46875 -2.921875 -6.109375 -2.3125 -5.234375 -1.765625 L -6.28125 -1.765625 Z M -6.28125 -0.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-7">
+<path style="stroke:none;" d="M -8.75 -5.9375 L -8.75 -4.9375 L -5.5 -4.9375 C -6.125 -4.53125 -6.46875 -3.859375 -6.46875 -3.015625 C -6.46875 -1.375 -5.15625 -0.3125 -3.15625 -0.3125 C -1.03125 -0.3125 0.28125 -1.34375 0.28125 -3.046875 C 0.28125 -3.90625 -0.046875 -4.515625 -0.828125 -5.046875 L 0 -5.046875 L 0 -5.9375 Z M -5.53125 -3.1875 C -5.53125 -4.265625 -4.578125 -4.9375 -3.078125 -4.9375 C -1.625 -4.9375 -0.65625 -4.25 -0.65625 -3.1875 C -0.65625 -2.09375 -1.625 -1.359375 -3.09375 -1.359375 C -4.5625 -1.359375 -5.53125 -2.09375 -5.53125 -3.1875 Z M -5.53125 -3.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 3.890625 0 L 5.234375 0 L 5.234375 -7 L 3.890625 -7 L 3.890625 -4.515625 C 3.546875 -5.03125 3.109375 -5.265625 2.453125 -5.265625 C 1.21875 -5.265625 0.28125 -4.078125 0.28125 -2.515625 C 0.28125 -1.8125 0.484375 -1.109375 0.828125 -0.609375 C 1.1875 -0.09375 1.828125 0.21875 2.453125 0.21875 C 3.109375 0.21875 3.546875 -0.015625 3.890625 -0.53125 Z M 2.75 -4.140625 C 3.4375 -4.140625 3.890625 -3.484375 3.890625 -2.5 C 3.890625 -1.546875 3.421875 -0.90625 2.75 -0.90625 C 2.078125 -0.90625 1.625 -1.5625 1.625 -2.515625 C 1.625 -3.484375 2.078125 -4.140625 2.75 -4.140625 Z M 2.75 -4.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 5.03125 -0.15625 C 4.796875 -0.390625 4.71875 -0.53125 4.71875 -0.796875 L 4.71875 -3.671875 C 4.71875 -4.734375 4 -5.265625 2.59375 -5.265625 C 1.203125 -5.265625 0.46875 -4.671875 0.390625 -3.46875 L 1.671875 -3.46875 C 1.75 -4.015625 1.96875 -4.1875 2.625 -4.1875 C 3.140625 -4.1875 3.40625 -4.015625 3.40625 -3.671875 C 3.40625 -3.484375 3.3125 -3.34375 3.171875 -3.265625 C 3 -3.171875 3 -3.171875 2.328125 -3.0625 L 1.796875 -2.96875 C 0.765625 -2.796875 0.265625 -2.265625 0.265625 -1.328125 C 0.265625 -0.40625 0.890625 0.21875 1.84375 0.21875 C 2.421875 0.21875 2.9375 -0.015625 3.421875 -0.515625 C 3.421875 -0.25 3.4375 -0.15625 3.5625 0 L 5.03125 0 Z M 3.40625 -2.078125 C 3.40625 -1.3125 3.015625 -0.859375 2.34375 -0.859375 C 1.890625 -0.859375 1.609375 -1.109375 1.609375 -1.484375 C 1.609375 -1.890625 1.828125 -2.078125 2.375 -2.203125 L 2.84375 -2.28125 C 3.1875 -2.34375 3.25 -2.375 3.40625 -2.453125 Z M 3.40625 -2.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 2.890625 -5.078125 L 2.140625 -5.078125 L 2.140625 -6.46875 L 0.796875 -6.46875 L 0.796875 -5.078125 L 0.140625 -5.078125 L 0.140625 -4.1875 L 0.796875 -4.1875 L 0.796875 -1 C 0.796875 -0.1875 1.234375 0.21875 2.109375 0.21875 C 2.421875 0.21875 2.640625 0.1875 2.890625 0.109375 L 2.890625 -0.828125 C 2.75 -0.8125 2.6875 -0.796875 2.578125 -0.796875 C 2.21875 -0.796875 2.140625 -0.90625 2.140625 -1.359375 L 2.140625 -4.1875 L 2.890625 -4.1875 Z M 2.890625 -5.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 4.84375 -3.515625 C 4.828125 -4.609375 3.984375 -5.265625 2.59375 -5.265625 C 1.28125 -5.265625 0.453125 -4.609375 0.453125 -3.546875 C 0.453125 -3.1875 0.5625 -2.890625 0.75 -2.703125 C 0.9375 -2.515625 1.09375 -2.421875 1.59375 -2.265625 L 3.1875 -1.765625 C 3.53125 -1.65625 3.640625 -1.546875 3.640625 -1.34375 C 3.640625 -1.03125 3.265625 -0.828125 2.640625 -0.828125 C 2.296875 -0.828125 2.03125 -0.890625 1.859375 -1.015625 C 1.703125 -1.125 1.65625 -1.234375 1.59375 -1.5 L 0.28125 -1.5 C 0.3125 -0.359375 1.15625 0.21875 2.71875 0.21875 C 3.4375 0.21875 3.984375 0.0625 4.375 -0.234375 C 4.765625 -0.546875 4.984375 -1.03125 4.984375 -1.53125 C 4.984375 -2.203125 4.65625 -2.640625 3.96875 -2.84375 L 2.28125 -3.328125 C 1.90625 -3.4375 1.796875 -3.515625 1.796875 -3.734375 C 1.796875 -4.015625 2.109375 -4.21875 2.578125 -4.21875 C 3.21875 -4.21875 3.546875 -3.984375 3.546875 -3.515625 Z M 4.84375 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 5.03125 -2.171875 C 5.03125 -2.28125 5.03125 -2.328125 5.03125 -2.390625 C 5.03125 -2.921875 4.953125 -3.390625 4.828125 -3.765625 C 4.484375 -4.703125 3.65625 -5.265625 2.609375 -5.265625 C 1.125 -5.265625 0.21875 -4.1875 0.21875 -2.453125 C 0.21875 -0.796875 1.109375 0.21875 2.578125 0.21875 C 3.734375 0.21875 4.6875 -0.4375 4.984375 -1.453125 L 3.65625 -1.453125 C 3.484375 -1.046875 3.125 -0.8125 2.625 -0.8125 C 2.25 -0.8125 1.9375 -0.96875 1.75 -1.25 C 1.625 -1.453125 1.578125 -1.671875 1.546875 -2.171875 Z M 1.578125 -3.0625 C 1.65625 -3.859375 2 -4.234375 2.59375 -4.234375 C 3.203125 -4.234375 3.5625 -3.828125 3.640625 -3.0625 Z M 1.578125 -3.0625 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 30.488281 14.398438 L 303 14.398438 L 303 466 L 30.488281 466 Z M 30.488281 14.398438 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 38 14.398438 L 39 14.398438 L 39 466 L 38 466 Z M 38 14.398438 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 92 14.398438 L 93 14.398438 L 93 466 L 92 466 Z M 92 14.398438 "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 146 14.398438 L 147 14.398438 L 147 466 L 146 466 Z M 146 14.398438 "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 200 14.398438 L 201 14.398438 L 201 466 L 200 466 Z M 200 14.398438 "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 254 14.398438 L 255 14.398438 L 255 466 L 254 466 Z M 254 14.398438 "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 65 14.398438 L 67 14.398438 L 67 466.511719 L 65 466.511719 Z M 65 14.398438 "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 119 14.398438 L 121 14.398438 L 121 466.511719 L 119 466.511719 Z M 119 14.398438 "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 173 14.398438 L 175 14.398438 L 175 466.511719 L 173 466.511719 Z M 173 14.398438 "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 227 14.398438 L 229 14.398438 L 229 466.511719 L 227 466.511719 Z M 227 14.398438 "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 281 14.398438 L 283 14.398438 L 283 466.511719 L 281 466.511719 Z M 281 14.398438 "/>
+</clipPath>
+<clipPath id="clip12">
+ <path d="M 245 14.398438 L 250 14.398438 L 250 19 L 245 19 Z M 245 14.398438 "/>
+</clipPath>
+<clipPath id="clip13">
+ <path d="M 105 14.398438 L 111 14.398438 L 111 19 L 105 19 Z M 105 14.398438 "/>
+</clipPath>
+<clipPath id="clip14">
+ <path d="M 100 14.398438 L 105 14.398438 L 105 19 L 100 19 Z M 100 14.398438 "/>
+</clipPath>
+<clipPath id="clip15">
+ <path d="M 91 14.398438 L 96 14.398438 L 96 19 L 91 19 Z M 91 14.398438 "/>
+</clipPath>
+</defs>
+<g id="surface3">
+<rect x="0" y="0" width="503" height="503" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="503" height="503" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 503 L 503 503 L 503 0 L 0 0 Z M 0 503 "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 30.488281 465.511719 L 302.589844 465.511719 L 302.589844 14.398438 L 30.488281 14.398438 Z M 30.488281 465.511719 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 38.550781 465.511719 L 38.550781 14.398438 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 92.554688 465.511719 L 92.554688 14.398438 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.558594 465.511719 L 146.558594 14.398438 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.558594 465.511719 L 200.558594 14.398438 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.5625 465.511719 L 254.5625 14.398438 "/>
+</g>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.554688 465.511719 L 65.554688 14.398438 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.554688 465.511719 L 119.554688 14.398438 "/>
+</g>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.558594 465.511719 L 173.558594 14.398438 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.558594 465.511719 L 227.558594 14.398438 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.5625 465.511719 L 281.5625 14.398438 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 201.375 80.089844 C 201.375 82.925781 197.121094 82.925781 197.121094 80.089844 C 197.121094 77.253906 201.375 77.253906 201.375 80.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 77.460938 80.089844 C 77.460938 82.925781 73.210938 82.925781 73.210938 80.089844 C 73.210938 77.253906 77.460938 77.253906 77.460938 80.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.492188 332.96875 C 214.492188 335.804688 210.242188 335.804688 210.242188 332.96875 C 210.242188 330.136719 214.492188 330.136719 214.492188 332.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.984375 332.96875 C 79.984375 335.804688 75.734375 335.804688 75.734375 332.96875 C 75.734375 330.136719 79.984375 330.136719 79.984375 332.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 76.285156 332.96875 C 76.285156 335.804688 72.035156 335.804688 72.035156 332.96875 C 72.035156 330.136719 76.285156 330.136719 76.285156 332.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 75.953125 332.96875 C 75.953125 335.804688 71.699219 335.804688 71.699219 332.96875 C 71.699219 330.136719 75.953125 330.136719 75.953125 332.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.496094 193.449219 C 227.496094 196.285156 223.246094 196.285156 223.246094 193.449219 C 223.246094 190.617188 227.496094 190.617188 227.496094 193.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.242188 193.449219 C 228.242188 196.285156 223.988281 196.285156 223.988281 193.449219 C 223.988281 190.617188 228.242188 190.617188 228.242188 193.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 111.785156 193.449219 C 111.785156 196.285156 107.535156 196.285156 107.535156 193.449219 C 107.535156 190.617188 111.785156 190.617188 111.785156 193.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.179688 193.449219 C 93.179688 196.285156 88.925781 196.285156 88.925781 193.449219 C 88.925781 190.617188 93.179688 190.617188 93.179688 193.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.449219 193.449219 C 69.449219 196.285156 65.195312 196.285156 65.195312 193.449219 C 65.195312 190.617188 69.449219 190.617188 69.449219 193.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.109375 318.4375 C 246.109375 321.269531 241.855469 321.269531 241.855469 318.4375 C 241.855469 315.601562 246.109375 315.601562 246.109375 318.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.078125 318.4375 C 92.078125 321.269531 87.828125 321.269531 87.828125 318.4375 C 87.828125 315.601562 92.078125 315.601562 92.078125 318.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 198.949219 173.105469 C 198.949219 175.9375 194.695312 175.9375 194.695312 173.105469 C 194.695312 170.269531 198.949219 170.269531 198.949219 173.105469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 65.597656 173.105469 C 65.597656 175.9375 61.34375 175.9375 61.34375 173.105469 C 61.34375 170.269531 65.597656 170.269531 65.597656 173.105469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 269.53125 144.035156 C 269.53125 146.871094 265.28125 146.871094 265.28125 144.035156 C 265.28125 141.203125 269.53125 141.203125 269.53125 144.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 249.738281 144.035156 C 249.738281 146.871094 245.488281 146.871094 245.488281 144.035156 C 245.488281 141.203125 249.738281 141.203125 249.738281 144.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 248.261719 144.035156 C 248.261719 146.871094 244.011719 146.871094 244.011719 144.035156 C 244.011719 141.203125 248.261719 141.203125 248.261719 144.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 110.953125 144.035156 C 110.953125 146.871094 106.703125 146.871094 106.703125 144.035156 C 106.703125 141.203125 110.953125 141.203125 110.953125 144.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.75 225.421875 C 211.75 228.257812 207.496094 228.257812 207.496094 225.421875 C 207.496094 222.589844 211.75 222.589844 211.75 225.421875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.871094 225.421875 C 79.871094 228.257812 75.621094 228.257812 75.621094 225.421875 C 75.621094 222.589844 79.871094 222.589844 79.871094 225.421875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.898438 71.371094 C 222.898438 74.207031 218.648438 74.207031 218.648438 71.371094 C 218.648438 68.535156 222.898438 68.535156 222.898438 71.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 206.511719 71.371094 C 206.511719 74.207031 202.261719 74.207031 202.261719 71.371094 C 202.261719 68.535156 206.511719 68.535156 206.511719 71.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.222656 71.371094 C 87.222656 74.207031 82.972656 74.207031 82.972656 71.371094 C 82.972656 68.535156 87.222656 68.535156 87.222656 71.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.527344 71.371094 C 70.527344 74.207031 66.277344 74.207031 66.277344 71.371094 C 66.277344 68.535156 70.527344 68.535156 70.527344 71.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.90625 231.238281 C 223.90625 234.070312 219.65625 234.070312 219.65625 231.238281 C 219.65625 228.402344 223.90625 228.402344 223.90625 231.238281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.359375 231.238281 C 209.359375 234.070312 205.105469 234.070312 205.105469 231.238281 C 205.105469 228.402344 209.359375 228.402344 209.359375 231.238281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 77.425781 231.238281 C 77.425781 234.070312 73.171875 234.070312 73.171875 231.238281 C 73.171875 228.402344 77.425781 228.402344 77.425781 231.238281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 218.535156 77.183594 C 218.535156 80.019531 214.28125 80.019531 214.28125 77.183594 C 214.28125 74.347656 218.535156 74.347656 218.535156 77.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 98.957031 77.183594 C 98.957031 80.019531 94.703125 80.019531 94.703125 77.183594 C 94.703125 74.347656 98.957031 74.347656 98.957031 77.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.027344 205.078125 C 225.027344 207.910156 220.777344 207.910156 220.777344 205.078125 C 220.777344 202.242188 225.027344 202.242188 225.027344 205.078125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.328125 205.078125 C 89.328125 207.910156 85.074219 207.910156 85.074219 205.078125 C 85.074219 202.242188 89.328125 202.242188 89.328125 205.078125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 262.355469 303.902344 C 262.355469 306.738281 258.101562 306.738281 258.101562 303.902344 C 258.101562 301.070312 262.355469 301.070312 262.355469 303.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 254.214844 303.902344 C 254.214844 306.738281 249.960938 306.738281 249.960938 303.902344 C 249.960938 301.070312 254.214844 301.070312 254.214844 303.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 119.535156 303.902344 C 119.535156 306.738281 115.28125 306.738281 115.28125 303.902344 C 115.28125 301.070312 119.535156 301.070312 119.535156 303.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.265625 132.410156 C 222.265625 135.246094 218.011719 135.246094 218.011719 132.410156 C 218.011719 129.574219 222.265625 129.574219 222.265625 132.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 67.140625 132.410156 C 67.140625 135.246094 62.890625 135.246094 62.890625 132.410156 C 62.890625 129.574219 67.140625 129.574219 67.140625 132.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 191.863281 190.542969 C 191.863281 193.378906 187.613281 193.378906 187.613281 190.542969 C 187.613281 187.707031 191.863281 187.707031 191.863281 190.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.117188 190.542969 C 234.117188 193.378906 229.863281 193.378906 229.863281 190.542969 C 229.863281 187.707031 234.117188 187.707031 234.117188 190.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.8125 190.542969 C 96.8125 193.378906 92.5625 193.378906 92.5625 190.542969 C 92.5625 187.707031 96.8125 187.707031 96.8125 190.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 245.59375 158.570312 C 245.59375 161.40625 241.34375 161.40625 241.34375 158.570312 C 241.34375 155.734375 245.59375 155.734375 245.59375 158.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.324219 158.570312 C 246.324219 161.40625 242.070312 161.40625 242.070312 158.570312 C 242.070312 155.734375 246.324219 155.734375 246.324219 158.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 112.6875 158.570312 C 112.6875 161.40625 108.433594 161.40625 108.433594 158.570312 C 108.433594 155.734375 112.6875 155.734375 112.6875 158.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.816406 65.558594 C 227.816406 68.390625 223.5625 68.390625 223.5625 65.558594 C 223.5625 62.722656 227.816406 62.722656 227.816406 65.558594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 250.273438 65.558594 C 250.273438 68.390625 246.023438 68.390625 246.023438 65.558594 C 246.023438 62.722656 250.273438 62.722656 250.273438 65.558594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.167969 65.558594 C 113.167969 68.390625 108.914062 68.390625 108.914062 65.558594 C 108.914062 62.722656 113.167969 62.722656 113.167969 65.558594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.8125 53.929688 C 235.8125 56.765625 231.558594 56.765625 231.558594 53.929688 C 231.558594 51.097656 235.8125 51.097656 235.8125 53.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.085938 53.929688 C 236.085938 56.765625 231.832031 56.765625 231.832031 53.929688 C 231.832031 51.097656 236.085938 51.097656 236.085938 53.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.253906 53.929688 C 237.253906 56.765625 233 56.765625 233 53.929688 C 233 51.097656 237.253906 51.097656 237.253906 53.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.535156 53.929688 C 69.535156 56.765625 65.28125 56.765625 65.28125 53.929688 C 65.28125 51.097656 69.535156 51.097656 69.535156 53.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.183594 449.234375 C 229.183594 452.070312 224.933594 452.070312 224.933594 449.234375 C 224.933594 446.402344 229.183594 446.402344 229.183594 449.234375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.429688 449.234375 C 79.429688 452.070312 75.179688 452.070312 75.179688 449.234375 C 75.179688 446.402344 79.429688 446.402344 79.429688 449.234375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 269.960938 234.144531 C 269.960938 236.976562 265.707031 236.976562 265.707031 234.144531 C 265.707031 231.308594 269.960938 231.308594 269.960938 234.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.605469 234.144531 C 237.605469 236.976562 233.351562 236.976562 233.351562 234.144531 C 233.351562 231.308594 237.605469 231.308594 237.605469 234.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 139.066406 234.144531 C 139.066406 236.976562 134.8125 236.976562 134.8125 234.144531 C 134.8125 231.308594 139.066406 231.308594 139.066406 234.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.621094 460.863281 C 214.621094 463.699219 210.367188 463.699219 210.367188 460.863281 C 210.367188 458.027344 214.621094 458.027344 214.621094 460.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.941406 460.863281 C 216.941406 463.699219 212.691406 463.699219 212.691406 460.863281 C 212.691406 458.027344 216.941406 458.027344 216.941406 460.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 460.863281 C 86.917969 463.699219 82.664062 463.699219 82.664062 460.863281 C 82.664062 458.027344 86.917969 458.027344 86.917969 460.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.816406 56.835938 C 235.816406 59.671875 231.5625 59.671875 231.5625 56.835938 C 231.5625 54.003906 235.816406 54.003906 235.816406 56.835938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.375 56.835938 C 235.375 59.671875 231.121094 59.671875 231.121094 56.835938 C 231.121094 54.003906 235.375 54.003906 235.375 56.835938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.949219 56.835938 C 115.949219 59.671875 111.699219 59.671875 111.699219 56.835938 C 111.699219 54.003906 115.949219 54.003906 115.949219 56.835938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 195.886719 245.769531 C 195.886719 248.605469 191.632812 248.605469 191.632812 245.769531 C 191.632812 242.933594 195.886719 242.933594 195.886719 245.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 184.117188 245.769531 C 184.117188 248.605469 179.863281 248.605469 179.863281 245.769531 C 179.863281 242.933594 184.117188 242.933594 184.117188 245.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.164062 245.769531 C 223.164062 248.605469 218.910156 248.605469 218.910156 245.769531 C 218.910156 242.933594 223.164062 242.933594 223.164062 245.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.027344 245.769531 C 69.027344 248.605469 64.777344 248.605469 64.777344 245.769531 C 64.777344 242.933594 69.027344 242.933594 69.027344 245.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 240.175781 260.304688 C 240.175781 263.136719 235.921875 263.136719 235.921875 260.304688 C 235.921875 257.46875 240.175781 257.46875 240.175781 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 241.074219 260.304688 C 241.074219 263.136719 236.824219 263.136719 236.824219 260.304688 C 236.824219 257.46875 241.074219 257.46875 241.074219 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 240.84375 260.304688 C 240.84375 263.136719 236.589844 263.136719 236.589844 260.304688 C 236.589844 257.46875 240.84375 257.46875 240.84375 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.097656 260.304688 C 235.097656 263.136719 230.847656 263.136719 230.847656 260.304688 C 230.847656 257.46875 235.097656 257.46875 235.097656 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.585938 260.304688 C 242.585938 263.136719 238.332031 263.136719 238.332031 260.304688 C 238.332031 257.46875 242.585938 257.46875 242.585938 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.96875 260.304688 C 104.96875 263.136719 100.714844 263.136719 100.714844 260.304688 C 100.714844 257.46875 104.96875 257.46875 104.96875 260.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.949219 388.195312 C 217.949219 391.03125 213.695312 391.03125 213.695312 388.195312 C 213.695312 385.363281 217.949219 385.363281 217.949219 388.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.542969 388.195312 C 228.542969 391.03125 224.289062 391.03125 224.289062 388.195312 C 224.289062 385.363281 228.542969 385.363281 228.542969 388.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.433594 388.195312 C 92.433594 391.03125 88.183594 391.03125 88.183594 388.195312 C 88.183594 385.363281 92.433594 385.363281 92.433594 388.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.804688 388.195312 C 91.804688 391.03125 87.550781 391.03125 87.550781 388.195312 C 87.550781 385.363281 91.804688 385.363281 91.804688 388.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.597656 414.355469 C 216.597656 417.191406 212.347656 417.191406 212.347656 414.355469 C 212.347656 411.523438 216.597656 411.523438 216.597656 414.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.992188 414.355469 C 53.992188 417.191406 49.742188 417.191406 49.742188 414.355469 C 49.742188 411.523438 53.992188 411.523438 53.992188 414.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 52.59375 414.355469 C 52.59375 417.191406 48.339844 417.191406 48.339844 414.355469 C 48.339844 411.523438 52.59375 411.523438 52.59375 414.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.683594 321.34375 C 216.683594 324.179688 212.429688 324.179688 212.429688 321.34375 C 212.429688 318.507812 216.683594 318.507812 216.683594 321.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 195.359375 321.34375 C 195.359375 324.179688 191.109375 324.179688 191.109375 321.34375 C 191.109375 318.507812 195.359375 318.507812 195.359375 321.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.3125 321.34375 C 85.3125 324.179688 81.0625 324.179688 81.0625 321.34375 C 81.0625 318.507812 85.3125 318.507812 85.3125 321.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.082031 321.34375 C 68.082031 324.179688 63.828125 324.179688 63.828125 321.34375 C 63.828125 318.507812 68.082031 318.507812 68.082031 321.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 250.488281 199.261719 C 250.488281 202.097656 246.238281 202.097656 246.238281 199.261719 C 246.238281 196.429688 250.488281 196.429688 250.488281 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 260.386719 199.261719 C 260.386719 202.097656 256.132812 202.097656 256.132812 199.261719 C 256.132812 196.429688 260.386719 196.429688 260.386719 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 255.566406 199.261719 C 255.566406 202.097656 251.3125 202.097656 251.3125 199.261719 C 251.3125 196.429688 255.566406 196.429688 255.566406 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.898438 199.261719 C 252.898438 202.097656 248.648438 202.097656 248.648438 199.261719 C 248.648438 196.429688 252.898438 196.429688 252.898438 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 126.503906 199.261719 C 126.503906 202.097656 122.25 202.097656 122.25 199.261719 C 122.25 196.429688 126.503906 196.429688 126.503906 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.824219 199.261719 C 115.824219 202.097656 111.574219 202.097656 111.574219 199.261719 C 111.574219 196.429688 115.824219 196.429688 115.824219 199.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.011719 138.222656 C 225.011719 141.058594 220.757812 141.058594 220.757812 138.222656 C 220.757812 135.390625 225.011719 135.390625 225.011719 138.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.980469 138.222656 C 93.980469 141.058594 89.726562 141.058594 89.726562 138.222656 C 89.726562 135.390625 93.980469 135.390625 93.980469 138.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.875 138.222656 C 92.875 141.058594 88.621094 141.058594 88.621094 138.222656 C 88.621094 135.390625 92.875 135.390625 92.875 138.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.027344 347.503906 C 242.027344 350.335938 237.773438 350.335938 237.773438 347.503906 C 237.773438 344.667969 242.027344 344.667969 242.027344 347.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.847656 347.503906 C 107.847656 350.335938 103.59375 350.335938 103.59375 347.503906 C 103.59375 344.667969 107.847656 344.667969 107.847656 347.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.125 216.703125 C 237.125 219.539062 232.871094 219.539062 232.871094 216.703125 C 232.871094 213.867188 237.125 213.867188 237.125 216.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 106.207031 216.703125 C 106.207031 219.539062 101.957031 219.539062 101.957031 216.703125 C 101.957031 213.867188 106.207031 213.867188 106.207031 216.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.519531 216.703125 C 104.519531 219.539062 100.265625 219.539062 100.265625 216.703125 C 100.265625 213.867188 104.519531 213.867188 104.519531 216.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.144531 146.945312 C 226.144531 149.777344 221.890625 149.777344 221.890625 146.945312 C 221.890625 144.109375 226.144531 144.109375 226.144531 146.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.765625 146.945312 C 234.765625 149.777344 230.515625 149.777344 230.515625 146.945312 C 230.515625 144.109375 234.765625 144.109375 234.765625 146.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.332031 146.945312 C 115.332031 149.777344 111.082031 149.777344 111.082031 146.945312 C 111.082031 144.109375 115.332031 144.109375 115.332031 146.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 106.710938 146.945312 C 106.710938 149.777344 102.457031 149.777344 102.457031 146.945312 C 102.457031 144.109375 106.710938 144.109375 106.710938 146.945312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.328125 45.210938 C 211.328125 48.046875 207.074219 48.046875 207.074219 45.210938 C 207.074219 42.375 211.328125 42.375 211.328125 45.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 64.457031 45.210938 C 64.457031 48.046875 60.207031 48.046875 60.207031 45.210938 C 60.207031 42.375 64.457031 42.375 64.457031 45.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 62.046875 45.210938 C 62.046875 48.046875 57.796875 48.046875 57.796875 45.210938 C 57.796875 42.375 62.046875 42.375 62.046875 45.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 248.1875 373.664062 C 248.1875 376.496094 243.933594 376.496094 243.933594 373.664062 C 243.933594 370.828125 248.1875 370.828125 248.1875 373.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.734375 373.664062 C 229.734375 376.496094 225.484375 376.496094 225.484375 373.664062 C 225.484375 370.828125 229.734375 370.828125 229.734375 373.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.667969 373.664062 C 113.667969 376.496094 109.417969 376.496094 109.417969 373.664062 C 109.417969 370.828125 113.667969 370.828125 113.667969 373.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.09375 385.289062 C 222.09375 388.125 217.839844 388.125 217.839844 385.289062 C 217.839844 382.453125 222.09375 382.453125 222.09375 385.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 207.675781 385.289062 C 207.675781 388.125 203.421875 388.125 203.421875 385.289062 C 203.421875 382.453125 207.675781 382.453125 207.675781 385.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 97.949219 385.289062 C 97.949219 388.125 93.699219 388.125 93.699219 385.289062 C 93.699219 382.453125 97.949219 382.453125 97.949219 385.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.550781 417.261719 C 224.550781 420.097656 220.296875 420.097656 220.296875 417.261719 C 220.296875 414.429688 224.550781 414.429688 224.550781 417.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 210.015625 417.261719 C 210.015625 420.097656 205.765625 420.097656 205.765625 417.261719 C 205.765625 414.429688 210.015625 414.429688 210.015625 417.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 72.386719 417.261719 C 72.386719 420.097656 68.132812 420.097656 68.132812 417.261719 C 68.132812 414.429688 72.386719 414.429688 72.386719 417.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.832031 443.421875 C 204.832031 446.257812 200.578125 446.257812 200.578125 443.421875 C 200.578125 440.589844 204.832031 440.589844 204.832031 443.421875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.769531 443.421875 C 87.769531 446.257812 83.519531 446.257812 83.519531 443.421875 C 83.519531 440.589844 87.769531 440.589844 87.769531 443.421875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.871094 359.128906 C 238.871094 361.964844 234.621094 361.964844 234.621094 359.128906 C 234.621094 356.296875 238.871094 356.296875 238.871094 359.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 105.929688 359.128906 C 105.929688 361.964844 101.675781 361.964844 101.675781 359.128906 C 101.675781 356.296875 105.929688 356.296875 105.929688 359.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.886719 176.011719 C 221.886719 178.84375 217.636719 178.84375 217.636719 176.011719 C 217.636719 173.175781 221.886719 173.175781 221.886719 176.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.25 176.011719 C 84.25 178.84375 80 178.84375 80 176.011719 C 80 173.175781 84.25 173.175781 84.25 176.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.800781 176.011719 C 78.800781 178.84375 74.550781 178.84375 74.550781 176.011719 C 74.550781 173.175781 78.800781 173.175781 78.800781 176.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.253906 213.796875 C 226.253906 216.632812 222 216.632812 222 213.796875 C 222 210.960938 226.253906 210.960938 226.253906 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.125 213.796875 C 229.125 216.632812 224.871094 216.632812 224.871094 213.796875 C 224.871094 210.960938 229.125 210.960938 229.125 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.148438 213.796875 C 237.148438 216.632812 232.898438 216.632812 232.898438 213.796875 C 232.898438 210.960938 237.148438 210.960938 237.148438 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.664062 213.796875 C 228.664062 216.632812 224.410156 216.632812 224.410156 213.796875 C 224.410156 210.960938 228.664062 210.960938 228.664062 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.210938 213.796875 C 100.210938 216.632812 95.960938 216.632812 95.960938 213.796875 C 95.960938 210.960938 100.210938 210.960938 100.210938 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.84375 213.796875 C 94.84375 216.632812 90.59375 216.632812 90.59375 213.796875 C 90.59375 210.960938 94.84375 210.960938 94.84375 213.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.054688 434.703125 C 211.054688 437.539062 206.804688 437.539062 206.804688 434.703125 C 206.804688 431.867188 211.054688 431.867188 211.054688 434.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 110.953125 434.703125 C 110.953125 437.539062 106.703125 437.539062 106.703125 434.703125 C 106.703125 431.867188 110.953125 431.867188 110.953125 434.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 99.222656 434.703125 C 99.222656 437.539062 94.972656 437.539062 94.972656 434.703125 C 94.972656 431.867188 99.222656 431.867188 99.222656 434.703125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 250.886719 155.664062 C 250.886719 158.5 246.632812 158.5 246.632812 155.664062 C 246.632812 152.828125 250.886719 152.828125 250.886719 155.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 274.617188 155.664062 C 274.617188 158.5 270.363281 158.5 270.363281 155.664062 C 270.363281 152.828125 274.617188 152.828125 274.617188 155.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 263.117188 155.664062 C 263.117188 158.5 258.863281 158.5 258.863281 155.664062 C 258.863281 152.828125 263.117188 152.828125 263.117188 155.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 135.050781 155.664062 C 135.050781 158.5 130.800781 158.5 130.800781 155.664062 C 130.800781 152.828125 135.050781 152.828125 135.050781 155.664062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.164062 161.476562 C 214.164062 164.3125 209.910156 164.3125 209.910156 161.476562 C 209.910156 158.640625 214.164062 158.640625 214.164062 161.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.667969 161.476562 C 242.667969 164.3125 238.414062 164.3125 238.414062 161.476562 C 238.414062 158.640625 242.667969 158.640625 242.667969 161.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 111.785156 161.476562 C 111.785156 164.3125 107.535156 164.3125 107.535156 161.476562 C 107.535156 158.640625 111.785156 158.640625 111.785156 161.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.667969 300.996094 C 253.667969 303.832031 249.417969 303.832031 249.417969 300.996094 C 249.417969 298.160156 253.667969 298.160156 253.667969 300.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 239.0625 300.996094 C 239.0625 303.832031 234.808594 303.832031 234.808594 300.996094 C 234.808594 298.160156 239.0625 298.160156 239.0625 300.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 300.996094 C 104.300781 303.832031 100.046875 303.832031 100.046875 300.996094 C 100.046875 298.160156 104.300781 298.160156 104.300781 300.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 177.09375 39.398438 C 177.09375 42.230469 172.839844 42.230469 172.839844 39.398438 C 172.839844 36.5625 177.09375 36.5625 177.09375 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 190.09375 39.398438 C 190.09375 42.230469 185.84375 42.230469 185.84375 39.398438 C 185.84375 36.5625 190.09375 36.5625 190.09375 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 60.078125 39.398438 C 60.078125 42.230469 55.828125 42.230469 55.828125 39.398438 C 55.828125 36.5625 60.078125 36.5625 60.078125 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.335938 39.398438 C 53.335938 42.230469 49.085938 42.230469 49.085938 39.398438 C 49.085938 36.5625 53.335938 36.5625 53.335938 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 47.742188 39.398438 C 47.742188 42.230469 43.492188 42.230469 43.492188 39.398438 C 43.492188 36.5625 47.742188 36.5625 47.742188 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 44.980469 39.398438 C 44.980469 42.230469 40.730469 42.230469 40.730469 39.398438 C 40.730469 36.5625 44.980469 36.5625 44.980469 39.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.089844 167.289062 C 236.089844 170.125 231.839844 170.125 231.839844 167.289062 C 231.839844 164.457031 236.089844 164.457031 236.089844 167.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 245.988281 167.289062 C 245.988281 170.125 241.734375 170.125 241.734375 167.289062 C 241.734375 164.457031 245.988281 164.457031 245.988281 167.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.890625 167.289062 C 101.890625 170.125 97.636719 170.125 97.636719 167.289062 C 97.636719 164.457031 101.890625 164.457031 101.890625 167.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.890625 167.289062 C 101.890625 170.125 97.636719 170.125 97.636719 167.289062 C 97.636719 164.457031 101.890625 164.457031 101.890625 167.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.507812 167.289062 C 84.507812 170.125 80.253906 170.125 80.253906 167.289062 C 80.253906 164.457031 84.507812 164.457031 84.507812 167.289062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.707031 298.089844 C 234.707031 300.925781 230.453125 300.925781 230.453125 298.089844 C 230.453125 295.253906 234.707031 295.253906 234.707031 298.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 259.574219 298.089844 C 259.574219 300.925781 255.324219 300.925781 255.324219 298.089844 C 255.324219 295.253906 259.574219 295.253906 259.574219 298.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 121.683594 298.089844 C 121.683594 300.925781 117.429688 300.925781 117.429688 298.089844 C 117.429688 295.253906 121.683594 295.253906 121.683594 298.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.332031 298.089844 C 102.332031 300.925781 98.078125 300.925781 98.078125 298.089844 C 98.078125 295.253906 102.332031 295.253906 102.332031 298.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.8125 298.089844 C 96.8125 300.925781 92.5625 300.925781 92.5625 298.089844 C 92.5625 295.253906 96.8125 295.253906 96.8125 298.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 187.105469 315.53125 C 187.105469 318.363281 182.855469 318.363281 182.855469 315.53125 C 182.855469 312.695312 187.105469 312.695312 187.105469 315.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 179.621094 315.53125 C 179.621094 318.363281 175.367188 318.363281 175.367188 315.53125 C 175.367188 312.695312 179.621094 312.695312 179.621094 315.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.949219 315.53125 C 84.949219 318.363281 80.695312 318.363281 80.695312 315.53125 C 80.695312 312.695312 84.949219 312.695312 84.949219 315.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 199.558594 402.730469 C 199.558594 405.5625 195.308594 405.5625 195.308594 402.730469 C 195.308594 399.894531 199.558594 399.894531 199.558594 402.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.457031 402.730469 C 209.457031 405.5625 205.203125 405.5625 205.203125 402.730469 C 205.203125 399.894531 209.457031 399.894531 209.457031 402.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 402.730469 C 71.945312 405.5625 67.691406 405.5625 67.691406 402.730469 C 67.691406 399.894531 71.945312 399.894531 71.945312 402.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 231.527344 30.675781 C 231.527344 33.511719 227.273438 33.511719 227.273438 30.675781 C 227.273438 27.84375 231.527344 27.84375 231.527344 30.675781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 82.828125 30.675781 C 82.828125 33.511719 78.578125 33.511719 78.578125 30.675781 C 78.578125 27.84375 82.828125 27.84375 82.828125 30.675781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.609375 112.0625 C 234.609375 114.898438 230.355469 114.898438 230.355469 112.0625 C 230.355469 109.230469 234.609375 109.230469 234.609375 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 240.125 112.0625 C 240.125 114.898438 235.875 114.898438 235.875 112.0625 C 235.875 109.230469 240.125 109.230469 240.125 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.535156 112.0625 C 242.535156 114.898438 238.285156 114.898438 238.285156 112.0625 C 238.285156 109.230469 242.535156 109.230469 242.535156 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.050781 112.0625 C 235.050781 114.898438 230.796875 114.898438 230.796875 112.0625 C 230.796875 109.230469 235.050781 109.230469 235.050781 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.769531 112.0625 C 89.769531 114.898438 85.515625 114.898438 85.515625 112.0625 C 85.515625 109.230469 89.769531 109.230469 89.769531 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.910156 112.0625 C 87.910156 114.898438 83.660156 114.898438 83.660156 112.0625 C 83.660156 109.230469 87.910156 109.230469 87.910156 112.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 241.617188 126.597656 C 241.617188 129.433594 237.363281 129.433594 237.363281 126.597656 C 237.363281 123.761719 241.617188 123.761719 241.617188 126.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 108.789062 126.597656 C 108.789062 129.433594 104.535156 129.433594 104.535156 126.597656 C 104.535156 123.761719 108.789062 123.761719 108.789062 126.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.839844 126.597656 C 81.839844 129.433594 77.589844 129.433594 77.589844 126.597656 C 77.589844 123.761719 81.839844 123.761719 81.839844 126.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.175781 239.957031 C 208.175781 242.792969 203.921875 242.792969 203.921875 239.957031 C 203.921875 237.121094 208.175781 237.121094 208.175781 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 72.164062 239.957031 C 72.164062 242.792969 67.910156 242.792969 67.910156 239.957031 C 67.910156 237.121094 72.164062 237.121094 72.164062 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 239.957031 C 71.945312 242.792969 67.691406 242.792969 67.691406 239.957031 C 67.691406 237.121094 71.945312 237.121094 71.945312 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 203.175781 196.355469 C 203.175781 199.191406 198.921875 199.191406 198.921875 196.355469 C 198.921875 193.523438 203.175781 193.523438 203.175781 196.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 67.566406 196.355469 C 67.566406 199.191406 63.3125 199.191406 63.3125 196.355469 C 63.3125 193.523438 67.566406 193.523438 67.566406 196.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.210938 33.582031 C 237.210938 36.417969 232.957031 36.417969 232.957031 33.582031 C 232.957031 30.75 237.210938 30.75 237.210938 33.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 33.582031 C 104.300781 36.417969 100.046875 36.417969 100.046875 33.582031 C 100.046875 30.75 104.300781 30.75 104.300781 33.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 77.105469 33.582031 C 77.105469 36.417969 72.855469 36.417969 72.855469 33.582031 C 72.855469 30.75 77.105469 30.75 77.105469 33.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 75.050781 33.582031 C 75.050781 36.417969 70.800781 36.417969 70.800781 33.582031 C 70.800781 30.75 75.050781 30.75 75.050781 33.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.996094 251.582031 C 225.996094 254.417969 221.746094 254.417969 221.746094 251.582031 C 221.746094 248.75 225.996094 248.75 225.996094 251.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 251.582031 C 86.917969 254.417969 82.664062 254.417969 82.664062 251.582031 C 82.664062 248.75 86.917969 248.75 86.917969 251.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.429688 251.582031 C 79.429688 254.417969 75.179688 254.417969 75.179688 251.582031 C 75.179688 248.75 79.429688 248.75 79.429688 251.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 207.070312 364.941406 C 207.070312 367.777344 202.820312 367.777344 202.820312 364.941406 C 202.820312 362.109375 207.070312 362.109375 207.070312 364.941406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.972656 364.941406 C 79.972656 367.777344 75.71875 367.777344 75.71875 364.941406 C 75.71875 362.109375 79.972656 362.109375 79.972656 364.941406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 364.941406 C 71.945312 367.777344 67.691406 367.777344 67.691406 364.941406 C 67.691406 362.109375 71.945312 362.109375 71.945312 364.941406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.9375 437.609375 C 225.9375 440.445312 221.6875 440.445312 221.6875 437.609375 C 221.6875 434.773438 225.9375 434.773438 225.9375 437.609375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 54.5625 437.609375 C 54.5625 440.445312 50.308594 440.445312 50.308594 437.609375 C 50.308594 434.773438 54.5625 434.773438 54.5625 437.609375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.757812 367.851562 C 212.757812 370.683594 208.503906 370.683594 208.503906 367.851562 C 208.503906 365.015625 212.757812 365.015625 212.757812 367.851562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.214844 367.851562 C 79.214844 370.683594 74.964844 370.683594 74.964844 367.851562 C 74.964844 365.015625 79.214844 365.015625 79.214844 367.851562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 289.824219 286.464844 C 289.824219 289.296875 285.570312 289.296875 285.570312 286.464844 C 285.570312 283.628906 289.824219 283.628906 289.824219 286.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 249.980469 286.464844 C 249.980469 289.296875 245.730469 289.296875 245.730469 286.464844 C 245.730469 283.628906 249.980469 283.628906 249.980469 286.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 287.855469 286.464844 C 287.855469 289.296875 283.601562 289.296875 283.601562 286.464844 C 283.601562 283.628906 287.855469 283.628906 287.855469 286.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 146.550781 286.464844 C 146.550781 289.296875 142.300781 289.296875 142.300781 286.464844 C 142.300781 283.628906 146.550781 283.628906 146.550781 286.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 271.742188 306.808594 C 271.742188 309.644531 267.492188 309.644531 267.492188 306.808594 C 267.492188 303.976562 271.742188 303.976562 271.742188 306.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 137.9375 306.808594 C 137.9375 309.644531 133.6875 309.644531 133.6875 306.808594 C 133.6875 303.976562 137.9375 303.976562 137.9375 306.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 240.9375 254.488281 C 240.9375 257.324219 236.683594 257.324219 236.683594 254.488281 C 236.683594 251.65625 240.9375 251.65625 240.9375 254.488281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.941406 254.488281 C 91.941406 257.324219 87.6875 257.324219 87.6875 254.488281 C 87.6875 251.65625 91.941406 251.65625 91.941406 254.488281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.222656 228.328125 C 237.222656 231.164062 232.96875 231.164062 232.96875 228.328125 C 232.96875 225.496094 237.222656 225.496094 237.222656 228.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 119.984375 228.328125 C 119.984375 231.164062 115.734375 231.164062 115.734375 228.328125 C 115.734375 225.496094 119.984375 225.496094 119.984375 228.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 228.328125 C 104.300781 231.164062 100.046875 231.164062 100.046875 228.328125 C 100.046875 225.496094 104.300781 225.496094 104.300781 228.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.332031 91.71875 C 222.332031 94.550781 218.082031 94.550781 218.082031 91.71875 C 218.082031 88.882812 222.332031 88.882812 222.332031 91.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 91.71875 C 71.945312 94.550781 67.691406 94.550781 67.691406 91.71875 C 67.691406 88.882812 71.945312 88.882812 71.945312 91.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.730469 396.917969 C 211.730469 399.75 207.480469 399.75 207.480469 396.917969 C 207.480469 394.082031 211.730469 394.082031 211.730469 396.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.625 396.917969 C 71.625 399.75 67.371094 399.75 67.371094 396.917969 C 67.371094 394.082031 71.625 394.082031 71.625 396.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.234375 263.210938 C 215.234375 266.042969 210.984375 266.042969 210.984375 263.210938 C 210.984375 260.375 215.234375 260.375 215.234375 263.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 76.269531 263.210938 C 76.269531 266.042969 72.015625 266.042969 72.015625 263.210938 C 72.015625 260.375 76.269531 260.375 76.269531 263.210938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 230.78125 356.222656 C 230.78125 359.058594 226.527344 359.058594 226.527344 356.222656 C 226.527344 353.386719 230.78125 353.386719 230.78125 356.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 98.441406 356.222656 C 98.441406 359.058594 94.191406 359.058594 94.191406 356.222656 C 94.191406 353.386719 98.441406 353.386719 98.441406 356.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.980469 356.222656 C 93.980469 359.058594 89.726562 359.058594 89.726562 356.222656 C 89.726562 353.386719 93.980469 353.386719 93.980469 356.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.195312 207.984375 C 214.195312 210.816406 209.945312 210.816406 209.945312 207.984375 C 209.945312 205.148438 214.195312 205.148438 214.195312 207.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 73.324219 207.984375 C 73.324219 210.816406 69.074219 210.816406 69.074219 207.984375 C 69.074219 205.148438 73.324219 205.148438 73.324219 207.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.652344 376.570312 C 215.652344 379.402344 211.402344 379.402344 211.402344 376.570312 C 211.402344 373.734375 215.652344 373.734375 215.652344 376.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.09375 376.570312 C 217.09375 379.402344 212.84375 379.402344 212.84375 376.570312 C 212.84375 373.734375 217.09375 373.734375 217.09375 376.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 82.976562 376.570312 C 82.976562 379.402344 78.726562 379.402344 78.726562 376.570312 C 78.726562 373.734375 82.976562 373.734375 82.976562 376.570312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 233.027344 271.929688 C 233.027344 274.765625 228.777344 274.765625 228.777344 271.929688 C 228.777344 269.09375 233.027344 269.09375 233.027344 271.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.148438 271.929688 C 94.148438 274.765625 89.894531 274.765625 89.894531 271.929688 C 89.894531 269.09375 94.148438 269.09375 94.148438 271.929688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.496094 24.863281 C 217.496094 27.699219 213.242188 27.699219 213.242188 24.863281 C 213.242188 22.03125 217.496094 22.03125 217.496094 24.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 121.683594 24.863281 C 121.683594 27.699219 117.429688 27.699219 117.429688 24.863281 C 117.429688 22.03125 121.683594 22.03125 121.683594 24.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 233.011719 335.875 C 233.011719 338.710938 228.761719 338.710938 228.761719 335.875 C 228.761719 333.042969 233.011719 333.042969 233.011719 335.875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.433594 335.875 C 92.433594 338.710938 88.183594 338.710938 88.183594 335.875 C 88.183594 333.042969 92.433594 333.042969 92.433594 335.875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.058594 94.625 C 228.058594 97.457031 223.804688 97.457031 223.804688 94.625 C 223.804688 91.789062 228.058594 91.789062 228.058594 94.625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.871094 94.625 C 79.871094 97.457031 75.621094 97.457031 75.621094 94.625 C 75.621094 91.789062 79.871094 91.789062 79.871094 94.625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.808594 149.851562 C 246.808594 152.683594 242.558594 152.683594 242.558594 149.851562 C 242.558594 147.015625 246.808594 147.015625 246.808594 149.851562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 121.683594 149.851562 C 121.683594 152.683594 117.429688 152.683594 117.429688 149.851562 C 117.429688 147.015625 121.683594 147.015625 121.683594 149.851562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.980469 187.636719 C 219.980469 190.472656 215.730469 190.472656 215.730469 187.636719 C 215.730469 184.800781 219.980469 184.800781 219.980469 187.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 80.761719 187.636719 C 80.761719 190.472656 76.511719 190.472656 76.511719 187.636719 C 76.511719 184.800781 80.761719 184.800781 80.761719 187.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.484375 324.25 C 234.484375 327.085938 230.234375 327.085938 230.234375 324.25 C 230.234375 321.414062 234.484375 321.414062 234.484375 324.25 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.84375 324.25 C 94.84375 327.085938 90.59375 327.085938 90.59375 324.25 C 90.59375 321.414062 94.84375 321.414062 94.84375 324.25 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 207.046875 428.890625 C 207.046875 431.722656 202.792969 431.722656 202.792969 428.890625 C 202.792969 426.054688 207.046875 426.054688 207.046875 428.890625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.433594 428.890625 C 92.433594 431.722656 88.183594 431.722656 88.183594 428.890625 C 88.183594 426.054688 92.433594 426.054688 92.433594 428.890625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.828125 455.050781 C 215.828125 457.882812 211.574219 457.882812 211.574219 455.050781 C 211.574219 452.214844 215.828125 452.214844 215.828125 455.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.492188 455.050781 C 86.492188 457.882812 82.242188 457.882812 82.242188 455.050781 C 82.242188 452.214844 86.492188 452.214844 86.492188 455.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.808594 141.128906 C 242.808594 143.964844 238.554688 143.964844 238.554688 141.128906 C 238.554688 138.296875 242.808594 138.296875 242.808594 141.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 260.628906 141.128906 C 260.628906 143.964844 256.378906 143.964844 256.378906 141.128906 C 256.378906 138.296875 260.628906 138.296875 260.628906 141.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 265.707031 141.128906 C 265.707031 143.964844 261.453125 143.964844 261.453125 141.128906 C 261.453125 138.296875 265.707031 138.296875 265.707031 141.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 139.066406 141.128906 C 139.066406 143.964844 134.8125 143.964844 134.8125 141.128906 C 134.8125 138.296875 139.066406 138.296875 139.066406 141.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 125.230469 141.128906 C 125.230469 143.964844 120.976562 143.964844 120.976562 141.128906 C 120.976562 138.296875 125.230469 138.296875 125.230469 141.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 205.453125 431.796875 C 205.453125 434.628906 201.203125 434.628906 201.203125 431.796875 C 201.203125 428.960938 205.453125 428.960938 205.453125 431.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 67.566406 431.796875 C 67.566406 434.628906 63.3125 434.628906 63.3125 431.796875 C 63.3125 428.960938 67.566406 428.960938 67.566406 431.796875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.167969 62.652344 C 212.167969 65.484375 207.914062 65.484375 207.914062 62.652344 C 207.914062 59.816406 212.167969 59.816406 212.167969 62.652344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 62.652344 C 71.945312 65.484375 67.691406 65.484375 67.691406 62.652344 C 67.691406 59.816406 71.945312 59.816406 71.945312 62.652344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.867188 62.652344 C 66.867188 65.484375 62.617188 65.484375 62.617188 62.652344 C 62.617188 59.816406 66.867188 59.816406 66.867188 62.652344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.09375 457.957031 C 246.09375 460.789062 241.84375 460.789062 241.84375 457.957031 C 241.84375 455.121094 246.09375 455.121094 246.09375 457.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 213.738281 457.957031 C 213.738281 460.789062 209.488281 460.789062 209.488281 457.957031 C 209.488281 455.121094 213.738281 455.121094 213.738281 457.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.847656 457.957031 C 216.847656 460.789062 212.59375 460.789062 212.59375 457.957031 C 212.59375 455.121094 216.847656 455.121094 216.847656 457.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.839844 457.957031 C 81.839844 460.789062 77.589844 460.789062 77.589844 457.957031 C 77.589844 455.121094 81.839844 455.121094 81.839844 457.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 205.574219 257.398438 C 205.574219 260.230469 201.324219 260.230469 201.324219 257.398438 C 201.324219 254.5625 205.574219 254.5625 205.574219 257.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.351562 257.398438 C 204.351562 260.230469 200.097656 260.230469 200.097656 257.398438 C 200.097656 254.5625 204.351562 254.5625 204.351562 257.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.234375 257.398438 C 68.234375 260.230469 63.980469 260.230469 63.980469 257.398438 C 63.980469 254.5625 68.234375 254.5625 68.234375 257.398438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 202.753906 248.675781 C 202.753906 251.511719 198.503906 251.511719 198.503906 248.675781 C 198.503906 245.84375 202.753906 245.84375 202.753906 248.675781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.949219 248.675781 C 84.949219 251.511719 80.695312 251.511719 80.695312 248.675781 C 80.695312 245.84375 84.949219 245.84375 84.949219 248.675781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 189.019531 21.957031 C 189.019531 24.792969 184.765625 24.792969 184.765625 21.957031 C 184.765625 19.121094 189.019531 19.121094 189.019531 21.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 54.5625 21.957031 C 54.5625 24.792969 50.308594 24.792969 50.308594 21.957031 C 50.308594 19.121094 54.5625 19.121094 54.5625 21.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.722656 423.078125 C 208.722656 425.910156 204.46875 425.910156 204.46875 423.078125 C 204.46875 420.242188 208.722656 420.242188 208.722656 423.078125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.40625 423.078125 C 91.40625 425.910156 87.152344 425.910156 87.152344 423.078125 C 87.152344 420.242188 91.40625 420.242188 91.40625 423.078125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 240.179688 463.769531 C 240.179688 466.605469 235.925781 466.605469 235.925781 463.769531 C 235.925781 460.933594 240.179688 460.933594 240.179688 463.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.5 463.769531 C 101.5 466.605469 97.246094 466.605469 97.246094 463.769531 C 97.246094 460.933594 101.5 460.933594 101.5 463.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.289062 48.117188 C 225.289062 50.953125 221.035156 50.953125 221.035156 48.117188 C 221.035156 45.28125 225.289062 45.28125 225.289062 48.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.710938 48.117188 C 225.710938 50.953125 221.460938 50.953125 221.460938 48.117188 C 221.460938 45.28125 225.710938 45.28125 225.710938 48.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.003906 48.117188 C 87.003906 50.953125 82.75 50.953125 82.75 48.117188 C 82.75 45.28125 87.003906 45.28125 87.003906 48.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.753906 48.117188 C 69.753906 50.953125 65.5 50.953125 65.5 48.117188 C 65.5 45.28125 69.753906 45.28125 69.753906 48.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 241.988281 129.503906 C 241.988281 132.339844 237.738281 132.339844 237.738281 129.503906 C 237.738281 126.667969 241.988281 126.667969 241.988281 129.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.121094 129.503906 C 109.121094 132.339844 104.867188 132.339844 104.867188 129.503906 C 104.867188 126.667969 109.121094 126.667969 109.121094 129.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.574219 362.035156 C 217.574219 364.871094 213.324219 364.871094 213.324219 362.035156 C 213.324219 359.203125 217.574219 359.203125 217.574219 362.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.84375 362.035156 C 94.84375 364.871094 90.59375 364.871094 90.59375 362.035156 C 90.59375 359.203125 94.84375 359.203125 94.84375 362.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 177.164062 97.53125 C 177.164062 100.363281 172.914062 100.363281 172.914062 97.53125 C 172.914062 94.695312 177.164062 94.695312 177.164062 97.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 64.457031 97.53125 C 64.457031 100.363281 60.207031 100.363281 60.207031 97.53125 C 60.207031 94.695312 64.457031 94.695312 64.457031 97.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.910156 97.53125 C 53.910156 100.363281 49.660156 100.363281 49.660156 97.53125 C 49.660156 94.695312 53.910156 94.695312 53.910156 97.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 47.074219 97.53125 C 47.074219 100.363281 42.824219 100.363281 42.824219 97.53125 C 42.824219 94.695312 47.074219 94.695312 47.074219 97.53125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.878906 59.742188 C 225.878906 62.578125 221.625 62.578125 221.625 59.742188 C 221.625 56.910156 225.878906 56.910156 225.878906 59.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.972656 59.742188 C 90.972656 62.578125 86.722656 62.578125 86.722656 59.742188 C 86.722656 56.910156 90.972656 56.910156 90.972656 59.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.949219 59.742188 C 84.949219 62.578125 80.695312 62.578125 80.695312 59.742188 C 80.695312 56.910156 84.949219 56.910156 84.949219 59.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.589844 391.101562 C 238.589844 393.9375 234.335938 393.9375 234.335938 391.101562 C 234.335938 388.269531 238.589844 388.269531 238.589844 391.101562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 242.753906 391.101562 C 242.753906 393.9375 238.5 393.9375 238.5 391.101562 C 238.5 388.269531 242.753906 388.269531 242.753906 391.101562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 88.546875 391.101562 C 88.546875 393.9375 84.292969 393.9375 84.292969 391.101562 C 84.292969 388.269531 88.546875 388.269531 88.546875 391.101562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 292.34375 120.785156 C 292.34375 123.617188 288.09375 123.617188 288.09375 120.785156 C 288.09375 117.949219 292.34375 117.949219 292.34375 120.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 152.25 120.785156 C 152.25 123.617188 147.996094 123.617188 147.996094 120.785156 C 147.996094 117.949219 152.25 117.949219 152.25 120.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.484375 109.15625 C 227.484375 111.992188 223.234375 111.992188 223.234375 109.15625 C 223.234375 106.324219 227.484375 106.324219 227.484375 109.15625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.773438 109.15625 C 224.773438 111.992188 220.523438 111.992188 220.523438 109.15625 C 220.523438 106.324219 224.773438 106.324219 224.773438 109.15625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 88.800781 109.15625 C 88.800781 111.992188 84.546875 111.992188 84.546875 109.15625 C 84.546875 106.324219 88.800781 106.324219 88.800781 109.15625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.519531 237.050781 C 214.519531 239.882812 210.269531 239.882812 210.269531 237.050781 C 210.269531 234.214844 214.519531 234.214844 214.519531 237.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.847656 237.050781 C 107.847656 239.882812 103.59375 239.882812 103.59375 237.050781 C 103.59375 234.214844 107.847656 234.214844 107.847656 237.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 103.671875 237.050781 C 103.671875 239.882812 99.417969 239.882812 99.417969 237.050781 C 99.417969 234.214844 103.671875 234.214844 103.671875 237.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.800781 103.34375 C 214.800781 106.179688 210.546875 106.179688 210.546875 103.34375 C 210.546875 100.507812 214.800781 100.507812 214.800781 103.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.179688 103.34375 C 219.179688 106.179688 214.925781 106.179688 214.925781 103.34375 C 214.925781 100.507812 219.179688 100.507812 219.179688 103.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.429688 103.34375 C 79.429688 106.179688 75.179688 106.179688 75.179688 103.34375 C 75.179688 100.507812 79.429688 100.507812 79.429688 103.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 75.050781 103.34375 C 75.050781 106.179688 70.800781 106.179688 70.800781 103.34375 C 70.800781 100.507812 75.050781 100.507812 75.050781 103.34375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.300781 114.96875 C 219.300781 117.804688 215.050781 117.804688 215.050781 114.96875 C 215.050781 112.136719 219.300781 112.136719 219.300781 114.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.40625 114.96875 C 222.40625 117.804688 218.15625 117.804688 218.15625 114.96875 C 218.15625 112.136719 222.40625 112.136719 222.40625 114.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.59375 114.96875 C 84.59375 117.804688 80.339844 117.804688 80.339844 114.96875 C 80.339844 112.136719 84.59375 112.136719 84.59375 114.96875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.292969 274.835938 C 228.292969 277.671875 224.039062 277.671875 224.039062 274.835938 C 224.039062 272 228.292969 272 228.292969 274.835938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.402344 274.835938 C 78.402344 277.671875 74.148438 277.671875 74.148438 274.835938 C 74.148438 272 78.402344 272 78.402344 274.835938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 199.769531 19.050781 C 199.769531 21.886719 195.515625 21.886719 195.515625 19.050781 C 195.515625 16.214844 199.769531 16.214844 199.769531 19.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 194.691406 19.050781 C 194.691406 21.886719 190.441406 21.886719 190.441406 19.050781 C 190.441406 16.214844 194.691406 16.214844 194.691406 19.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.25 19.050781 C 70.25 21.886719 65.996094 21.886719 65.996094 19.050781 C 65.996094 16.214844 70.25 16.214844 70.25 19.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 191.578125 344.597656 C 191.578125 347.429688 187.328125 347.429688 187.328125 344.597656 C 187.328125 341.761719 191.578125 341.761719 191.578125 344.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 210.464844 344.597656 C 210.464844 347.429688 206.214844 347.429688 206.214844 344.597656 C 206.214844 341.761719 210.464844 341.761719 210.464844 344.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 73.449219 344.597656 C 73.449219 347.429688 69.195312 347.429688 69.195312 344.597656 C 69.195312 341.761719 73.449219 341.761719 73.449219 344.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.03125 170.195312 C 229.03125 173.03125 224.777344 173.03125 224.777344 170.195312 C 224.777344 167.363281 229.03125 167.363281 229.03125 170.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.492188 170.195312 C 107.492188 173.03125 103.242188 173.03125 103.242188 170.195312 C 103.242188 167.363281 107.492188 167.363281 107.492188 170.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 265.425781 152.757812 C 265.425781 155.589844 261.175781 155.589844 261.175781 152.757812 C 261.175781 149.921875 265.425781 149.921875 265.425781 152.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.769531 152.757812 C 87.769531 155.589844 83.519531 155.589844 83.519531 152.757812 C 83.519531 149.921875 87.769531 149.921875 87.769531 152.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.625 106.25 C 253.625 109.085938 249.371094 109.085938 249.371094 106.25 C 249.371094 103.414062 253.625 103.414062 253.625 106.25 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 111.785156 106.25 C 111.785156 109.085938 107.535156 109.085938 107.535156 106.25 C 107.535156 103.414062 111.785156 103.414062 111.785156 106.25 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 103.46875 106.25 C 103.46875 109.085938 99.214844 109.085938 99.214844 106.25 C 99.214844 103.414062 103.46875 103.414062 103.46875 106.25 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.394531 74.277344 C 224.394531 77.113281 220.144531 77.113281 220.144531 74.277344 C 220.144531 71.441406 224.394531 71.441406 224.394531 74.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 74.277344 C 86.917969 77.113281 82.664062 77.113281 82.664062 74.277344 C 82.664062 71.441406 86.917969 71.441406 86.917969 74.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.070312 341.691406 C 220.070312 344.523438 215.820312 344.523438 215.820312 341.691406 C 215.820312 338.855469 220.070312 338.855469 220.070312 341.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.800781 341.691406 C 78.800781 344.523438 74.550781 344.523438 74.550781 341.691406 C 74.550781 338.855469 78.800781 338.855469 78.800781 341.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 190.648438 242.863281 C 190.648438 245.699219 186.394531 245.699219 186.394531 242.863281 C 186.394531 240.027344 190.648438 240.027344 190.648438 242.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.925781 242.863281 C 217.925781 245.699219 213.675781 245.699219 213.675781 242.863281 C 213.675781 240.027344 217.925781 240.027344 217.925781 242.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.515625 242.863281 C 215.515625 245.699219 211.265625 245.699219 211.265625 242.863281 C 211.265625 240.027344 215.515625 240.027344 215.515625 242.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 242.863281 C 86.917969 245.699219 82.664062 245.699219 82.664062 242.863281 C 82.664062 240.027344 86.917969 240.027344 86.917969 242.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.832031 382.382812 C 209.832031 385.21875 205.582031 385.21875 205.582031 382.382812 C 205.582031 379.546875 209.832031 379.546875 209.832031 382.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.769531 382.382812 C 227.769531 385.21875 223.519531 385.21875 223.519531 382.382812 C 223.519531 379.546875 227.769531 379.546875 227.769531 382.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.433594 382.382812 C 92.433594 385.21875 88.183594 385.21875 88.183594 382.382812 C 88.183594 379.546875 92.433594 379.546875 92.433594 382.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.269531 382.382812 C 87.269531 385.21875 83.015625 385.21875 83.015625 382.382812 C 83.015625 379.546875 87.269531 379.546875 87.269531 382.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.832031 382.382812 C 86.832031 385.21875 82.578125 385.21875 82.578125 382.382812 C 82.578125 379.546875 86.832031 379.546875 86.832031 382.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.890625 117.878906 C 232.890625 120.710938 228.636719 120.710938 228.636719 117.878906 C 228.636719 115.042969 232.890625 115.042969 232.890625 117.878906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.40625 117.878906 C 238.40625 120.710938 234.15625 120.710938 234.15625 117.878906 C 234.15625 115.042969 238.40625 115.042969 238.40625 117.878906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.332031 117.878906 C 102.332031 120.710938 98.078125 120.710938 98.078125 117.878906 C 98.078125 115.042969 102.332031 115.042969 102.332031 117.878906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.484375 85.902344 C 227.484375 88.738281 223.234375 88.738281 223.234375 85.902344 C 223.234375 83.070312 227.484375 83.070312 227.484375 85.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.328125 85.902344 C 89.328125 88.738281 85.074219 88.738281 85.074219 85.902344 C 85.074219 83.070312 89.328125 83.070312 89.328125 85.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.125 219.609375 C 228.125 222.445312 223.875 222.445312 223.875 219.609375 C 223.875 216.777344 228.125 216.777344 228.125 219.609375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.300781 219.609375 C 228.300781 222.445312 224.046875 222.445312 224.046875 219.609375 C 224.046875 216.777344 228.300781 216.777344 228.300781 219.609375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.578125 219.609375 C 94.578125 222.445312 90.324219 222.445312 90.324219 219.609375 C 90.324219 216.777344 94.578125 216.777344 94.578125 219.609375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.472656 394.007812 C 215.472656 396.84375 211.21875 396.84375 211.21875 394.007812 C 211.21875 391.175781 215.472656 391.175781 215.472656 394.007812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.679688 394.007812 C 81.679688 396.84375 77.425781 396.84375 77.425781 394.007812 C 77.425781 391.175781 81.679688 391.175781 81.679688 394.007812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.117188 269.023438 C 224.117188 271.859375 219.867188 271.859375 219.867188 269.023438 C 219.867188 266.1875 224.117188 266.1875 224.117188 269.023438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 65.597656 269.023438 C 65.597656 271.859375 61.34375 271.859375 61.34375 269.023438 C 61.34375 266.1875 65.597656 266.1875 65.597656 269.023438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.746094 266.117188 C 219.746094 268.953125 215.496094 268.953125 215.496094 266.117188 C 215.496094 263.28125 219.746094 263.28125 219.746094 266.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 266.117188 C 104.300781 268.953125 100.046875 268.953125 100.046875 266.117188 C 100.046875 263.28125 104.300781 263.28125 104.300781 266.117188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.757812 100.4375 C 226.757812 103.273438 222.507812 103.273438 222.507812 100.4375 C 222.507812 97.601562 226.757812 97.601562 226.757812 100.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 100.4375 C 86.917969 103.273438 82.664062 103.273438 82.664062 100.4375 C 82.664062 97.601562 86.917969 97.601562 86.917969 100.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 100.4375 C 86.917969 103.273438 82.664062 103.273438 82.664062 100.4375 C 82.664062 97.601562 86.917969 97.601562 86.917969 100.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 100.4375 C 86.917969 103.273438 82.664062 103.273438 82.664062 100.4375 C 82.664062 97.601562 86.917969 97.601562 86.917969 100.4375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.921875 408.542969 C 214.921875 411.378906 210.667969 411.378906 210.667969 408.542969 C 210.667969 405.707031 214.921875 405.707031 214.921875 408.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.433594 408.542969 C 70.433594 411.378906 66.183594 411.378906 66.183594 408.542969 C 66.183594 405.707031 70.433594 405.707031 70.433594 408.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.648438 280.648438 C 225.648438 283.484375 221.398438 283.484375 221.398438 280.648438 C 221.398438 277.816406 225.648438 277.816406 225.648438 280.648438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.214844 280.648438 C 227.214844 283.484375 222.964844 283.484375 222.964844 280.648438 C 222.964844 277.816406 227.214844 277.816406 227.214844 280.648438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.894531 280.648438 C 90.894531 283.484375 86.640625 283.484375 86.640625 280.648438 C 86.640625 277.816406 90.894531 277.816406 90.894531 280.648438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 233.070312 312.625 C 233.070312 315.457031 228.820312 315.457031 228.820312 312.625 C 228.820312 309.789062 233.070312 309.789062 233.070312 312.625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.046875 312.625 C 87.046875 315.457031 82.796875 315.457031 82.796875 312.625 C 82.796875 309.789062 87.046875 309.789062 87.046875 312.625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.695312 405.636719 C 225.695312 408.472656 221.445312 408.472656 221.445312 405.636719 C 221.445312 402.800781 225.695312 402.800781 225.695312 405.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.917969 405.636719 C 86.917969 408.472656 82.664062 408.472656 82.664062 405.636719 C 82.664062 402.800781 86.917969 402.800781 86.917969 405.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 248.675781 399.824219 C 248.675781 402.65625 244.421875 402.65625 244.421875 399.824219 C 244.421875 396.988281 248.675781 396.988281 248.675781 399.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.292969 399.824219 C 107.292969 402.65625 103.039062 402.65625 103.039062 399.824219 C 103.039062 396.988281 107.292969 396.988281 107.292969 399.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.5625 370.757812 C 219.5625 373.589844 215.3125 373.589844 215.3125 370.757812 C 215.3125 367.921875 219.5625 367.921875 219.5625 370.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.460938 370.757812 C 109.460938 373.589844 105.210938 373.589844 105.210938 370.757812 C 105.210938 367.921875 109.460938 367.921875 109.460938 370.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.8125 370.757812 C 96.8125 373.589844 92.5625 373.589844 92.5625 370.757812 C 92.5625 367.921875 96.8125 367.921875 96.8125 370.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.539062 370.757812 C 87.539062 373.589844 83.289062 373.589844 83.289062 370.757812 C 83.289062 367.921875 87.539062 367.921875 87.539062 370.757812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 231.398438 420.167969 C 231.398438 423.003906 227.144531 423.003906 227.144531 420.167969 C 227.144531 417.335938 231.398438 417.335938 231.398438 420.167969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 97.03125 420.167969 C 97.03125 423.003906 92.78125 423.003906 92.78125 420.167969 C 92.78125 417.335938 97.03125 417.335938 97.03125 420.167969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.035156 420.167969 C 81.035156 423.003906 76.78125 423.003906 76.78125 420.167969 C 76.78125 417.335938 81.035156 417.335938 81.035156 420.167969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.882812 164.382812 C 223.882812 167.21875 219.632812 167.21875 219.632812 164.382812 C 219.632812 161.550781 223.882812 161.550781 223.882812 164.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.734375 164.382812 C 93.734375 167.21875 89.480469 167.21875 89.480469 164.382812 C 89.480469 161.550781 93.734375 161.550781 93.734375 164.382812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.824219 440.515625 C 217.824219 443.351562 213.570312 443.351562 213.570312 440.515625 C 213.570312 437.679688 217.824219 437.679688 217.824219 440.515625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.78125 440.515625 C 79.78125 443.351562 75.53125 443.351562 75.53125 440.515625 C 75.53125 437.679688 79.78125 437.679688 79.78125 440.515625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.972656 68.464844 C 222.972656 71.296875 218.722656 71.296875 218.722656 68.464844 C 218.722656 65.628906 222.972656 65.628906 222.972656 68.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 207.472656 68.464844 C 207.472656 71.296875 203.222656 71.296875 203.222656 68.464844 C 203.222656 65.628906 207.472656 65.628906 207.472656 68.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.878906 68.464844 C 89.878906 71.296875 85.628906 71.296875 85.628906 68.464844 C 85.628906 65.628906 89.878906 65.628906 89.878906 68.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.574219 36.492188 C 238.574219 39.324219 234.320312 39.324219 234.320312 36.492188 C 234.320312 33.65625 238.574219 33.65625 238.574219 36.492188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.878906 36.492188 C 89.878906 39.324219 85.628906 39.324219 85.628906 36.492188 C 85.628906 33.65625 89.878906 33.65625 89.878906 36.492188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 249.964844 277.742188 C 249.964844 280.578125 245.714844 280.578125 245.714844 277.742188 C 245.714844 274.910156 249.964844 274.910156 249.964844 277.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 114.195312 277.742188 C 114.195312 280.578125 109.945312 280.578125 109.945312 277.742188 C 109.945312 274.910156 114.195312 274.910156 114.195312 277.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 111.785156 277.742188 C 111.785156 280.578125 107.535156 280.578125 107.535156 277.742188 C 107.535156 274.910156 111.785156 274.910156 111.785156 277.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.847656 277.742188 C 107.847656 280.578125 103.59375 280.578125 103.59375 277.742188 C 103.59375 274.910156 107.847656 274.910156 107.847656 277.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.769531 277.742188 C 90.769531 280.578125 86.515625 280.578125 86.515625 277.742188 C 86.515625 274.910156 90.769531 274.910156 90.769531 277.742188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.632812 309.714844 C 253.632812 312.550781 249.382812 312.550781 249.382812 309.714844 C 249.382812 306.882812 253.632812 306.882812 253.632812 309.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.28125 309.714844 C 252.28125 312.550781 248.03125 312.550781 248.03125 309.714844 C 248.03125 306.882812 252.28125 306.882812 252.28125 309.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 130.070312 309.714844 C 130.070312 312.550781 125.816406 312.550781 125.816406 309.714844 C 125.816406 306.882812 130.070312 306.882812 130.070312 309.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.949219 309.714844 C 115.949219 312.550781 111.699219 312.550781 111.699219 309.714844 C 111.699219 306.882812 115.949219 306.882812 115.949219 309.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.085938 292.277344 C 253.085938 295.109375 248.832031 295.109375 248.832031 292.277344 C 248.832031 289.441406 253.085938 289.441406 253.085938 292.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.332031 292.277344 C 115.332031 295.109375 111.082031 295.109375 111.082031 292.277344 C 111.082031 289.441406 115.332031 289.441406 115.332031 292.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 200.851562 202.171875 C 200.851562 205.003906 196.597656 205.003906 196.597656 202.171875 C 196.597656 199.335938 200.851562 199.335938 200.851562 202.171875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.066406 202.171875 C 70.066406 205.003906 65.8125 205.003906 65.8125 202.171875 C 65.8125 199.335938 70.066406 199.335938 70.066406 202.171875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.785156 411.449219 C 232.785156 414.285156 228.535156 414.285156 228.535156 411.449219 C 228.535156 408.613281 232.785156 408.613281 232.785156 411.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.828125 411.449219 C 232.828125 414.285156 228.578125 414.285156 228.578125 411.449219 C 228.578125 408.613281 232.828125 408.613281 232.828125 411.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.921875 411.449219 C 96.921875 414.285156 92.667969 414.285156 92.667969 411.449219 C 92.667969 408.613281 96.921875 408.613281 96.921875 411.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.316406 411.449219 C 71.316406 414.285156 67.0625 414.285156 67.0625 411.449219 C 67.0625 408.613281 71.316406 408.613281 71.316406 411.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.542969 327.15625 C 226.542969 329.992188 222.292969 329.992188 222.292969 327.15625 C 222.292969 324.320312 226.542969 324.320312 226.542969 327.15625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.535156 327.15625 C 86.535156 329.992188 82.28125 329.992188 82.28125 327.15625 C 82.28125 324.320312 86.535156 324.320312 86.535156 327.15625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.214844 446.328125 C 216.214844 449.164062 211.964844 449.164062 211.964844 446.328125 C 211.964844 443.496094 216.214844 443.496094 216.214844 446.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.097656 446.328125 C 83.097656 449.164062 78.847656 449.164062 78.847656 446.328125 C 78.847656 443.496094 83.097656 443.496094 83.097656 446.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.8125 88.808594 C 229.8125 91.644531 225.5625 91.644531 225.5625 88.808594 C 225.5625 85.976562 229.8125 85.976562 229.8125 88.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.082031 88.808594 C 91.082031 91.644531 86.832031 91.644531 86.832031 88.808594 C 86.832031 85.976562 91.082031 85.976562 91.082031 88.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 196.660156 82.996094 C 196.660156 85.832031 192.40625 85.832031 192.40625 82.996094 C 192.40625 80.164062 196.660156 80.164062 196.660156 82.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 60.371094 82.996094 C 60.371094 85.832031 56.117188 85.832031 56.117188 82.996094 C 56.117188 80.164062 60.371094 80.164062 60.371094 82.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 205.078125 123.691406 C 205.078125 126.523438 200.824219 126.523438 200.824219 123.691406 C 200.824219 120.855469 205.078125 120.855469 205.078125 123.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.625 123.691406 C 70.625 126.523438 66.371094 126.523438 66.371094 123.691406 C 66.371094 120.855469 70.625 120.855469 70.625 123.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 250.160156 178.917969 C 250.160156 181.75 245.90625 181.75 245.90625 178.917969 C 245.90625 176.082031 250.160156 176.082031 250.160156 178.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.847656 178.917969 C 107.847656 181.75 103.59375 181.75 103.59375 178.917969 C 103.59375 176.082031 107.847656 176.082031 107.847656 178.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 195.109375 210.890625 C 195.109375 213.726562 190.855469 213.726562 190.855469 210.890625 C 190.855469 208.054688 195.109375 208.054688 195.109375 210.890625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 56.679688 210.890625 C 56.679688 213.726562 52.425781 213.726562 52.425781 210.890625 C 52.425781 208.054688 56.679688 208.054688 56.679688 210.890625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.546875 51.023438 C 224.546875 53.859375 220.296875 53.859375 220.296875 51.023438 C 220.296875 48.1875 224.546875 48.1875 224.546875 51.023438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.734375 51.023438 C 84.734375 53.859375 80.480469 53.859375 80.480469 51.023438 C 80.480469 48.1875 84.734375 48.1875 84.734375 51.023438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.253906 452.144531 C 228.253906 454.976562 224.003906 454.976562 224.003906 452.144531 C 224.003906 449.308594 228.253906 449.308594 228.253906 452.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 73.082031 452.144531 C 73.082031 454.976562 68.832031 454.976562 68.832031 452.144531 C 68.832031 449.308594 73.082031 449.308594 73.082031 452.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.945312 452.144531 C 71.945312 454.976562 67.691406 454.976562 67.691406 452.144531 C 67.691406 449.308594 71.945312 449.308594 71.945312 452.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.933594 184.730469 C 236.933594 187.566406 232.683594 187.566406 232.683594 184.730469 C 232.683594 181.894531 236.933594 181.894531 236.933594 184.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 97.949219 184.730469 C 97.949219 187.566406 93.699219 187.566406 93.699219 184.730469 C 93.699219 181.894531 97.949219 181.894531 97.949219 184.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 227.570312 353.316406 C 227.570312 356.152344 223.320312 356.152344 223.320312 353.316406 C 223.320312 350.480469 227.570312 350.480469 227.570312 353.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.84375 353.316406 C 94.84375 356.152344 90.59375 356.152344 90.59375 353.316406 C 90.59375 350.480469 94.84375 350.480469 94.84375 353.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.285156 425.984375 C 252.285156 428.816406 248.035156 428.816406 248.035156 425.984375 C 248.035156 423.148438 252.285156 423.148438 252.285156 425.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.949219 425.984375 C 115.949219 428.816406 111.699219 428.816406 111.699219 425.984375 C 111.699219 423.148438 115.949219 423.148438 115.949219 425.984375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 250.945312 135.316406 C 250.945312 138.152344 246.695312 138.152344 246.695312 135.316406 C 246.695312 132.480469 250.945312 132.480469 250.945312 135.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 135.316406 C 104.300781 138.152344 100.046875 138.152344 100.046875 135.316406 C 100.046875 132.480469 104.300781 132.480469 104.300781 135.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.8125 135.316406 C 96.8125 138.152344 92.5625 138.152344 92.5625 135.316406 C 92.5625 132.480469 96.8125 132.480469 96.8125 135.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.15625 350.410156 C 225.15625 353.246094 220.902344 353.246094 220.902344 350.410156 C 220.902344 347.574219 225.15625 347.574219 225.15625 350.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.703125 350.410156 C 86.703125 353.246094 82.449219 353.246094 82.449219 350.410156 C 82.449219 347.574219 86.703125 347.574219 86.703125 350.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 205.261719 338.78125 C 205.261719 341.617188 201.011719 341.617188 201.011719 338.78125 C 201.011719 335.949219 205.261719 335.949219 205.261719 338.78125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.410156 338.78125 C 68.410156 341.617188 64.160156 341.617188 64.160156 338.78125 C 64.160156 335.949219 68.410156 335.949219 68.410156 338.78125 "/>
+<g clip-path="url(#clip12)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 249.683594 16.144531 C 249.683594 18.980469 245.433594 18.980469 245.433594 16.144531 C 245.433594 13.308594 249.683594 13.308594 249.683594 16.144531 "/>
+</g>
+<g clip-path="url(#clip13)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 110.183594 16.144531 C 110.183594 18.980469 105.929688 18.980469 105.929688 16.144531 C 105.929688 13.308594 110.183594 13.308594 110.183594 16.144531 "/>
+</g>
+<g clip-path="url(#clip14)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.300781 16.144531 C 104.300781 18.980469 100.046875 18.980469 100.046875 16.144531 C 100.046875 13.308594 104.300781 13.308594 104.300781 16.144531 "/>
+</g>
+<g clip-path="url(#clip15)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.785156 16.144531 C 95.785156 18.980469 91.53125 18.980469 91.53125 16.144531 C 91.53125 13.308594 95.785156 13.308594 95.785156 16.144531 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 284.78125 27.769531 C 284.78125 30.605469 280.527344 30.605469 280.527344 27.769531 C 280.527344 24.9375 284.78125 24.9375 284.78125 27.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 146.550781 27.769531 C 146.550781 30.605469 142.300781 30.605469 142.300781 27.769531 C 142.300781 24.9375 146.550781 24.9375 146.550781 27.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 244.859375 379.476562 C 244.859375 382.3125 240.605469 382.3125 240.605469 379.476562 C 240.605469 376.640625 244.859375 376.640625 244.859375 379.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 129.167969 379.476562 C 129.167969 382.3125 124.917969 382.3125 124.917969 379.476562 C 124.917969 376.640625 129.167969 376.640625 129.167969 379.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 112.046875 379.476562 C 112.046875 382.3125 107.796875 382.3125 107.796875 379.476562 C 107.796875 376.640625 112.046875 376.640625 112.046875 379.476562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.910156 42.304688 C 238.910156 45.136719 234.660156 45.136719 234.660156 42.304688 C 234.660156 39.46875 238.910156 39.46875 238.910156 42.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 63 42.304688 C 63 45.136719 58.75 45.136719 58.75 42.304688 C 58.75 39.46875 63 39.46875 63 42.304688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 276.15625 283.554688 C 276.15625 286.390625 271.902344 286.390625 271.902344 283.554688 C 271.902344 280.722656 276.15625 280.722656 276.15625 283.554688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 141.476562 283.554688 C 141.476562 286.390625 137.222656 286.390625 137.222656 283.554688 C 137.222656 280.722656 141.476562 280.722656 141.476562 283.554688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.605469 289.371094 C 252.605469 292.203125 248.355469 292.203125 248.355469 289.371094 C 248.355469 286.535156 252.605469 286.535156 252.605469 289.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 87.632812 289.371094 C 87.632812 292.203125 83.378906 292.203125 83.378906 289.371094 C 83.378906 286.535156 87.632812 286.535156 87.632812 289.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 245.28125 330.0625 C 245.28125 332.898438 241.03125 332.898438 241.03125 330.0625 C 241.03125 327.226562 245.28125 327.226562 245.28125 330.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 106.710938 330.0625 C 106.710938 332.898438 102.457031 332.898438 102.457031 330.0625 C 102.457031 327.226562 106.710938 327.226562 106.710938 330.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.785156 330.0625 C 95.785156 332.898438 91.53125 332.898438 91.53125 330.0625 C 91.53125 327.226562 95.785156 327.226562 95.785156 330.0625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 255.527344 295.183594 C 255.527344 298.019531 251.277344 298.019531 251.277344 295.183594 C 251.277344 292.347656 255.527344 292.347656 255.527344 295.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 118.847656 295.183594 C 118.847656 298.019531 114.597656 298.019531 114.597656 295.183594 C 114.597656 292.347656 118.847656 292.347656 118.847656 295.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 230.714844 222.515625 C 230.714844 225.351562 226.460938 225.351562 226.460938 222.515625 C 226.460938 219.683594 230.714844 219.683594 230.714844 222.515625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.691406 222.515625 C 85.691406 225.351562 81.441406 225.351562 81.441406 222.515625 C 81.441406 219.683594 85.691406 219.683594 85.691406 222.515625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 206.394531 181.824219 C 206.394531 184.65625 202.144531 184.65625 202.144531 181.824219 C 202.144531 178.988281 206.394531 178.988281 206.394531 181.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 62.046875 181.824219 C 62.046875 184.65625 57.796875 184.65625 57.796875 181.824219 C 57.796875 178.988281 62.046875 178.988281 62.046875 181.824219 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.554688 469.765625 L 65.554688 465.511719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.554688 469.765625 L 119.554688 465.511719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.558594 469.765625 L 173.558594 465.511719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.558594 469.765625 L 227.558594 465.511719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.5625 469.765625 L 281.5625 465.511719 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="61.054688" y="478.919922"/>
+ <use xlink:href="#glyph0-2" x="64.249023" y="478.919922"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-3" x="116.554688" y="478.919922"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-2" x="170.558594" y="478.919922"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="222.058594" y="478.919922"/>
+ <use xlink:href="#glyph0-3" x="227.392578" y="478.919922"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-4" x="276.0625" y="478.919922"/>
+ <use xlink:href="#glyph0-2" x="281.396484" y="478.919922"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="133.035156" y="492.099609"/>
+ <use xlink:href="#glyph1-2" x="137.03125" y="492.099609"/>
+ <use xlink:href="#glyph1-3" x="139.695312" y="492.099609"/>
+ <use xlink:href="#glyph1-4" x="146.367188" y="492.099609"/>
+ <use xlink:href="#glyph1-5" x="153.039062" y="492.099609"/>
+ <use xlink:href="#glyph1-6" x="157.035156" y="492.099609"/>
+ <use xlink:href="#glyph1-7" x="163.707031" y="492.099609"/>
+ <use xlink:href="#glyph1-8" x="173.042969" y="492.099609"/>
+ <use xlink:href="#glyph1-9" x="181.046875" y="492.099609"/>
+ <use xlink:href="#glyph1-6" x="189.050781" y="492.099609"/>
+ <use xlink:href="#glyph1-10" x="195.722656" y="492.099609"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="19.701172" y="269.457031"/>
+ <use xlink:href="#glyph2-2" x="19.701172" y="260.792969"/>
+ <use xlink:href="#glyph2-3" x="19.701172" y="254.121094"/>
+ <use xlink:href="#glyph2-4" x="19.701172" y="244.125"/>
+ <use xlink:href="#glyph2-2" x="19.701172" y="237.453125"/>
+ <use xlink:href="#glyph2-5" x="19.701172" y="230.78125"/>
+ <use xlink:href="#glyph2-6" x="19.701172" y="224.109375"/>
+ <use xlink:href="#glyph2-7" x="19.701172" y="217.4375"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 312.621094 267.148438 L 478.566406 267.148438 L 478.566406 212.765625 L 312.621094 212.765625 Z M 312.621094 267.148438 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="316.875" y="223.286133"/>
+ <use xlink:href="#glyph3-2" x="322.736328" y="223.286133"/>
+ <use xlink:href="#glyph3-3" x="328.070312" y="223.286133"/>
+ <use xlink:href="#glyph3-2" x="331.264648" y="223.286133"/>
+ <use xlink:href="#glyph3-4" x="336.598633" y="223.286133"/>
+ <use xlink:href="#glyph3-5" x="341.932617" y="223.286133"/>
+ <use xlink:href="#glyph3-3" x="347.266602" y="223.286133"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.875 245.617188 L 334.15625 245.617188 L 334.15625 228.335938 L 316.875 228.335938 Z M 316.875 245.617188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 327.640625 236.976562 C 327.640625 239.8125 323.386719 239.8125 323.386719 236.976562 C 323.386719 234.140625 327.640625 234.140625 327.640625 236.976562 "/>
+<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.875 262.898438 L 334.15625 262.898438 L 334.15625 245.617188 L 316.875 245.617188 Z M 316.875 262.898438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 327.640625 254.257812 C 327.640625 257.089844 323.386719 257.089844 323.386719 254.257812 C 323.386719 251.421875 327.640625 251.421875 327.640625 254.257812 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-5" x="336.3125" y="239.794922"/>
+ <use xlink:href="#glyph0-6" x="341.646484" y="239.794922"/>
+ <use xlink:href="#glyph0-7" x="349.110352" y="239.794922"/>
+ <use xlink:href="#glyph0-8" x="355.509766" y="239.794922"/>
+ <use xlink:href="#glyph0-5" x="361.90918" y="239.794922"/>
+ <use xlink:href="#glyph0-9" x="367.243164" y="239.794922"/>
+ <use xlink:href="#glyph0-10" x="372.577148" y="239.794922"/>
+ <use xlink:href="#glyph0-10" x="380.568359" y="239.794922"/>
+ <use xlink:href="#glyph0-11" x="388.55957" y="239.794922"/>
+ <use xlink:href="#glyph0-12" x="393.893555" y="239.794922"/>
+ <use xlink:href="#glyph0-9" x="396.023438" y="239.794922"/>
+ <use xlink:href="#glyph0-13" x="401.357422" y="239.794922"/>
+ <use xlink:href="#glyph0-11" x="406.154297" y="239.794922"/>
+ <use xlink:href="#glyph0-14" x="411.488281" y="239.794922"/>
+ <use xlink:href="#glyph0-14" x="414.682617" y="239.794922"/>
+ <use xlink:href="#glyph0-15" x="417.876953" y="239.794922"/>
+ <use xlink:href="#glyph0-13" x="423.210938" y="239.794922"/>
+ <use xlink:href="#glyph0-16" x="428.007812" y="239.794922"/>
+ <use xlink:href="#glyph0-15" x="430.674805" y="239.794922"/>
+ <use xlink:href="#glyph0-17" x="436.008789" y="239.794922"/>
+ <use xlink:href="#glyph0-9" x="441.342773" y="239.794922"/>
+ <use xlink:href="#glyph0-18" x="446.676758" y="239.794922"/>
+ <use xlink:href="#glyph0-10" x="451.473633" y="239.794922"/>
+ <use xlink:href="#glyph0-19" x="459.464844" y="239.794922"/>
+ <use xlink:href="#glyph0-12" x="461.594727" y="239.794922"/>
+ <use xlink:href="#glyph0-15" x="463.724609" y="239.794922"/>
+ <use xlink:href="#glyph0-18" x="469.058594" y="239.794922"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-18" x="336.3125" y="257.076172"/>
+ <use xlink:href="#glyph0-20" x="341.109375" y="257.076172"/>
+ <use xlink:href="#glyph0-19" x="348.036133" y="257.076172"/>
+ <use xlink:href="#glyph0-18" x="350.166016" y="257.076172"/>
+ <use xlink:href="#glyph0-18" x="354.962891" y="257.076172"/>
+ <use xlink:href="#glyph0-21" x="359.759766" y="257.076172"/>
+ <use xlink:href="#glyph0-22" x="366.686523" y="257.076172"/>
+ <use xlink:href="#glyph0-16" x="372.020508" y="257.076172"/>
+ <use xlink:href="#glyph0-9" x="374.6875" y="257.076172"/>
+ <use xlink:href="#glyph0-13" x="380.021484" y="257.076172"/>
+ <use xlink:href="#glyph0-23" x="384.818359" y="257.076172"/>
+ <use xlink:href="#glyph0-14" x="390.152344" y="257.076172"/>
+ <use xlink:href="#glyph0-11" x="393.34668" y="257.076172"/>
+ <use xlink:href="#glyph0-24" x="398.680664" y="257.076172"/>
+ <use xlink:href="#glyph0-9" x="404.014648" y="257.076172"/>
+ <use xlink:href="#glyph0-5" x="409.348633" y="257.076172"/>
+ <use xlink:href="#glyph0-6" x="414.682617" y="257.076172"/>
+ <use xlink:href="#glyph0-7" x="422.146484" y="257.076172"/>
+ <use xlink:href="#glyph0-8" x="428.545898" y="257.076172"/>
+ <use xlink:href="#glyph0-5" x="434.945312" y="257.076172"/>
+</g>
+</g>
+</svg>
diff --git a/loael-variability.rb b/loael-variability.rb
new file mode 100644
index 0000000..99e6c34
--- /dev/null
+++ b/loael-variability.rb
@@ -0,0 +1,89 @@
+require_relative '../lazar/lib/lazar'
+include OpenTox
+#$mongo.database.drop
+#$gridfs = $mongo.database.fs # recreate GridFS indexes
+# compare duplicates within datasets
+old = Dataset.from_csv_file File.join(File.dirname(__FILE__),"regression","LOAEL_mmol_corrected_smiles.csv")
+new = Dataset.from_csv_file File.join(File.dirname(__FILE__),"regression","swissRat_chron_LOAEL.csv")
+combined = Dataset.from_csv_file File.join(File.dirname(__FILE__),"regression","LOAEL-rat-combined.csv")
+
+compound_vector = []
+value_vector = []
+dataset_vector = []
+
+vars = []
+
+[old, new].each do |dataset|
+ vars << []
+ #vars[dataset.name] = []
+ p dataset.name
+ p dataset.compounds.size
+ p dataset.duplicates(dataset.features.first).size
+ dataset.duplicates.each do |cid,values|
+ R.assign "values", values
+ var = R.eval("var(-log(values))").to_f
+ vars.last << var
+ #smi = Compound.find(cid).smiles
+ smi = cid.to_s
+ values.each do |val|
+ compound_vector << smi
+ value_vector << - Math.log(val)
+ dataset_vector << dataset.name
+ end
+ #vars << { :var => var, :values => values, :smiles => smi }
+ end
+ #vars.sort!{|a,b| a[:var] <=> b[:var]}
+ #vars.each do |dup|
+ #dup[:values].each do |v|
+ #compound_vector << dup[:smiles]
+ #value_vector << v
+ #end
+ #end
+end
+#p vars
+# TODO statistical test for variances
+R.assign "vars1", vars[0]
+R.assign "vars2", vars[1]
+print "p-value: #{R.eval("t.test(vars1,vars2)$p.value").to_f}"
+
+R.assign "smi", compound_vector
+R.assign "values", value_vector
+R.assign "dataset", dataset_vector
+R.eval "df <- data.frame(factor(smi),values,factor(dataset))"
+R.eval "img <- ggplot(df, aes(smi,values,ymin = min(values), ymax=max(values),color=dataset))"
+R.eval "img <- img + scale_x_discrete(breaks=NULL) + geom_point() + coord_flip()"# + xlab('-log(LOAEL)'), ylab('Compound')"
+R.eval "ggsave(file='/home/ch/opentox/lazar-nestec-data/loael_variance.svg', plot=img)"
+#R.eval "print(img)"
+#R.eval "write.csv(df,'/home/ch/opentox/lazar-nestec-data/loael.csv')"
+#`inkview /home/ch/opentox/lazar-nestec-data/loael_variance.svg`
+#R.eval "ggsave(file='test.svg', plot=img)"
+=begin
+# compare datasets
+# compare combined datasets
+file = File.join(File.dirname(__FILE__),"regression","LOAEL-rat-combined.csv")
+d = Dataset.from_csv_file file
+replicates = []
+compounds = d.compound_ids.uniq
+sds = []
+compounds.each do |cid|
+ compound_idxs = d.compound_ids.each_index.select{|i| d.compound_ids[i] == cid}
+ if compound_idxs.size > 1
+ vals = compound_idxs.collect{|i| d.data_entries[i].first }
+ R.assign "values", vals
+ #sd = R.eval("sd(-log(values))").to_f
+ sd = R.eval("var(values)").to_f
+ sds << { :sd => sd, :values => vals, :smiles => Compound.find(cid).smiles }
+ #replicates << compound_idxs.collect{|i| d.data_entries[i].first }
+ #replicates[Compound.find(cid).smiles] = compound_idxs.collect{|i| d.data_entries[i].first }
+ end
+end
+p sds.sort{|a,b| a[:sd] <=> b[:sd]}
+#R.assign "replicates", replicates
+#R.assign "compounds", compounds.collect{|id| Compound.find id }
+#R.eval "df = data.frame(compounds,replicates)"
+#library(ggplot2)
+#qplot(compounds, replicates, data=df, geom="boxplot")
+#p replicates.to_json
+#p replicates.size
+# http://www.unc.edu/courses/2008spring/psyc/270/001/variance.html
+=end
diff --git a/loael_variance.svg b/loael_variance.svg
new file mode 100644
index 0000000..8dd54db
--- /dev/null
+++ b/loael_variance.svg
@@ -0,0 +1,698 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="503pt" height="503pt" viewBox="0 0 503 503" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 2.640625 -6.796875 C 2 -6.796875 1.421875 -6.53125 1.078125 -6.046875 C 0.640625 -5.453125 0.40625 -4.546875 0.40625 -3.296875 C 0.40625 -0.984375 1.1875 0.21875 2.640625 0.21875 C 4.078125 0.21875 4.859375 -1 4.859375 -3.234375 C 4.859375 -4.5625 4.65625 -5.4375 4.203125 -6.046875 C 3.84375 -6.53125 3.28125 -6.796875 2.640625 -6.796875 Z M 2.640625 -6.046875 C 3.546875 -6.046875 4 -5.140625 4 -3.3125 C 4 -1.375 3.5625 -0.484375 2.625 -0.484375 C 1.734375 -0.484375 1.28125 -1.421875 1.28125 -3.28125 C 1.28125 -5.140625 1.734375 -6.046875 2.640625 -6.046875 Z M 2.640625 -6.046875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 2.484375 -4.84375 L 2.484375 0 L 3.328125 0 L 3.328125 -6.796875 L 2.765625 -6.796875 C 2.46875 -5.75 2.28125 -5.609375 0.984375 -5.453125 L 0.984375 -4.84375 Z M 2.484375 -4.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 1.65625 -7 L 0.765625 -7 L 0.765625 0 L 5.109375 0 L 5.109375 -0.78125 L 1.65625 -0.78125 Z M 1.65625 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 3.734375 -7.109375 C 1.734375 -7.109375 0.359375 -5.625 0.359375 -3.4375 C 0.359375 -1.25 1.71875 0.21875 3.734375 0.21875 C 4.59375 0.21875 5.34375 -0.03125 5.90625 -0.515625 C 6.671875 -1.15625 7.125 -2.25 7.125 -3.390625 C 7.125 -5.640625 5.78125 -7.109375 3.734375 -7.109375 Z M 3.734375 -6.328125 C 5.25 -6.328125 6.21875 -5.1875 6.21875 -3.40625 C 6.21875 -1.71875 5.21875 -0.5625 3.734375 -0.5625 C 2.25 -0.5625 1.25 -1.71875 1.25 -3.4375 C 1.25 -5.171875 2.25 -6.328125 3.734375 -6.328125 Z M 3.734375 -6.328125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 4.546875 -2.09375 L 5.265625 0 L 6.265625 0 L 3.8125 -7 L 2.65625 -7 L 0.15625 0 L 1.109375 0 L 1.859375 -2.09375 Z M 4.296875 -2.84375 L 2.078125 -2.84375 L 3.21875 -6.03125 Z M 4.296875 -2.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 1.75 -3.1875 L 5.5625 -3.1875 L 5.5625 -3.96875 L 1.75 -3.96875 L 1.75 -6.203125 L 5.703125 -6.203125 L 5.703125 -7 L 0.859375 -7 L 0.859375 0 L 5.875 0 L 5.875 -0.78125 L 1.75 -0.78125 Z M 1.75 -3.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 5.546875 1.203125 L -0.21875 1.203125 L -0.21875 1.6875 L 5.546875 1.6875 Z M 5.546875 1.203125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 0.671875 -5.03125 L 0.671875 0 L 1.484375 0 L 1.484375 -3.15625 C 1.484375 -3.890625 2 -4.46875 2.65625 -4.46875 C 3.25 -4.46875 3.59375 -4.109375 3.59375 -3.46875 L 3.59375 0 L 4.390625 0 L 4.390625 -3.15625 C 4.390625 -3.890625 4.921875 -4.46875 5.578125 -4.46875 C 6.15625 -4.46875 6.5 -4.09375 6.5 -3.46875 L 6.5 0 L 7.3125 0 L 7.3125 -3.765625 C 7.3125 -4.671875 6.796875 -5.171875 5.859375 -5.171875 C 5.1875 -5.171875 4.78125 -4.96875 4.3125 -4.40625 C 4.015625 -4.9375 3.609375 -5.171875 2.953125 -5.171875 C 2.28125 -5.171875 1.828125 -4.921875 1.40625 -4.3125 L 1.40625 -5.03125 Z M 0.671875 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 2.609375 -5.171875 C 1.1875 -5.171875 0.34375 -4.15625 0.34375 -2.46875 C 0.34375 -0.78125 1.1875 0.21875 2.625 0.21875 C 4.03125 0.21875 4.890625 -0.78125 4.890625 -2.4375 C 4.890625 -4.1875 4.0625 -5.171875 2.609375 -5.171875 Z M 2.625 -4.4375 C 3.515625 -4.4375 4.0625 -3.6875 4.0625 -2.453125 C 4.0625 -1.25 3.5 -0.515625 2.625 -0.515625 C 1.734375 -0.515625 1.1875 -1.25 1.1875 -2.46875 C 1.1875 -3.6875 1.734375 -4.4375 2.625 -4.4375 Z M 2.625 -4.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 1.453125 -7 L 0.65625 -7 L 0.65625 0 L 1.453125 0 Z M 1.453125 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 4.515625 -3.34375 C 4.484375 -3.828125 4.375 -4.140625 4.1875 -4.421875 C 3.84375 -4.890625 3.234375 -5.171875 2.53125 -5.171875 C 1.171875 -5.171875 0.296875 -4.09375 0.296875 -2.421875 C 0.296875 -0.8125 1.15625 0.21875 2.515625 0.21875 C 3.71875 0.21875 4.484375 -0.5 4.578125 -1.734375 L 3.765625 -1.734375 C 3.640625 -0.921875 3.21875 -0.515625 2.546875 -0.515625 C 1.65625 -0.515625 1.125 -1.234375 1.125 -2.421875 C 1.125 -3.6875 1.65625 -4.4375 2.515625 -4.4375 C 3.1875 -4.4375 3.609375 -4.03125 3.71875 -3.34375 Z M 4.515625 -3.34375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 0.65625 -5.03125 L 0.65625 0 L 1.46875 0 L 1.46875 -2.609375 C 1.484375 -3.8125 1.96875 -4.359375 3.078125 -4.328125 L 3.078125 -5.140625 C 2.9375 -5.15625 2.875 -5.171875 2.765625 -5.171875 C 2.25 -5.171875 1.859375 -4.859375 1.40625 -4.109375 L 1.40625 -5.03125 Z M 0.65625 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 4.921875 -2.25 C 4.921875 -3.015625 4.859375 -3.46875 4.71875 -3.84375 C 4.390625 -4.671875 3.625 -5.171875 2.6875 -5.171875 C 1.28125 -5.171875 0.390625 -4.109375 0.390625 -2.453125 C 0.390625 -0.78125 1.25 0.21875 2.671875 0.21875 C 3.8125 0.21875 4.609375 -0.4375 4.8125 -1.53125 L 4.015625 -1.53125 C 3.796875 -0.859375 3.34375 -0.515625 2.703125 -0.515625 C 2.1875 -0.515625 1.75 -0.75 1.484375 -1.171875 C 1.296875 -1.453125 1.234375 -1.75 1.21875 -2.25 Z M 1.234375 -2.890625 C 1.3125 -3.828125 1.875 -4.4375 2.671875 -4.4375 C 3.484375 -4.4375 4.0625 -3.796875 4.0625 -2.890625 Z M 1.234375 -2.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 2.4375 -5.03125 L 1.609375 -5.03125 L 1.609375 -6.40625 L 0.8125 -6.40625 L 0.8125 -5.03125 L 0.140625 -5.03125 L 0.140625 -4.375 L 0.8125 -4.375 L 0.8125 -0.578125 C 0.8125 -0.0625 1.15625 0.21875 1.78125 0.21875 C 2 0.21875 2.171875 0.203125 2.4375 0.15625 L 2.4375 -0.515625 C 2.328125 -0.484375 2.21875 -0.484375 2.046875 -0.484375 C 1.703125 -0.484375 1.609375 -0.578125 1.609375 -0.9375 L 1.609375 -4.375 L 2.4375 -4.375 Z M 2.4375 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 4.75 -7 L 3.953125 -7 L 3.953125 -4.390625 C 3.609375 -4.90625 3.078125 -5.171875 2.40625 -5.171875 C 1.109375 -5.171875 0.25 -4.125 0.25 -2.515625 C 0.25 -0.828125 1.078125 0.21875 2.4375 0.21875 C 3.125 0.21875 3.609375 -0.03125 4.03125 -0.65625 L 4.03125 0 L 4.75 0 Z M 2.546875 -4.421875 C 3.40625 -4.421875 3.953125 -3.671875 3.953125 -2.453125 C 3.953125 -1.296875 3.390625 -0.53125 2.546875 -0.53125 C 1.671875 -0.53125 1.078125 -1.3125 1.078125 -2.46875 C 1.078125 -3.640625 1.671875 -4.421875 2.546875 -4.421875 Z M 2.546875 -4.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 4.203125 -3.625 C 4.1875 -4.609375 3.546875 -5.171875 2.375 -5.171875 C 1.203125 -5.171875 0.453125 -4.5625 0.453125 -3.640625 C 0.453125 -2.84375 0.859375 -2.46875 2.046875 -2.1875 L 2.796875 -2 C 3.34375 -1.875 3.5625 -1.671875 3.5625 -1.3125 C 3.5625 -0.828125 3.09375 -0.515625 2.390625 -0.515625 C 1.96875 -0.515625 1.609375 -0.640625 1.40625 -0.859375 C 1.28125 -1 1.21875 -1.140625 1.171875 -1.5 L 0.328125 -1.5 C 0.359375 -0.328125 1.015625 0.21875 2.328125 0.21875 C 3.59375 0.21875 4.40625 -0.40625 4.40625 -1.375 C 4.40625 -2.125 3.984375 -2.53125 2.984375 -2.765625 L 2.21875 -2.953125 C 1.5625 -3.109375 1.28125 -3.3125 1.28125 -3.671875 C 1.28125 -4.140625 1.703125 -4.4375 2.34375 -4.4375 C 3 -4.4375 3.34375 -4.15625 3.359375 -3.625 Z M 4.203125 -3.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 1.4375 -5.03125 L 0.640625 -5.03125 L 0.640625 0 L 1.4375 0 Z M 1.4375 -7 L 0.640625 -7 L 0.640625 -5.984375 L 1.4375 -5.984375 Z M 1.4375 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 5.3125 0 L 6.796875 -5.03125 L 5.890625 -5.03125 L 4.890625 -1.109375 L 3.90625 -5.03125 L 2.921875 -5.03125 L 1.96875 -1.109375 L 0.9375 -5.03125 L 0.0625 -5.03125 L 1.515625 0 L 2.421875 0 L 3.390625 -3.9375 L 4.40625 0 Z M 5.3125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 1.78125 -3.015625 L 4.09375 -3.015625 C 4.890625 -3.015625 5.234375 -2.625 5.234375 -1.765625 L 5.234375 -1.140625 C 5.234375 -0.703125 5.3125 -0.28125 5.4375 0 L 6.515625 0 L 6.515625 -0.21875 C 6.171875 -0.453125 6.109375 -0.703125 6.09375 -1.625 C 6.078125 -2.78125 5.90625 -3.125 5.140625 -3.453125 C 5.921875 -3.84375 6.25 -4.3125 6.25 -5.125 C 6.25 -6.328125 5.5 -7 4.109375 -7 L 0.890625 -7 L 0.890625 0 L 1.78125 0 Z M 1.78125 -3.796875 L 1.78125 -6.203125 L 3.9375 -6.203125 C 4.4375 -6.203125 4.734375 -6.125 4.953125 -5.9375 C 5.1875 -5.734375 5.3125 -5.421875 5.3125 -5.015625 C 5.3125 -4.171875 4.890625 -3.796875 3.9375 -3.796875 Z M 1.78125 -3.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 5.125 -0.46875 C 5.046875 -0.453125 5.015625 -0.453125 4.953125 -0.453125 C 4.6875 -0.453125 4.53125 -0.59375 4.53125 -0.84375 L 4.53125 -3.796875 C 4.53125 -4.6875 3.875 -5.171875 2.640625 -5.171875 C 1.90625 -5.171875 1.3125 -4.953125 0.96875 -4.578125 C 0.734375 -4.328125 0.640625 -4.03125 0.625 -3.546875 L 1.421875 -3.546875 C 1.5 -4.15625 1.859375 -4.4375 2.609375 -4.4375 C 3.34375 -4.4375 3.734375 -4.15625 3.734375 -3.6875 L 3.734375 -3.46875 C 3.71875 -3.125 3.546875 -3 2.890625 -2.921875 C 1.765625 -2.765625 1.59375 -2.734375 1.28125 -2.609375 C 0.703125 -2.359375 0.40625 -1.921875 0.40625 -1.265625 C 0.40625 -0.359375 1.03125 0.21875 2.046875 0.21875 C 2.6875 0.21875 3.1875 0 3.765625 -0.515625 C 3.8125 0 4.0625 0.21875 4.578125 0.21875 C 4.765625 0.21875 4.859375 0.203125 5.125 0.140625 Z M 3.734375 -1.578125 C 3.734375 -1.3125 3.65625 -1.15625 3.421875 -0.9375 C 3.09375 -0.640625 2.703125 -0.484375 2.21875 -0.484375 C 1.609375 -0.484375 1.234375 -0.78125 1.234375 -1.28125 C 1.234375 -1.8125 1.578125 -2.078125 2.453125 -2.203125 C 3.296875 -2.328125 3.46875 -2.359375 3.734375 -2.484375 Z M 3.734375 -1.578125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 0.671875 -7 L 0.671875 0 L 1.46875 0 L 1.46875 -2.765625 C 1.46875 -3.796875 2 -4.46875 2.828125 -4.46875 C 3.09375 -4.46875 3.34375 -4.390625 3.546875 -4.25 C 3.765625 -4.078125 3.859375 -3.84375 3.859375 -3.484375 L 3.859375 0 L 4.65625 0 L 4.65625 -3.796875 C 4.65625 -4.640625 4.0625 -5.171875 3.078125 -5.171875 C 2.375 -5.171875 1.9375 -4.953125 1.46875 -4.34375 L 1.46875 -7 Z M 0.671875 -7 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 0.671875 -5.03125 L 0.671875 0 L 1.484375 0 L 1.484375 -2.765625 C 1.484375 -3.796875 2.015625 -4.46875 2.84375 -4.46875 C 3.46875 -4.46875 3.875 -4.09375 3.875 -3.484375 L 3.875 0 L 4.671875 0 L 4.671875 -3.796875 C 4.671875 -4.640625 4.046875 -5.171875 3.078125 -5.171875 C 2.328125 -5.171875 1.859375 -4.890625 1.40625 -4.1875 L 1.40625 -5.03125 Z M 0.671875 -5.03125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 3.421875 0 L 5.828125 -6.28125 L 4.703125 -6.28125 L 2.921875 -1.1875 L 1.25 -6.28125 L 0.125 -6.28125 L 2.328125 0 Z M 3.421875 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 6.421875 -0.59375 C 6.3125 -0.5625 6.265625 -0.5625 6.203125 -0.5625 C 5.859375 -0.5625 5.65625 -0.75 5.65625 -1.0625 L 5.65625 -4.75 C 5.65625 -5.875 4.84375 -6.46875 3.296875 -6.46875 C 2.375 -6.46875 1.640625 -6.203125 1.21875 -5.734375 C 0.921875 -5.40625 0.796875 -5.046875 0.78125 -4.421875 L 1.78125 -4.421875 C 1.875 -5.203125 2.328125 -5.546875 3.265625 -5.546875 C 4.171875 -5.546875 4.671875 -5.203125 4.671875 -4.609375 L 4.671875 -4.34375 C 4.65625 -3.90625 4.4375 -3.75 3.625 -3.640625 C 2.203125 -3.46875 1.984375 -3.421875 1.609375 -3.265625 C 0.875 -2.953125 0.5 -2.40625 0.5 -1.578125 C 0.5 -0.4375 1.296875 0.28125 2.5625 0.28125 C 3.359375 0.28125 4 0 4.703125 -0.640625 C 4.78125 0 5.09375 0.28125 5.734375 0.28125 C 5.953125 0.28125 6.078125 0.25 6.421875 0.171875 Z M 4.671875 -1.984375 C 4.671875 -1.640625 4.578125 -1.4375 4.265625 -1.15625 C 3.859375 -0.796875 3.375 -0.59375 2.78125 -0.59375 C 2 -0.59375 1.546875 -0.96875 1.546875 -1.609375 C 1.546875 -2.265625 1.984375 -2.609375 3.0625 -2.765625 C 4.125 -2.90625 4.328125 -2.953125 4.671875 -3.109375 Z M 4.671875 -1.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 1.828125 -8.75 L 0.8125 -8.75 L 0.8125 0 L 1.828125 0 Z M 1.828125 -8.75 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-4">
+<path style="stroke:none;" d="M 5.78125 0 L 5.78125 -6.28125 L 4.78125 -6.28125 L 4.78125 -2.71875 C 4.78125 -1.4375 4.109375 -0.59375 3.078125 -0.59375 C 2.28125 -0.59375 1.78125 -1.078125 1.78125 -1.84375 L 1.78125 -6.28125 L 0.78125 -6.28125 L 0.78125 -1.4375 C 0.78125 -0.390625 1.5625 0.28125 2.78125 0.28125 C 3.703125 0.28125 4.296875 -0.046875 4.890625 -0.875 L 4.890625 0 Z M 5.78125 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-5">
+<path style="stroke:none;" d="M 6.15625 -2.8125 C 6.15625 -3.765625 6.078125 -4.34375 5.90625 -4.8125 C 5.5 -5.84375 4.53125 -6.46875 3.359375 -6.46875 C 1.609375 -6.46875 0.484375 -5.140625 0.484375 -3.0625 C 0.484375 -0.984375 1.5625 0.28125 3.34375 0.28125 C 4.78125 0.28125 5.765625 -0.546875 6.03125 -1.90625 L 5.015625 -1.90625 C 4.734375 -1.078125 4.171875 -0.640625 3.375 -0.640625 C 2.734375 -0.640625 2.203125 -0.9375 1.859375 -1.46875 C 1.625 -1.828125 1.53125 -2.1875 1.53125 -2.8125 Z M 1.546875 -3.625 C 1.625 -4.78125 2.34375 -5.546875 3.34375 -5.546875 C 4.375 -5.546875 5.078125 -4.75 5.078125 -3.625 Z M 1.546875 -3.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-6">
+<path style="stroke:none;" d="M 5.25 -4.53125 C 5.25 -5.765625 4.421875 -6.46875 2.96875 -6.46875 C 1.515625 -6.46875 0.5625 -5.71875 0.5625 -4.546875 C 0.5625 -3.5625 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.46875 -2.09375 4.46875 -1.640625 C 4.46875 -1.046875 3.875 -0.640625 3 -0.640625 C 2.453125 -0.640625 2 -0.796875 1.75 -1.0625 C 1.59375 -1.25 1.53125 -1.421875 1.46875 -1.875 L 0.40625 -1.875 C 0.453125 -0.421875 1.265625 0.28125 2.921875 0.28125 C 4.5 0.28125 5.515625 -0.5 5.515625 -1.71875 C 5.515625 -2.65625 4.984375 -3.171875 3.734375 -3.46875 L 2.765625 -3.703125 C 1.953125 -3.890625 1.609375 -4.15625 1.609375 -4.59375 C 1.609375 -5.1875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.171875 -5.203125 4.203125 -4.53125 Z M 5.25 -4.53125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M -4.53125 -5.25 C -5.765625 -5.25 -6.46875 -4.421875 -6.46875 -2.96875 C -6.46875 -1.515625 -5.71875 -0.5625 -4.546875 -0.5625 C -3.5625 -0.5625 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.09375 -4.46875 -1.640625 -4.46875 C -1.046875 -4.46875 -0.640625 -3.875 -0.640625 -3 C -0.640625 -2.453125 -0.796875 -2 -1.0625 -1.75 C -1.25 -1.59375 -1.421875 -1.53125 -1.875 -1.46875 L -1.875 -0.40625 C -0.421875 -0.453125 0.28125 -1.265625 0.28125 -2.921875 C 0.28125 -4.5 -0.5 -5.515625 -1.71875 -5.515625 C -2.65625 -5.515625 -3.171875 -4.984375 -3.46875 -3.734375 L -3.703125 -2.765625 C -3.890625 -1.953125 -4.15625 -1.609375 -4.59375 -1.609375 C -5.1875 -1.609375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.203125 -4.171875 -4.53125 -4.203125 Z M -4.53125 -5.25 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-2">
+<path style="stroke:none;" d="M -6.28125 -0.84375 L 0 -0.84375 L 0 -1.84375 L -3.953125 -1.84375 C -4.859375 -1.84375 -5.59375 -2.515625 -5.59375 -3.328125 C -5.59375 -4.0625 -5.140625 -4.484375 -4.328125 -4.484375 L 0 -4.484375 L 0 -5.5 L -3.953125 -5.5 C -4.859375 -5.5 -5.59375 -6.15625 -5.59375 -6.96875 C -5.59375 -7.703125 -5.125 -8.140625 -4.328125 -8.140625 L 0 -8.140625 L 0 -9.140625 L -4.71875 -9.140625 C -5.84375 -9.140625 -6.46875 -8.5 -6.46875 -7.3125 C -6.46875 -6.484375 -6.21875 -5.96875 -5.515625 -5.390625 C -6.1875 -5.015625 -6.46875 -4.515625 -6.46875 -3.703125 C -6.46875 -2.859375 -6.15625 -2.296875 -5.40625 -1.765625 L -6.28125 -1.765625 Z M -6.28125 -0.84375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-3">
+<path style="stroke:none;" d="M -6.28125 -1.796875 L -6.28125 -0.796875 L 0 -0.796875 L 0 -1.796875 Z M -8.75 -1.796875 L -8.75 -0.796875 L -7.484375 -0.796875 L -7.484375 -1.796875 Z M -8.75 -1.796875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 3.890625 0 L 5.234375 0 L 5.234375 -7 L 3.890625 -7 L 3.890625 -4.515625 C 3.546875 -5.03125 3.109375 -5.265625 2.453125 -5.265625 C 1.21875 -5.265625 0.28125 -4.078125 0.28125 -2.515625 C 0.28125 -1.8125 0.484375 -1.109375 0.828125 -0.609375 C 1.1875 -0.09375 1.828125 0.21875 2.453125 0.21875 C 3.109375 0.21875 3.546875 -0.015625 3.890625 -0.53125 Z M 2.75 -4.140625 C 3.4375 -4.140625 3.890625 -3.484375 3.890625 -2.5 C 3.890625 -1.546875 3.421875 -0.90625 2.75 -0.90625 C 2.078125 -0.90625 1.625 -1.5625 1.625 -2.515625 C 1.625 -3.484375 2.078125 -4.140625 2.75 -4.140625 Z M 2.75 -4.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 5.03125 -0.15625 C 4.796875 -0.390625 4.71875 -0.53125 4.71875 -0.796875 L 4.71875 -3.671875 C 4.71875 -4.734375 4 -5.265625 2.59375 -5.265625 C 1.203125 -5.265625 0.46875 -4.671875 0.390625 -3.46875 L 1.671875 -3.46875 C 1.75 -4.015625 1.96875 -4.1875 2.625 -4.1875 C 3.140625 -4.1875 3.40625 -4.015625 3.40625 -3.671875 C 3.40625 -3.484375 3.3125 -3.34375 3.171875 -3.265625 C 3 -3.171875 3 -3.171875 2.328125 -3.0625 L 1.796875 -2.96875 C 0.765625 -2.796875 0.265625 -2.265625 0.265625 -1.328125 C 0.265625 -0.40625 0.890625 0.21875 1.84375 0.21875 C 2.421875 0.21875 2.9375 -0.015625 3.421875 -0.515625 C 3.421875 -0.25 3.4375 -0.15625 3.5625 0 L 5.03125 0 Z M 3.40625 -2.078125 C 3.40625 -1.3125 3.015625 -0.859375 2.34375 -0.859375 C 1.890625 -0.859375 1.609375 -1.109375 1.609375 -1.484375 C 1.609375 -1.890625 1.828125 -2.078125 2.375 -2.203125 L 2.84375 -2.28125 C 3.1875 -2.34375 3.25 -2.375 3.40625 -2.453125 Z M 3.40625 -2.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 2.890625 -5.078125 L 2.140625 -5.078125 L 2.140625 -6.46875 L 0.796875 -6.46875 L 0.796875 -5.078125 L 0.140625 -5.078125 L 0.140625 -4.1875 L 0.796875 -4.1875 L 0.796875 -1 C 0.796875 -0.1875 1.234375 0.21875 2.109375 0.21875 C 2.421875 0.21875 2.640625 0.1875 2.890625 0.109375 L 2.890625 -0.828125 C 2.75 -0.8125 2.6875 -0.796875 2.578125 -0.796875 C 2.21875 -0.796875 2.140625 -0.90625 2.140625 -1.359375 L 2.140625 -4.1875 L 2.890625 -4.1875 Z M 2.890625 -5.078125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 4.84375 -3.515625 C 4.828125 -4.609375 3.984375 -5.265625 2.59375 -5.265625 C 1.28125 -5.265625 0.453125 -4.609375 0.453125 -3.546875 C 0.453125 -3.1875 0.5625 -2.890625 0.75 -2.703125 C 0.9375 -2.515625 1.09375 -2.421875 1.59375 -2.265625 L 3.1875 -1.765625 C 3.53125 -1.65625 3.640625 -1.546875 3.640625 -1.34375 C 3.640625 -1.03125 3.265625 -0.828125 2.640625 -0.828125 C 2.296875 -0.828125 2.03125 -0.890625 1.859375 -1.015625 C 1.703125 -1.125 1.65625 -1.234375 1.59375 -1.5 L 0.28125 -1.5 C 0.3125 -0.359375 1.15625 0.21875 2.71875 0.21875 C 3.4375 0.21875 3.984375 0.0625 4.375 -0.234375 C 4.765625 -0.546875 4.984375 -1.03125 4.984375 -1.53125 C 4.984375 -2.203125 4.65625 -2.640625 3.96875 -2.84375 L 2.28125 -3.328125 C 1.90625 -3.4375 1.796875 -3.515625 1.796875 -3.734375 C 1.796875 -4.015625 2.109375 -4.21875 2.578125 -4.21875 C 3.21875 -4.21875 3.546875 -3.984375 3.546875 -3.515625 Z M 4.84375 -3.515625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 5.03125 -2.171875 C 5.03125 -2.28125 5.03125 -2.328125 5.03125 -2.390625 C 5.03125 -2.921875 4.953125 -3.390625 4.828125 -3.765625 C 4.484375 -4.703125 3.65625 -5.265625 2.609375 -5.265625 C 1.125 -5.265625 0.21875 -4.1875 0.21875 -2.453125 C 0.21875 -0.796875 1.109375 0.21875 2.578125 0.21875 C 3.734375 0.21875 4.6875 -0.4375 4.984375 -1.453125 L 3.65625 -1.453125 C 3.484375 -1.046875 3.125 -0.8125 2.625 -0.8125 C 2.25 -0.8125 1.9375 -0.96875 1.75 -1.25 C 1.625 -1.453125 1.578125 -1.671875 1.546875 -2.171875 Z M 1.578125 -3.0625 C 1.65625 -3.859375 2 -4.234375 2.59375 -4.234375 C 3.203125 -4.234375 3.5625 -3.828125 3.640625 -3.0625 Z M 1.578125 -3.0625 "/>
+</symbol>
+</g>
+<clipPath id="clip1">
+ <path d="M 30.488281 14.398438 L 303 14.398438 L 303 466 L 30.488281 466 Z M 30.488281 14.398438 "/>
+</clipPath>
+<clipPath id="clip2">
+ <path d="M 64 14.398438 L 66 14.398438 L 66 466 L 64 466 Z M 64 14.398438 "/>
+</clipPath>
+<clipPath id="clip3">
+ <path d="M 169 14.398438 L 170 14.398438 L 170 466 L 169 466 Z M 169 14.398438 "/>
+</clipPath>
+<clipPath id="clip4">
+ <path d="M 273 14.398438 L 275 14.398438 L 275 466 L 273 466 Z M 273 14.398438 "/>
+</clipPath>
+<clipPath id="clip5">
+ <path d="M 116 14.398438 L 118 14.398438 L 118 466.511719 L 116 466.511719 Z M 116 14.398438 "/>
+</clipPath>
+<clipPath id="clip6">
+ <path d="M 221 14.398438 L 223 14.398438 L 223 466.511719 L 221 466.511719 Z M 221 14.398438 "/>
+</clipPath>
+<clipPath id="clip7">
+ <path d="M 204 461 L 210 461 L 210 466.511719 L 204 466.511719 Z M 204 461 "/>
+</clipPath>
+<clipPath id="clip8">
+ <path d="M 207 461 L 212 461 L 212 466.511719 L 207 466.511719 Z M 207 461 "/>
+</clipPath>
+<clipPath id="clip9">
+ <path d="M 250 14.398438 L 256 14.398438 L 256 19 L 250 19 Z M 250 14.398438 "/>
+</clipPath>
+<clipPath id="clip10">
+ <path d="M 250 14.398438 L 255 14.398438 L 255 19 L 250 19 Z M 250 14.398438 "/>
+</clipPath>
+<clipPath id="clip11">
+ <path d="M 233 14.398438 L 238 14.398438 L 238 19 L 233 19 Z M 233 14.398438 "/>
+</clipPath>
+</defs>
+<g id="surface3">
+<rect x="0" y="0" width="503" height="503" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<rect x="0" y="0" width="503" height="503" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 503 L 503 503 L 503 0 L 0 0 Z M 0 503 "/>
+<g clip-path="url(#clip1)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(89.803922%,89.803922%,89.803922%);fill-opacity:1;" d="M 30.488281 465.511719 L 302.589844 465.511719 L 302.589844 14.398438 L 30.488281 14.398438 Z M 30.488281 465.511719 "/>
+</g>
+<g clip-path="url(#clip2)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 64.824219 465.511719 L 64.824219 14.398438 "/>
+</g>
+<g clip-path="url(#clip3)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.363281 465.511719 L 169.363281 14.398438 "/>
+</g>
+<g clip-path="url(#clip4)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:0.531496;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(94.901961%,94.901961%,94.901961%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.898438 465.511719 L 273.898438 14.398438 "/>
+</g>
+<g clip-path="url(#clip5)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.09375 465.511719 L 117.09375 14.398438 "/>
+</g>
+<g clip-path="url(#clip6)" clip-rule="nonzero">
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.632812 465.511719 L 221.632812 14.398438 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 161.617188 78.074219 C 161.617188 80.910156 157.367188 80.910156 157.367188 78.074219 C 157.367188 75.238281 161.617188 75.238281 161.617188 78.074219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 168.667969 78.074219 C 168.667969 80.910156 164.417969 80.910156 164.417969 78.074219 C 164.417969 75.238281 168.667969 75.238281 168.667969 78.074219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 177.355469 439.613281 C 177.355469 442.445312 173.105469 442.445312 173.105469 439.613281 C 173.105469 436.777344 177.355469 436.777344 177.355469 439.613281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 180.839844 439.613281 C 180.839844 442.445312 176.589844 442.445312 176.589844 439.613281 C 176.589844 436.777344 180.839844 436.777344 180.839844 439.613281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 177.359375 445.007812 C 177.359375 447.84375 173.105469 447.84375 173.105469 445.007812 C 173.105469 442.171875 177.359375 442.171875 177.359375 445.007812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 180.890625 445.007812 C 180.890625 447.84375 176.640625 447.84375 176.640625 445.007812 C 176.640625 442.171875 180.890625 442.171875 180.890625 445.007812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 176.867188 61.886719 C 176.867188 64.71875 172.617188 64.71875 172.617188 61.886719 C 172.617188 59.050781 176.867188 59.050781 176.867188 61.886719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 171.953125 61.886719 C 171.953125 64.71875 167.703125 64.71875 167.703125 61.886719 C 167.703125 59.050781 171.953125 59.050781 171.953125 61.886719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 155.128906 61.886719 C 155.128906 64.71875 150.878906 64.71875 150.878906 61.886719 C 150.878906 59.050781 155.128906 59.050781 155.128906 61.886719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 163.246094 61.886719 C 163.246094 64.71875 158.996094 64.71875 158.996094 61.886719 C 158.996094 59.050781 163.246094 59.050781 163.246094 61.886719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 162.375 61.886719 C 162.375 64.71875 158.125 64.71875 158.125 61.886719 C 158.125 59.050781 162.375 59.050781 162.375 61.886719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.171875 442.308594 C 208.171875 445.144531 203.917969 445.144531 203.917969 442.308594 C 203.917969 439.476562 208.171875 439.476562 208.171875 442.308594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 180.910156 442.308594 C 180.910156 445.144531 176.65625 445.144531 176.65625 442.308594 C 176.65625 439.476562 180.910156 439.476562 180.910156 442.308594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 177.363281 442.308594 C 177.363281 445.144531 173.113281 445.144531 173.113281 442.308594 C 173.113281 439.476562 177.363281 439.476562 177.363281 442.308594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.574219 261.542969 C 216.574219 264.375 212.320312 264.375 212.320312 261.542969 C 212.320312 258.707031 216.574219 258.707031 216.574219 261.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 267.292969 261.542969 C 267.292969 264.375 263.042969 264.375 263.042969 261.542969 C 263.042969 258.707031 267.292969 258.707031 267.292969 261.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.636719 180.601562 C 221.636719 183.433594 217.386719 183.433594 217.386719 180.601562 C 217.386719 177.765625 221.636719 177.765625 221.636719 180.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.359375 180.601562 C 222.359375 183.433594 218.105469 183.433594 218.105469 180.601562 C 218.105469 177.765625 222.359375 177.765625 222.359375 180.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 262.324219 150.921875 C 262.324219 153.753906 258.074219 153.753906 258.074219 150.921875 C 258.074219 148.085938 262.324219 148.085938 262.324219 150.921875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 243.167969 150.921875 C 243.167969 153.753906 238.914062 153.753906 238.914062 150.921875 C 238.914062 148.085938 243.167969 148.085938 243.167969 150.921875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 241.738281 150.921875 C 241.738281 153.753906 237.484375 153.753906 237.484375 150.921875 C 237.484375 148.085938 241.738281 148.085938 241.738281 150.921875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.1875 75.375 C 217.1875 78.210938 212.9375 78.210938 212.9375 75.375 C 212.9375 72.542969 217.1875 72.542969 217.1875 75.375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 201.328125 75.375 C 201.328125 78.210938 197.074219 78.210938 197.074219 75.375 C 197.074219 72.542969 201.328125 72.542969 201.328125 75.375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.664062 242.65625 C 226.664062 245.488281 222.414062 245.488281 222.414062 242.65625 C 222.414062 239.820312 226.664062 239.820312 226.664062 242.65625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.332031 242.65625 C 224.332031 245.488281 220.078125 245.488281 220.078125 242.65625 C 220.078125 239.820312 224.332031 239.820312 224.332031 242.65625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 218.164062 212.976562 C 218.164062 215.8125 213.910156 215.8125 213.910156 212.976562 C 213.910156 210.140625 218.164062 210.140625 218.164062 212.976562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.082031 212.976562 C 204.082031 215.8125 199.828125 215.8125 199.828125 212.976562 C 199.828125 210.140625 204.082031 210.140625 204.082031 212.976562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 268.003906 293.917969 C 268.003906 296.753906 263.753906 296.753906 263.753906 293.917969 C 263.753906 291.082031 268.003906 291.082031 268.003906 293.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 261.5625 293.917969 C 261.5625 296.753906 257.3125 296.753906 257.3125 293.917969 C 257.3125 291.082031 261.5625 291.082031 261.5625 293.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 235.585938 293.917969 C 235.585938 296.753906 231.335938 296.753906 231.335938 293.917969 C 231.335938 291.082031 235.585938 291.082031 235.585938 293.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 268.808594 293.917969 C 268.808594 296.753906 264.558594 296.753906 264.558594 293.917969 C 264.558594 291.082031 268.808594 291.082031 268.808594 293.917969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.386719 126.640625 C 223.386719 129.472656 219.136719 129.472656 219.136719 126.640625 C 219.136719 123.804688 223.386719 123.804688 223.386719 126.640625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.714844 126.640625 C 215.714844 129.472656 211.464844 129.472656 211.464844 126.640625 C 211.464844 123.804688 215.714844 123.804688 215.714844 126.640625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 255.375 323.597656 C 255.375 326.429688 251.125 326.429688 251.125 323.597656 C 251.125 320.761719 255.375 320.761719 255.375 323.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 247.496094 323.597656 C 247.496094 326.429688 243.246094 326.429688 243.246094 323.597656 C 243.246094 320.761719 247.496094 320.761719 247.496094 323.597656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 187.148438 177.902344 C 187.148438 180.734375 182.898438 180.734375 182.898438 177.902344 C 182.898438 175.066406 187.148438 175.066406 187.148438 177.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.046875 177.902344 C 228.046875 180.734375 223.792969 180.734375 223.792969 177.902344 C 223.792969 175.066406 228.046875 175.066406 228.046875 177.902344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.414062 34.90625 C 208.414062 37.738281 204.160156 37.738281 204.160156 34.90625 C 204.160156 32.070312 208.414062 32.070312 208.414062 34.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 202.414062 34.90625 C 202.414062 37.738281 198.164062 37.738281 198.164062 34.90625 C 198.164062 32.070312 202.414062 32.070312 202.414062 34.90625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 196.96875 256.144531 C 196.96875 258.980469 192.71875 258.980469 192.71875 256.144531 C 192.71875 253.308594 196.96875 253.308594 196.96875 256.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 196.445312 256.144531 C 196.445312 258.980469 192.191406 258.980469 192.191406 256.144531 C 192.191406 253.308594 196.445312 253.308594 196.445312 256.144531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 239.15625 161.714844 C 239.15625 164.546875 234.902344 164.546875 234.902344 161.714844 C 234.902344 158.878906 239.15625 158.878906 239.15625 161.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 239.859375 161.714844 C 239.859375 164.546875 235.609375 164.546875 235.609375 161.714844 C 235.609375 158.878906 239.859375 158.878906 239.859375 161.714844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.945312 64.582031 C 221.945312 67.417969 217.695312 67.417969 217.695312 64.582031 C 217.695312 61.75 221.945312 61.75 221.945312 64.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 243.683594 64.582031 C 243.683594 67.417969 239.433594 67.417969 239.433594 64.582031 C 239.433594 61.75 243.683594 61.75 243.683594 64.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 284.871094 272.332031 C 284.871094 275.167969 280.617188 275.167969 280.617188 272.332031 C 280.617188 269.5 284.871094 269.5 284.871094 272.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 275.292969 272.332031 C 275.292969 275.167969 271.039062 275.167969 271.039062 272.332031 C 271.039062 269.5 275.292969 269.5 275.292969 272.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 277.625 272.332031 C 277.625 275.167969 273.371094 275.167969 273.371094 272.332031 C 273.371094 269.5 277.625 269.5 277.625 272.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 268.046875 272.332031 C 268.046875 275.167969 263.792969 275.167969 263.792969 272.332031 C 263.792969 269.5 268.046875 269.5 268.046875 272.332031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.683594 48.394531 C 229.683594 51.230469 225.433594 51.230469 225.433594 48.394531 C 225.433594 45.5625 229.683594 45.5625 229.683594 48.394531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.949219 48.394531 C 229.949219 51.230469 225.699219 51.230469 225.699219 48.394531 C 225.699219 45.5625 229.949219 45.5625 229.949219 48.394531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 231.082031 48.394531 C 231.082031 51.230469 226.828125 51.230469 226.828125 48.394531 C 226.828125 45.5625 231.082031 45.5625 231.082031 48.394531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 262.738281 215.675781 C 262.738281 218.507812 258.484375 218.507812 258.484375 215.675781 C 258.484375 212.839844 262.738281 212.839844 262.738281 215.675781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 231.421875 215.675781 C 231.421875 218.507812 227.167969 218.507812 227.167969 215.675781 C 227.167969 212.839844 231.421875 212.839844 231.421875 215.675781 "/>
+<g clip-path="url(#clip7)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.175781 463.894531 C 209.175781 466.730469 204.921875 466.730469 204.921875 463.894531 C 204.921875 461.058594 209.175781 461.058594 209.175781 463.894531 "/>
+</g>
+<g clip-path="url(#clip8)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.421875 463.894531 C 211.421875 466.730469 207.171875 466.730469 207.171875 463.894531 C 207.171875 461.058594 211.421875 461.058594 211.421875 463.894531 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 251.65625 458.5 C 251.65625 461.332031 247.402344 461.332031 247.402344 458.5 C 247.402344 455.664062 251.65625 455.664062 251.65625 458.5 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 251.835938 458.5 C 251.835938 461.332031 247.585938 461.332031 247.585938 458.5 C 247.585938 455.664062 251.835938 455.664062 251.835938 458.5 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 274.195312 302.011719 C 274.195312 304.847656 269.945312 304.847656 269.945312 302.011719 C 269.945312 299.175781 274.195312 299.175781 274.195312 302.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 283.773438 302.011719 C 283.773438 304.847656 279.523438 304.847656 279.523438 302.011719 C 279.523438 299.175781 283.773438 299.175781 283.773438 302.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 265.953125 302.011719 C 265.953125 304.847656 261.703125 304.847656 261.703125 302.011719 C 261.703125 299.175781 265.953125 299.175781 265.953125 302.011719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.6875 51.09375 C 229.6875 53.929688 225.4375 53.929688 225.4375 51.09375 C 225.4375 48.257812 229.6875 48.257812 229.6875 51.09375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.261719 51.09375 C 229.261719 53.929688 225.011719 53.929688 225.011719 51.09375 C 225.011719 48.257812 229.261719 48.257812 229.261719 51.09375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 191.039062 245.351562 C 191.039062 248.1875 186.789062 248.1875 186.789062 245.351562 C 186.789062 242.519531 191.039062 242.519531 191.039062 245.351562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 179.648438 245.351562 C 179.648438 248.1875 175.398438 248.1875 175.398438 245.351562 C 175.398438 242.519531 179.648438 242.519531 179.648438 245.351562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.445312 245.351562 C 217.445312 248.1875 213.191406 248.1875 213.191406 245.351562 C 213.191406 242.519531 217.445312 242.519531 217.445312 245.351562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 218.382812 234.5625 C 218.382812 237.394531 214.132812 237.394531 214.132812 234.5625 C 214.132812 231.726562 218.382812 231.726562 218.382812 234.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 215.640625 234.5625 C 215.640625 237.394531 211.386719 237.394531 211.386719 234.5625 C 211.386719 231.726562 215.640625 231.726562 215.640625 234.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 244.214844 307.40625 C 244.214844 310.242188 239.964844 310.242188 239.964844 307.40625 C 239.964844 304.574219 244.214844 304.574219 244.214844 307.40625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.171875 307.40625 C 232.171875 310.242188 227.921875 310.242188 227.921875 307.40625 C 227.921875 304.574219 232.171875 304.574219 232.171875 307.40625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 233.910156 269.636719 C 233.910156 272.46875 229.65625 272.46875 229.65625 269.636719 C 229.65625 266.800781 233.910156 266.800781 233.910156 269.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.78125 269.636719 C 234.78125 272.46875 230.527344 272.46875 230.527344 269.636719 C 230.527344 266.800781 234.78125 266.800781 234.78125 269.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 234.554688 269.636719 C 234.554688 272.46875 230.304688 272.46875 230.304688 269.636719 C 230.304688 266.800781 234.554688 266.800781 234.554688 269.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.996094 269.636719 C 228.996094 272.46875 224.742188 272.46875 224.742188 269.636719 C 224.742188 266.800781 228.996094 266.800781 228.996094 269.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.242188 269.636719 C 236.242188 272.46875 231.988281 272.46875 231.988281 269.636719 C 231.988281 266.800781 236.242188 266.800781 236.242188 269.636719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.394531 396.445312 C 212.394531 399.277344 208.144531 399.277344 208.144531 396.445312 C 208.144531 393.609375 212.394531 393.609375 212.394531 396.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.648438 396.445312 C 222.648438 399.277344 218.398438 399.277344 218.398438 396.445312 C 218.398438 393.609375 222.648438 393.609375 222.648438 396.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.171875 339.785156 C 211.171875 342.617188 206.917969 342.617188 206.917969 339.785156 C 206.917969 336.949219 211.171875 336.949219 211.171875 339.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 190.535156 339.785156 C 190.535156 342.617188 186.28125 342.617188 186.28125 339.785156 C 186.28125 336.949219 190.535156 336.949219 190.535156 339.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 243.890625 185.996094 C 243.890625 188.832031 239.640625 188.832031 239.640625 185.996094 C 239.640625 183.160156 243.890625 183.160156 243.890625 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.472656 185.996094 C 253.472656 188.832031 249.21875 188.832031 249.21875 185.996094 C 249.21875 183.160156 253.472656 183.160156 253.472656 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 248.804688 185.996094 C 248.804688 188.832031 244.554688 188.832031 244.554688 185.996094 C 244.554688 183.160156 248.804688 183.160156 248.804688 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.226562 185.996094 C 246.226562 188.832031 241.972656 188.832031 241.972656 185.996094 C 241.972656 183.160156 246.226562 183.160156 246.226562 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.558594 202.183594 C 220.558594 205.019531 216.308594 205.019531 216.308594 202.183594 C 216.308594 199.347656 220.558594 199.347656 220.558594 202.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 213.3125 202.183594 C 213.3125 205.019531 209.0625 205.019531 209.0625 202.183594 C 209.0625 199.347656 213.3125 199.347656 213.3125 202.183594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.652344 318.199219 C 237.652344 321.035156 233.402344 321.035156 233.402344 318.199219 C 233.402344 315.367188 237.652344 315.367188 237.652344 318.199219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 259.816406 318.199219 C 259.816406 321.035156 255.566406 321.035156 255.566406 318.199219 C 255.566406 315.367188 259.816406 315.367188 259.816406 318.199219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.328125 153.621094 C 220.328125 156.453125 216.074219 156.453125 216.074219 153.621094 C 216.074219 150.785156 220.328125 150.785156 220.328125 153.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.675781 153.621094 C 228.675781 156.453125 224.421875 156.453125 224.421875 153.621094 C 224.421875 150.785156 228.675781 150.785156 228.675781 153.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 224.8125 361.367188 C 224.8125 364.203125 220.558594 364.203125 220.558594 361.367188 C 220.558594 358.535156 224.8125 358.535156 224.8125 361.367188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.808594 361.367188 C 246.808594 364.203125 242.554688 364.203125 242.554688 361.367188 C 242.554688 358.535156 246.808594 358.535156 246.808594 361.367188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 241.664062 372.160156 C 241.664062 374.996094 237.410156 374.996094 237.410156 372.160156 C 237.410156 369.328125 241.664062 369.328125 241.664062 372.160156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.804688 372.160156 C 223.804688 374.996094 219.550781 374.996094 219.550781 372.160156 C 219.550781 369.328125 223.804688 369.328125 223.804688 372.160156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.40625 391.046875 C 216.40625 393.882812 212.15625 393.882812 212.15625 391.046875 C 212.15625 388.210938 216.40625 388.210938 216.40625 391.046875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 202.453125 391.046875 C 202.453125 393.882812 198.199219 393.882812 198.199219 391.046875 C 198.199219 388.210938 202.453125 388.210938 202.453125 391.046875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 218.785156 428.820312 C 218.785156 431.65625 214.53125 431.65625 214.53125 428.820312 C 214.53125 425.984375 218.785156 425.984375 218.785156 428.820312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.71875 428.820312 C 204.71875 431.65625 200.46875 431.65625 200.46875 428.820312 C 200.46875 425.984375 204.71875 425.984375 204.71875 428.820312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 230.082031 364.066406 C 230.082031 366.902344 225.828125 366.902344 225.828125 364.066406 C 225.828125 361.230469 230.082031 361.230469 230.082031 364.066406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.472656 364.066406 C 229.472656 366.902344 225.21875 366.902344 225.21875 364.066406 C 225.21875 361.230469 229.472656 361.230469 229.472656 364.066406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.992188 258.84375 C 204.992188 261.675781 200.742188 261.675781 200.742188 258.84375 C 200.742188 256.007812 204.992188 256.007812 204.992188 258.84375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.238281 258.84375 C 212.238281 261.675781 207.988281 261.675781 207.988281 258.84375 C 207.988281 256.007812 212.238281 256.007812 212.238281 258.84375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.433594 199.484375 C 220.433594 202.320312 216.183594 202.320312 216.183594 199.484375 C 216.183594 196.652344 220.433594 196.652344 220.433594 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.210938 199.484375 C 223.210938 202.320312 218.960938 202.320312 218.960938 199.484375 C 218.960938 196.652344 223.210938 196.652344 223.210938 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 230.980469 199.484375 C 230.980469 202.320312 226.726562 202.320312 226.726562 199.484375 C 226.726562 196.652344 230.980469 196.652344 230.980469 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.765625 199.484375 C 222.765625 202.320312 218.515625 202.320312 218.515625 199.484375 C 218.515625 196.652344 222.765625 196.652344 222.765625 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 213.65625 380.253906 C 213.65625 383.089844 209.40625 383.089844 209.40625 380.253906 C 209.40625 377.421875 213.65625 377.421875 213.65625 380.253906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 180.007812 380.253906 C 180.007812 383.089844 175.757812 383.089844 175.757812 380.253906 C 175.757812 377.421875 180.007812 377.421875 180.007812 380.253906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 244.277344 159.015625 C 244.277344 161.851562 240.023438 161.851562 240.023438 159.015625 C 240.023438 156.179688 244.277344 156.179688 244.277344 159.015625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 267.246094 159.015625 C 267.246094 161.851562 262.992188 161.851562 262.992188 159.015625 C 262.992188 156.179688 267.246094 156.179688 267.246094 159.015625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 256.113281 159.015625 C 256.113281 161.851562 251.863281 161.851562 251.863281 159.015625 C 251.863281 156.179688 256.113281 156.179688 256.113281 159.015625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.734375 164.410156 C 208.734375 167.246094 204.480469 167.246094 204.480469 164.410156 C 204.480469 161.578125 208.734375 161.578125 208.734375 164.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.320312 164.410156 C 236.320312 167.246094 232.070312 167.246094 232.070312 164.410156 C 232.070312 161.578125 236.320312 161.578125 236.320312 164.410156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.96875 315.503906 C 246.96875 318.335938 242.71875 318.335938 242.71875 315.503906 C 242.71875 312.667969 246.96875 312.667969 246.96875 315.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.832031 315.503906 C 232.832031 318.335938 228.578125 318.335938 228.578125 315.503906 C 228.578125 312.667969 232.832031 312.667969 232.832031 315.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 196.949219 129.335938 C 196.949219 132.171875 192.699219 132.171875 192.699219 129.335938 C 192.699219 126.503906 196.949219 126.503906 196.949219 129.335938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 196.683594 129.335938 C 196.683594 132.171875 192.433594 132.171875 192.433594 129.335938 C 192.433594 126.503906 196.683594 126.503906 196.683594 129.335938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 172.851562 32.207031 C 172.851562 35.042969 168.597656 35.042969 168.597656 32.207031 C 168.597656 29.371094 172.851562 29.371094 172.851562 32.207031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 185.4375 32.207031 C 185.4375 35.042969 181.183594 35.042969 181.183594 32.207031 C 181.183594 29.371094 185.4375 29.371094 185.4375 32.207031 "/>
+<g clip-path="url(#clip9)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 255.160156 16.019531 C 255.160156 18.851562 250.90625 18.851562 250.90625 16.019531 C 250.90625 13.183594 255.160156 13.183594 255.160156 16.019531 "/>
+</g>
+<g clip-path="url(#clip10)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 254.289062 16.019531 C 254.289062 18.851562 250.035156 18.851562 250.035156 16.019531 C 250.035156 13.183594 254.289062 13.183594 254.289062 16.019531 "/>
+</g>
+<g clip-path="url(#clip11)" clip-rule="nonzero">
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.464844 16.019531 C 237.464844 18.851562 233.210938 18.851562 233.210938 16.019531 C 233.210938 13.183594 237.464844 13.183594 237.464844 16.019531 "/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 229.957031 167.109375 C 229.957031 169.945312 225.703125 169.945312 225.703125 167.109375 C 225.703125 164.273438 229.957031 164.273438 229.957031 167.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 239.535156 167.109375 C 239.535156 169.945312 235.28125 169.945312 235.28125 167.109375 C 235.28125 164.273438 239.535156 164.273438 239.535156 167.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.617188 312.804688 C 228.617188 315.636719 224.363281 315.636719 224.363281 312.804688 C 224.363281 309.96875 228.617188 309.96875 228.617188 312.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.6875 312.804688 C 252.6875 315.636719 248.433594 315.636719 248.433594 312.804688 C 248.433594 309.96875 252.6875 309.96875 252.6875 312.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 182.542969 334.386719 C 182.542969 337.222656 178.292969 337.222656 178.292969 334.386719 C 178.292969 331.554688 182.542969 331.554688 182.542969 334.386719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 175.296875 334.386719 C 175.296875 337.222656 171.046875 337.222656 171.046875 334.386719 C 171.046875 331.554688 175.296875 331.554688 175.296875 334.386719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 194.597656 409.933594 C 194.597656 412.769531 190.347656 412.769531 190.347656 409.933594 C 190.347656 407.097656 194.597656 407.097656 194.597656 409.933594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.175781 409.933594 C 204.175781 412.769531 199.925781 412.769531 199.925781 409.933594 C 199.925781 407.097656 204.175781 407.097656 204.175781 409.933594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.519531 107.753906 C 228.519531 110.585938 224.269531 110.585938 224.269531 107.753906 C 224.269531 104.917969 228.519531 104.917969 228.519531 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 233.863281 107.753906 C 233.863281 110.585938 229.609375 110.585938 229.609375 107.753906 C 229.609375 104.917969 233.863281 104.917969 233.863281 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.195312 107.753906 C 236.195312 110.585938 231.941406 110.585938 231.941406 107.753906 C 231.941406 104.917969 236.195312 104.917969 236.195312 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.949219 107.753906 C 228.949219 110.585938 224.695312 110.585938 224.695312 107.753906 C 224.695312 104.917969 228.949219 104.917969 228.949219 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 267.835938 291.21875 C 267.835938 294.054688 263.582031 294.054688 263.582031 291.21875 C 263.582031 288.386719 267.835938 288.386719 267.835938 291.21875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 263.457031 291.21875 C 263.457031 294.054688 259.207031 294.054688 259.207031 291.21875 C 259.207031 288.386719 263.457031 288.386719 263.457031 291.21875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 281.964844 310.105469 C 281.964844 312.941406 277.710938 312.941406 277.710938 310.105469 C 277.710938 307.269531 281.964844 307.269531 281.964844 310.105469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 243.402344 310.105469 C 243.402344 312.941406 239.148438 312.941406 239.148438 310.105469 C 239.148438 307.269531 243.402344 307.269531 243.402344 310.105469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 280.058594 310.105469 C 280.058594 312.941406 275.804688 312.941406 275.804688 310.105469 C 275.804688 307.269531 280.058594 307.269531 280.058594 310.105469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.546875 218.371094 C 226.546875 221.207031 222.296875 221.207031 222.296875 218.371094 C 222.296875 215.539062 226.546875 215.539062 226.546875 218.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.753906 218.371094 C 226.753906 221.207031 222.503906 221.207031 222.503906 218.371094 C 222.503906 215.539062 226.753906 215.539062 226.753906 218.371094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 210.175781 382.953125 C 210.175781 385.789062 205.921875 385.789062 205.921875 382.953125 C 205.921875 380.117188 210.175781 380.117188 210.175781 382.953125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.570312 382.953125 C 211.570312 385.789062 207.320312 385.789062 207.320312 382.953125 C 207.320312 380.117188 211.570312 380.117188 211.570312 382.953125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.820312 304.710938 C 204.820312 307.542969 200.566406 307.542969 200.566406 304.710938 C 200.566406 301.875 204.820312 301.875 204.820312 304.710938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 206.394531 304.710938 C 206.394531 307.542969 202.144531 307.542969 202.144531 304.710938 C 202.144531 301.875 206.394531 301.875 206.394531 304.710938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.277344 399.140625 C 223.277344 401.976562 219.023438 401.976562 219.023438 399.140625 C 219.023438 396.308594 223.277344 396.308594 223.277344 399.140625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.597656 399.140625 C 212.597656 401.976562 208.34375 401.976562 208.34375 399.140625 C 208.34375 396.308594 212.597656 396.308594 212.597656 399.140625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.457031 148.222656 C 236.457031 151.058594 232.203125 151.058594 232.203125 148.222656 C 232.203125 145.386719 236.457031 145.386719 236.457031 148.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 253.707031 148.222656 C 253.707031 151.058594 249.457031 151.058594 249.457031 148.222656 C 249.457031 145.386719 253.707031 145.386719 253.707031 148.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 258.621094 148.222656 C 258.621094 151.058594 254.371094 151.058594 254.371094 148.222656 C 254.371094 145.386719 258.621094 145.386719 258.621094 148.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 239.636719 455.800781 C 239.636719 458.636719 235.386719 458.636719 235.386719 455.800781 C 235.386719 452.964844 239.636719 452.964844 239.636719 455.800781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 208.320312 455.800781 C 208.320312 458.636719 204.070312 458.636719 204.070312 455.800781 C 204.070312 452.964844 208.320312 452.964844 208.320312 455.800781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 211.328125 455.800781 C 211.328125 458.636719 207.078125 458.636719 207.078125 455.800781 C 207.078125 452.964844 211.328125 452.964844 211.328125 455.800781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 200.417969 266.9375 C 200.417969 269.773438 196.167969 269.773438 196.167969 266.9375 C 196.167969 264.101562 200.417969 264.101562 200.417969 266.9375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 199.234375 266.9375 C 199.234375 269.773438 194.984375 269.773438 194.984375 266.9375 C 194.984375 264.101562 199.234375 264.101562 199.234375 266.9375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 228.179688 121.242188 C 228.179688 124.078125 223.929688 124.078125 223.929688 121.242188 C 223.929688 118.40625 228.179688 118.40625 228.179688 121.242188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.9375 121.242188 C 220.9375 124.078125 216.683594 124.078125 216.683594 121.242188 C 216.683594 118.40625 220.9375 118.40625 220.9375 121.242188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.5 43 C 219.5 45.832031 215.246094 45.832031 215.246094 43 C 215.246094 40.164062 219.5 40.164062 219.5 43 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.910156 43 C 219.910156 45.832031 215.65625 45.832031 215.65625 43 C 215.65625 40.164062 219.910156 40.164062 219.910156 43 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 206.007812 434.214844 C 206.007812 437.050781 201.753906 437.050781 201.753906 434.214844 C 201.753906 431.382812 206.007812 431.382812 206.007812 434.214844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.703125 434.214844 C 217.703125 437.050781 213.449219 437.050781 213.449219 434.214844 C 213.449219 431.382812 217.703125 431.382812 217.703125 434.214844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 223.703125 434.214844 C 223.703125 437.050781 219.453125 437.050781 219.453125 434.214844 C 219.453125 431.382812 223.703125 431.382812 223.703125 434.214844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 189.554688 169.808594 C 189.554688 172.640625 185.300781 172.640625 185.300781 169.808594 C 185.300781 166.972656 189.554688 166.972656 189.554688 169.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 189.695312 169.808594 C 189.695312 172.640625 185.441406 172.640625 185.441406 169.808594 C 185.441406 166.972656 189.695312 166.972656 189.695312 169.808594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 214.851562 374.859375 C 214.851562 377.695312 210.601562 377.695312 210.601562 374.859375 C 210.601562 372.023438 214.851562 372.023438 214.851562 374.859375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.765625 374.859375 C 212.765625 377.695312 208.515625 377.695312 208.515625 374.859375 C 208.515625 372.023438 212.765625 372.023438 212.765625 374.859375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.375 401.839844 C 232.375 404.675781 228.121094 404.675781 228.121094 401.839844 C 228.121094 399.003906 232.375 399.003906 232.375 401.839844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.40625 401.839844 C 236.40625 404.675781 232.152344 404.675781 232.152344 401.839844 C 232.152344 399.003906 236.40625 399.003906 236.40625 401.839844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.625 105.054688 C 221.625 107.890625 217.375 107.890625 217.375 105.054688 C 217.375 102.21875 221.625 102.21875 221.625 105.054688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.003906 105.054688 C 219.003906 107.890625 214.75 107.890625 214.75 105.054688 C 214.75 102.21875 219.003906 102.21875 219.003906 105.054688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.347656 99.660156 C 209.347656 102.492188 205.097656 102.492188 205.097656 99.660156 C 205.097656 96.824219 209.347656 96.824219 209.347656 99.660156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 213.585938 99.660156 C 213.585938 102.492188 209.335938 102.492188 209.335938 99.660156 C 209.335938 96.824219 213.585938 96.824219 213.585938 99.660156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 270.605469 296.617188 C 270.605469 299.449219 266.355469 299.449219 266.355469 296.617188 C 266.355469 293.78125 270.605469 293.78125 270.605469 296.617188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 292.34375 296.617188 C 292.34375 299.449219 288.09375 299.449219 288.09375 296.617188 C 288.09375 293.78125 292.34375 293.78125 292.34375 296.617188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 213.707031 110.449219 C 213.707031 113.285156 209.453125 113.285156 209.453125 110.449219 C 209.453125 107.617188 213.707031 107.617188 213.707031 110.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.710938 110.449219 C 216.710938 113.285156 212.460938 113.285156 212.460938 110.449219 C 212.460938 107.617188 216.710938 107.617188 216.710938 110.449219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.820312 83.46875 C 237.820312 86.304688 233.570312 86.304688 233.570312 83.46875 C 233.570312 80.636719 237.820312 80.636719 237.820312 83.46875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 237.820312 83.46875 C 237.820312 86.304688 233.570312 86.304688 233.570312 83.46875 C 233.570312 80.636719 237.820312 80.636719 237.820312 83.46875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.90625 83.46875 C 232.90625 86.304688 228.65625 86.304688 228.65625 83.46875 C 228.65625 80.636719 232.90625 80.636719 232.90625 83.46875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 194.800781 26.8125 C 194.800781 29.644531 190.546875 29.644531 190.546875 26.8125 C 190.546875 23.976562 194.800781 23.976562 194.800781 26.8125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 189.886719 26.8125 C 189.886719 29.644531 185.632812 29.644531 185.632812 26.8125 C 185.632812 23.976562 189.886719 23.976562 189.886719 26.8125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 186.875 347.878906 C 186.875 350.714844 182.621094 350.714844 182.621094 347.878906 C 182.621094 345.042969 186.875 345.042969 186.875 347.878906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 205.15625 347.878906 C 205.15625 350.714844 200.902344 350.714844 200.902344 347.878906 C 200.902344 345.042969 205.15625 345.042969 205.15625 347.878906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 201.113281 412.632812 C 201.113281 415.464844 196.859375 415.464844 196.859375 412.632812 C 196.859375 409.796875 201.113281 409.796875 201.113281 412.632812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 192.996094 412.632812 C 192.996094 415.464844 188.742188 415.464844 188.742188 412.632812 C 188.742188 409.796875 192.996094 409.796875 192.996094 412.632812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 185.972656 239.957031 C 185.972656 242.792969 181.71875 242.792969 181.71875 239.957031 C 181.71875 237.121094 185.972656 237.121094 185.972656 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.375 239.957031 C 212.375 242.792969 208.121094 242.792969 208.121094 239.957031 C 208.121094 237.121094 212.375 237.121094 212.375 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 210.042969 239.957031 C 210.042969 242.792969 205.789062 242.792969 205.789062 239.957031 C 205.789062 237.121094 210.042969 237.121094 210.042969 239.957031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 204.542969 388.347656 C 204.542969 391.183594 200.289062 391.183594 200.289062 388.347656 C 200.289062 385.515625 204.542969 385.515625 204.542969 388.347656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.902344 388.347656 C 221.902344 391.183594 217.652344 391.183594 217.652344 388.347656 C 217.652344 385.515625 221.902344 385.515625 221.902344 388.347656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.859375 113.148438 C 226.859375 115.984375 222.605469 115.984375 222.605469 113.148438 C 222.605469 110.3125 226.859375 110.3125 226.859375 113.148438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.199219 113.148438 C 232.199219 115.984375 227.945312 115.984375 227.945312 113.148438 C 227.945312 110.3125 232.199219 110.3125 232.199219 113.148438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.246094 207.582031 C 222.246094 210.414062 217.996094 210.414062 217.996094 207.582031 C 217.996094 204.746094 222.246094 204.746094 222.246094 207.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 222.414062 207.582031 C 222.414062 210.414062 218.164062 210.414062 218.164062 207.582031 C 218.164062 204.746094 222.414062 204.746094 222.414062 207.582031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 220.542969 221.070312 C 220.542969 223.90625 216.289062 223.90625 216.289062 221.070312 C 216.289062 218.234375 220.542969 218.234375 220.542969 221.070312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 210.03125 221.070312 C 210.03125 223.90625 205.777344 223.90625 205.777344 221.070312 C 205.777344 218.234375 210.03125 218.234375 210.03125 221.070312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 219.851562 288.523438 C 219.851562 291.355469 215.597656 291.355469 215.597656 288.523438 C 215.597656 285.6875 219.851562 285.6875 219.851562 288.523438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.367188 288.523438 C 221.367188 291.355469 217.113281 291.355469 217.113281 288.523438 C 217.113281 285.6875 221.367188 285.6875 221.367188 288.523438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 212.195312 415.328125 C 212.195312 418.164062 207.941406 418.164062 207.941406 415.328125 C 207.941406 412.496094 212.195312 412.496094 212.195312 415.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 209.613281 415.328125 C 209.613281 418.164062 205.363281 418.164062 205.363281 415.328125 C 205.363281 412.496094 209.613281 412.496094 209.613281 415.328125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.957031 299.3125 C 217.957031 302.148438 213.707031 302.148438 213.707031 299.3125 C 213.707031 296.480469 217.957031 296.480469 217.957031 299.3125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 238.886719 299.3125 C 238.886719 302.148438 234.636719 302.148438 234.636719 299.3125 C 234.636719 296.480469 238.886719 296.480469 238.886719 299.3125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 217.257812 72.679688 C 217.257812 75.511719 213.007812 75.511719 213.007812 72.679688 C 213.007812 69.84375 217.257812 69.84375 217.257812 72.679688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 202.257812 72.679688 C 202.257812 75.511719 198.003906 75.511719 198.003906 72.679688 C 198.003906 69.84375 202.257812 69.84375 202.257812 72.679688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 246.933594 326.292969 C 246.933594 329.128906 242.683594 329.128906 242.683594 326.292969 C 242.683594 323.460938 246.933594 323.460938 246.933594 326.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 245.625 326.292969 C 245.625 329.128906 241.375 329.128906 241.375 326.292969 C 241.375 323.460938 245.625 323.460938 245.625 326.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 232.257812 229.164062 C 232.257812 232 228.003906 232 228.003906 229.164062 C 228.003906 226.328125 232.257812 226.328125 232.257812 229.164062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 236.289062 229.164062 C 236.289062 232 232.035156 232 232.035156 229.164062 C 232.035156 226.328125 236.289062 226.328125 236.289062 229.164062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.757812 420.726562 C 226.757812 423.558594 222.503906 423.558594 222.503906 420.726562 C 222.503906 417.890625 226.757812 417.890625 226.757812 420.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 226.800781 420.726562 C 226.800781 423.558594 222.546875 423.558594 222.546875 420.726562 C 222.546875 417.890625 226.800781 417.890625 226.800781 420.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 202.367188 134.734375 C 202.367188 137.566406 198.117188 137.566406 198.117188 134.734375 C 198.117188 131.898438 202.367188 131.898438 202.367188 134.734375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 216.414062 134.734375 C 216.414062 137.566406 212.164062 137.566406 212.164062 134.734375 C 212.164062 131.898438 216.414062 131.898438 216.414062 134.734375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 225.953125 94.261719 C 225.953125 97.097656 221.703125 97.097656 221.703125 94.261719 C 221.703125 91.425781 225.953125 91.425781 225.953125 94.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 221.484375 94.261719 C 221.484375 97.097656 217.234375 97.097656 217.234375 94.261719 C 217.234375 91.425781 221.484375 91.425781 221.484375 94.261719 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 262.542969 191.390625 C 262.542969 194.226562 258.292969 194.226562 258.292969 191.390625 C 258.292969 188.558594 262.542969 188.558594 262.542969 191.390625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 252.964844 191.390625 C 252.964844 194.226562 248.710938 194.226562 248.710938 191.390625 C 248.710938 188.558594 252.964844 188.558594 252.964844 191.390625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 136.042969 148.222656 C 136.042969 151.058594 131.792969 151.058594 131.792969 148.222656 C 131.792969 145.386719 136.042969 145.386719 136.042969 148.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 122.652344 148.222656 C 122.652344 151.058594 118.402344 151.058594 118.402344 148.222656 C 118.402344 145.386719 122.652344 145.386719 122.652344 148.222656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 128.796875 88.867188 C 128.796875 91.699219 124.546875 91.699219 124.546875 88.867188 C 124.546875 86.03125 128.796875 86.03125 128.796875 88.867188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.511719 88.867188 C 74.511719 91.699219 70.261719 91.699219 70.261719 88.867188 C 70.261719 86.03125 74.511719 86.03125 74.511719 88.867188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 127.335938 326.292969 C 127.335938 329.128906 123.085938 329.128906 123.085938 326.292969 C 123.085938 323.460938 127.335938 323.460938 127.335938 326.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.671875 326.292969 C 113.671875 329.128906 109.421875 329.128906 109.421875 326.292969 C 109.421875 323.460938 113.671875 323.460938 113.671875 326.292969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 126.464844 385.652344 C 126.464844 388.484375 122.214844 388.484375 122.214844 385.652344 C 122.214844 382.816406 126.464844 382.816406 126.464844 385.652344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.894531 385.652344 C 109.894531 388.484375 105.644531 388.484375 105.644531 385.652344 C 105.644531 382.816406 109.894531 382.816406 109.894531 385.652344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 126.464844 156.316406 C 126.464844 159.152344 122.214844 159.152344 122.214844 156.316406 C 122.214844 153.484375 126.464844 153.484375 126.464844 156.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 125.46875 156.316406 C 125.46875 159.152344 121.21875 159.152344 121.21875 156.316406 C 121.21875 153.484375 125.46875 153.484375 125.46875 156.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 156.316406 C 109.640625 159.152344 105.390625 159.152344 105.390625 156.316406 C 105.390625 153.484375 109.640625 153.484375 109.640625 156.316406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 123.886719 185.996094 C 123.886719 188.832031 119.632812 188.832031 119.632812 185.996094 C 119.632812 183.160156 123.886719 183.160156 123.886719 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.550781 185.996094 C 113.550781 188.832031 109.296875 188.832031 109.296875 185.996094 C 109.296875 183.160156 113.550781 183.160156 113.550781 185.996094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 119.21875 312.804688 C 119.21875 315.636719 114.96875 315.636719 114.96875 312.804688 C 114.96875 309.96875 119.21875 309.96875 119.21875 312.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.488281 312.804688 C 100.488281 315.636719 96.238281 315.636719 96.238281 312.804688 C 96.238281 309.96875 100.488281 309.96875 100.488281 312.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.148438 312.804688 C 95.148438 315.636719 90.898438 315.636719 90.898438 312.804688 C 90.898438 309.96875 95.148438 309.96875 95.148438 312.804688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 119.21875 21.414062 C 119.21875 24.25 114.96875 24.25 114.96875 21.414062 C 114.96875 18.582031 119.21875 18.582031 119.21875 21.414062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 115.777344 21.414062 C 115.777344 24.25 111.527344 24.25 111.527344 21.414062 C 111.527344 18.582031 115.777344 18.582031 115.777344 21.414062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.488281 21.414062 C 100.488281 24.25 96.238281 24.25 96.238281 21.414062 C 96.238281 18.582031 100.488281 18.582031 100.488281 21.414062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 119.21875 40.300781 C 119.21875 43.136719 114.96875 43.136719 114.96875 40.300781 C 114.96875 37.464844 119.21875 37.464844 119.21875 40.300781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 40.300781 C 109.640625 43.136719 105.390625 43.136719 105.390625 40.300781 C 105.390625 37.464844 109.640625 37.464844 109.640625 40.300781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 118.222656 67.28125 C 118.222656 70.117188 113.972656 70.117188 113.972656 67.28125 C 113.972656 64.445312 118.222656 64.445312 118.222656 67.28125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.664062 67.28125 C 83.664062 70.117188 79.414062 70.117188 79.414062 67.28125 C 79.414062 64.445312 83.664062 64.445312 83.664062 67.28125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 117.578125 210.277344 C 117.578125 213.113281 113.328125 213.113281 113.328125 210.277344 C 113.328125 207.445312 117.578125 207.445312 117.578125 210.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 210.277344 C 102.394531 213.113281 98.144531 213.113281 98.144531 210.277344 C 98.144531 207.445312 102.394531 207.445312 102.394531 210.277344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 116.972656 369.464844 C 116.972656 372.296875 112.71875 372.296875 112.71875 369.464844 C 112.71875 366.628906 116.972656 366.628906 116.972656 369.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 114.371094 369.464844 C 114.371094 372.296875 110.121094 372.296875 110.121094 369.464844 C 110.121094 366.628906 114.371094 366.628906 114.371094 369.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.671875 369.464844 C 113.671875 372.296875 109.421875 372.296875 109.421875 369.464844 C 109.421875 366.628906 113.671875 366.628906 113.671875 369.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 114.304688 320.898438 C 114.304688 323.734375 110.054688 323.734375 110.054688 320.898438 C 110.054688 318.0625 114.304688 318.0625 114.304688 320.898438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 320.898438 C 109.640625 323.734375 105.390625 323.734375 105.390625 320.898438 C 105.390625 318.0625 109.640625 318.0625 109.640625 320.898438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 113.074219 153.621094 C 113.074219 156.453125 108.824219 156.453125 108.824219 153.621094 C 108.824219 150.785156 113.074219 150.785156 113.074219 153.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.726562 153.621094 C 104.726562 156.453125 100.476562 156.453125 100.476562 153.621094 C 100.476562 150.785156 104.726562 150.785156 104.726562 153.621094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 111.972656 285.824219 C 111.972656 288.65625 107.722656 288.65625 107.722656 285.824219 C 107.722656 282.988281 111.972656 282.988281 111.972656 285.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 285.824219 C 109.640625 288.65625 105.390625 288.65625 105.390625 285.824219 C 105.390625 282.988281 109.640625 282.988281 109.640625 285.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 105.828125 285.824219 C 105.828125 288.65625 101.578125 288.65625 101.578125 285.824219 C 101.578125 282.988281 105.828125 282.988281 105.828125 285.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.300781 285.824219 C 89.300781 288.65625 85.046875 288.65625 85.046875 285.824219 C 85.046875 282.988281 89.300781 282.988281 89.300781 285.824219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 180.601562 C 109.640625 183.433594 105.390625 183.433594 105.390625 180.601562 C 105.390625 177.765625 109.640625 177.765625 109.640625 180.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.632812 180.601562 C 91.632812 183.433594 87.378906 183.433594 87.378906 180.601562 C 87.378906 177.765625 91.632812 177.765625 91.632812 180.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.664062 180.601562 C 68.664062 183.433594 64.410156 183.433594 64.410156 180.601562 C 64.410156 177.765625 68.664062 177.765625 68.664062 180.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 118.542969 C 109.640625 121.378906 105.390625 121.378906 105.390625 118.542969 C 105.390625 115.710938 109.640625 115.710938 109.640625 118.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 118.542969 C 102.394531 121.378906 98.144531 121.378906 98.144531 118.542969 C 98.144531 115.710938 102.394531 115.710938 102.394531 118.542969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 102.355469 C 109.640625 105.191406 105.390625 105.191406 105.390625 102.355469 C 105.390625 99.523438 109.640625 99.523438 109.640625 102.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.589844 102.355469 C 101.589844 105.191406 97.339844 105.191406 97.339844 102.355469 C 97.339844 99.523438 101.589844 99.523438 101.589844 102.355469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.640625 196.789062 C 109.640625 199.621094 105.390625 199.621094 105.390625 196.789062 C 105.390625 193.953125 109.640625 193.953125 109.640625 196.789062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.40625 196.789062 C 92.40625 199.621094 88.15625 199.621094 88.15625 196.789062 C 88.15625 193.953125 92.40625 193.953125 92.40625 196.789062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 109.433594 231.863281 C 109.433594 234.695312 105.183594 234.695312 105.183594 231.863281 C 105.183594 229.027344 109.433594 229.027344 109.433594 231.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 105.402344 231.863281 C 105.402344 234.695312 101.152344 234.695312 101.152344 231.863281 C 101.152344 229.027344 105.402344 229.027344 105.402344 231.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.402344 231.863281 C 96.402344 234.695312 92.152344 234.695312 92.152344 231.863281 C 92.152344 229.027344 96.402344 229.027344 96.402344 231.863281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 108.835938 436.914062 C 108.835938 439.75 104.585938 439.75 104.585938 436.914062 C 104.585938 434.078125 108.835938 434.078125 108.835938 436.914062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 97.480469 436.914062 C 97.480469 439.75 93.230469 439.75 93.230469 436.914062 C 93.230469 434.078125 97.480469 434.078125 97.480469 436.914062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 108.089844 24.113281 C 108.089844 26.949219 103.835938 26.949219 103.835938 24.113281 C 103.835938 21.277344 108.089844 21.277344 108.089844 24.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 24.113281 C 102.394531 26.949219 98.144531 26.949219 98.144531 24.113281 C 98.144531 21.277344 102.394531 21.277344 102.394531 24.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.152344 24.113281 C 94.152344 26.949219 89.902344 26.949219 89.902344 24.113281 C 89.902344 21.277344 94.152344 21.277344 94.152344 24.113281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 108.054688 461.195312 C 108.054688 464.03125 103.800781 464.03125 103.800781 461.195312 C 103.800781 458.363281 108.054688 458.363281 108.054688 461.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.992188 461.195312 C 104.992188 464.03125 100.742188 464.03125 100.742188 461.195312 C 100.742188 458.363281 104.992188 458.363281 104.992188 461.195312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 107.390625 366.765625 C 107.390625 369.597656 103.140625 369.597656 103.140625 366.765625 C 103.140625 363.929688 107.390625 363.929688 107.390625 366.765625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.148438 366.765625 C 95.148438 369.597656 90.898438 369.597656 90.898438 366.765625 C 90.898438 363.929688 95.148438 363.929688 95.148438 366.765625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.171875 366.765625 C 86.171875 369.597656 81.921875 369.597656 81.921875 366.765625 C 81.921875 363.929688 86.171875 363.929688 86.171875 366.765625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 106.738281 115.847656 C 106.738281 118.679688 102.488281 118.679688 102.488281 115.847656 C 102.488281 113.011719 106.738281 113.011719 106.738281 115.847656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 80.65625 115.847656 C 80.65625 118.679688 76.40625 118.679688 76.40625 115.847656 C 76.40625 113.011719 80.65625 113.011719 80.65625 115.847656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 105.828125 223.769531 C 105.828125 226.601562 101.578125 226.601562 101.578125 223.769531 C 101.578125 220.933594 105.828125 220.933594 105.828125 223.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.785156 223.769531 C 101.785156 226.601562 97.535156 226.601562 97.535156 223.769531 C 97.535156 220.933594 101.785156 220.933594 101.785156 223.769531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 105.210938 275.03125 C 105.210938 277.867188 100.957031 277.867188 100.957031 275.03125 C 100.957031 272.195312 105.210938 272.195312 105.210938 275.03125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.992188 275.03125 C 104.992188 277.867188 100.742188 277.867188 100.742188 275.03125 C 100.742188 272.195312 104.992188 272.195312 104.992188 275.03125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.726562 342.484375 C 104.726562 345.316406 100.476562 345.316406 100.476562 342.484375 C 100.476562 339.648438 104.726562 339.648438 104.726562 342.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.152344 342.484375 C 94.152344 345.316406 89.902344 345.316406 89.902344 342.484375 C 89.902344 339.648438 94.152344 339.648438 94.152344 342.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 104.242188 204.882812 C 104.242188 207.714844 99.992188 207.714844 99.992188 204.882812 C 99.992188 202.046875 104.242188 202.046875 104.242188 204.882812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.605469 204.882812 C 102.605469 207.714844 98.355469 207.714844 98.355469 204.882812 C 98.355469 202.046875 102.605469 202.046875 102.605469 204.882812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 29.507812 C 102.394531 32.34375 98.144531 32.34375 98.144531 29.507812 C 98.144531 26.675781 102.394531 26.675781 102.394531 29.507812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 76.074219 29.507812 C 76.074219 32.34375 71.824219 32.34375 71.824219 29.507812 C 71.824219 26.675781 76.074219 26.675781 76.074219 29.507812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.085938 29.507812 C 74.085938 32.34375 69.835938 32.34375 69.835938 29.507812 C 69.835938 26.675781 74.085938 26.675781 74.085938 29.507812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 137.429688 C 102.394531 140.265625 98.144531 140.265625 98.144531 137.429688 C 98.144531 134.597656 102.394531 134.597656 102.394531 137.429688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.488281 137.429688 C 100.488281 140.265625 96.238281 140.265625 96.238281 137.429688 C 96.238281 134.597656 100.488281 134.597656 100.488281 137.429688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 132.035156 C 102.394531 134.871094 98.144531 134.871094 98.144531 132.035156 C 98.144531 129.199219 102.394531 129.199219 102.394531 132.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.148438 132.035156 C 95.148438 134.871094 90.898438 134.871094 90.898438 132.035156 C 90.898438 129.199219 95.148438 129.199219 95.148438 132.035156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 59.1875 C 102.394531 62.023438 98.144531 62.023438 98.144531 59.1875 C 98.144531 56.351562 102.394531 56.351562 102.394531 59.1875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.570312 59.1875 C 85.570312 62.023438 81.320312 62.023438 81.320312 59.1875 C 81.320312 56.351562 85.570312 56.351562 85.570312 59.1875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 350.578125 C 102.394531 353.410156 98.144531 353.410156 98.144531 350.578125 C 98.144531 347.742188 102.394531 347.742188 102.394531 350.578125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 350.578125 C 102.394531 353.410156 98.144531 353.410156 98.144531 350.578125 C 98.144531 347.742188 102.394531 347.742188 102.394531 350.578125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 18.71875 C 102.394531 21.550781 98.144531 21.550781 98.144531 18.71875 C 98.144531 15.882812 102.394531 15.882812 102.394531 18.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 101.210938 18.71875 C 101.210938 21.550781 96.957031 21.550781 96.957031 18.71875 C 96.957031 15.882812 101.210938 15.882812 101.210938 18.71875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 102.394531 142.828125 C 102.394531 145.660156 98.144531 145.660156 98.144531 142.828125 C 98.144531 139.992188 102.394531 139.992188 102.394531 142.828125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.148438 142.828125 C 95.148438 145.660156 90.898438 145.660156 90.898438 142.828125 C 90.898438 139.992188 95.148438 139.992188 95.148438 142.828125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.242188 142.828125 C 93.242188 145.660156 88.992188 145.660156 88.992188 142.828125 C 88.992188 139.992188 93.242188 139.992188 93.242188 142.828125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.0625 167.109375 C 100.0625 169.945312 95.8125 169.945312 95.8125 167.109375 C 95.8125 164.273438 100.0625 164.273438 100.0625 167.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 100.0625 167.109375 C 100.0625 169.945312 95.8125 169.945312 95.8125 167.109375 C 95.8125 164.273438 100.0625 164.273438 100.0625 167.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.238281 167.109375 C 83.238281 169.945312 78.984375 169.945312 78.984375 167.109375 C 78.984375 164.273438 83.238281 164.273438 83.238281 167.109375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 99.816406 328.992188 C 99.816406 331.828125 95.5625 331.828125 95.5625 328.992188 C 95.5625 326.15625 99.816406 326.15625 99.816406 328.992188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.386719 328.992188 C 84.386719 331.828125 80.132812 331.828125 80.132812 328.992188 C 80.132812 326.15625 84.386719 326.15625 84.386719 328.992188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 98.4375 199.484375 C 98.4375 202.320312 94.1875 202.320312 94.1875 199.484375 C 94.1875 196.652344 98.4375 196.652344 98.4375 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.242188 199.484375 C 93.242188 202.320312 88.992188 202.320312 88.992188 199.484375 C 88.992188 196.652344 93.242188 196.652344 93.242188 199.484375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 97.480469 280.425781 C 97.480469 283.261719 93.230469 283.261719 93.230469 280.425781 C 93.230469 277.59375 97.480469 277.59375 97.480469 280.425781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 76.074219 280.425781 C 76.074219 283.261719 71.824219 283.261719 71.824219 280.425781 C 71.824219 277.59375 76.074219 277.59375 76.074219 280.425781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 96.726562 353.273438 C 96.726562 356.109375 92.472656 356.109375 92.472656 353.273438 C 92.472656 350.441406 96.726562 350.441406 96.726562 353.273438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.40625 353.273438 C 92.40625 356.109375 88.15625 356.109375 88.15625 353.273438 C 88.15625 350.441406 92.40625 350.441406 92.40625 353.273438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.359375 431.519531 C 95.359375 434.351562 91.109375 434.351562 91.109375 431.519531 C 91.109375 428.683594 95.359375 428.683594 95.359375 431.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.878906 431.519531 C 79.878906 434.351562 75.625 434.351562 75.625 431.519531 C 75.625 428.683594 79.878906 428.683594 79.878906 431.519531 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 95.253906 420.726562 C 95.253906 423.558594 91.003906 423.558594 91.003906 420.726562 C 91.003906 417.890625 95.253906 417.890625 95.253906 420.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 70.46875 420.726562 C 70.46875 423.558594 66.21875 423.558594 66.21875 420.726562 C 66.21875 417.890625 70.46875 417.890625 70.46875 420.726562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.441406 377.558594 C 94.441406 380.390625 90.191406 380.390625 90.191406 377.558594 C 90.191406 374.722656 94.441406 374.722656 94.441406 377.558594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.019531 377.558594 C 84.019531 380.390625 79.765625 380.390625 79.765625 377.558594 C 79.765625 374.722656 84.019531 374.722656 84.019531 377.558594 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.152344 337.085938 C 94.152344 339.921875 89.902344 339.921875 89.902344 337.085938 C 89.902344 334.25 94.152344 334.25 94.152344 337.085938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.996094 337.085938 C 85.996094 339.921875 81.746094 339.921875 81.746094 337.085938 C 81.746094 334.25 85.996094 334.25 85.996094 337.085938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 94.152344 453.101562 C 94.152344 455.9375 89.902344 455.9375 89.902344 453.101562 C 89.902344 450.269531 94.152344 450.269531 94.152344 453.101562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.601562 453.101562 C 89.601562 455.9375 85.351562 455.9375 85.351562 453.101562 C 85.351562 450.269531 89.601562 450.269531 89.601562 453.101562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 93.15625 140.128906 C 93.15625 142.964844 88.90625 142.964844 88.90625 140.128906 C 88.90625 137.292969 93.15625 137.292969 93.15625 140.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.359375 140.128906 C 89.359375 142.964844 85.105469 142.964844 85.105469 140.128906 C 85.105469 137.292969 89.359375 137.292969 89.359375 140.128906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.40625 145.523438 C 92.40625 148.359375 88.15625 148.359375 88.15625 145.523438 C 88.15625 142.691406 92.40625 142.691406 92.40625 145.523438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.335938 145.523438 C 91.335938 148.359375 87.085938 148.359375 87.085938 145.523438 C 87.085938 142.691406 91.335938 142.691406 91.335938 145.523438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 92.328125 86.167969 C 92.328125 89.003906 88.074219 89.003906 88.074219 86.167969 C 88.074219 83.332031 92.328125 83.332031 92.328125 86.167969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.78125 86.167969 C 91.78125 89.003906 87.53125 89.003906 87.53125 86.167969 C 87.53125 83.332031 91.78125 83.332031 91.78125 86.167969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.632812 404.539062 C 91.632812 407.371094 87.378906 407.371094 87.378906 404.539062 C 87.378906 401.703125 91.632812 401.703125 91.632812 404.539062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.757812 404.539062 C 81.757812 407.371094 77.507812 407.371094 77.507812 404.539062 C 77.507812 401.703125 81.757812 401.703125 81.757812 404.539062 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 91.050781 69.980469 C 91.050781 72.8125 86.800781 72.8125 86.800781 69.980469 C 86.800781 67.144531 91.050781 67.144531 91.050781 69.980469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.300781 69.980469 C 90.300781 72.8125 86.050781 72.8125 86.050781 69.980469 C 86.050781 67.144531 90.300781 67.144531 90.300781 69.980469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.910156 396.445312 C 90.910156 399.277344 86.660156 399.277344 86.660156 396.445312 C 86.660156 393.609375 90.910156 393.609375 90.910156 396.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.300781 396.445312 C 90.300781 399.277344 86.050781 399.277344 86.050781 396.445312 C 86.050781 393.609375 90.300781 393.609375 90.300781 396.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 90.910156 388.347656 C 90.910156 391.183594 86.660156 391.183594 86.660156 388.347656 C 86.660156 385.515625 90.910156 385.515625 90.910156 388.347656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.910156 388.347656 C 85.910156 391.183594 81.660156 391.183594 81.660156 388.347656 C 81.660156 385.515625 85.910156 385.515625 85.910156 388.347656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.488281 388.347656 C 85.488281 391.183594 81.234375 391.183594 81.234375 388.347656 C 81.234375 385.515625 85.488281 385.515625 85.488281 388.347656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.496094 53.792969 C 89.496094 56.625 85.246094 56.625 85.246094 53.792969 C 85.246094 50.957031 89.496094 50.957031 89.496094 53.792969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.664062 53.792969 C 83.664062 56.625 79.414062 56.625 79.414062 53.792969 C 79.414062 50.957031 83.664062 50.957031 83.664062 53.792969 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 89.238281 248.050781 C 89.238281 250.886719 84.988281 250.886719 84.988281 248.050781 C 84.988281 245.214844 89.238281 245.214844 89.238281 248.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 72.535156 248.050781 C 72.535156 250.886719 68.28125 250.886719 68.28125 248.050781 C 68.28125 245.214844 72.535156 245.214844 72.535156 248.050781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 88.328125 107.753906 C 88.328125 110.585938 84.078125 110.585938 84.078125 107.753906 C 84.078125 104.917969 88.328125 104.917969 88.328125 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.535156 107.753906 C 86.535156 110.585938 82.28125 110.585938 82.28125 107.753906 C 82.28125 104.917969 86.535156 104.917969 86.535156 107.753906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 88.167969 447.707031 C 88.167969 450.539062 83.914062 450.539062 83.914062 447.707031 C 83.914062 444.871094 88.167969 444.871094 88.167969 447.707031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.140625 447.707031 C 74.140625 450.539062 69.890625 450.539062 69.890625 447.707031 C 69.890625 444.871094 74.140625 444.871094 74.140625 447.707031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 86.21875 355.972656 C 86.21875 358.808594 81.964844 358.808594 81.964844 355.972656 C 81.964844 353.136719 86.21875 353.136719 86.21875 355.972656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.5625 355.972656 C 83.5625 358.808594 79.308594 358.808594 79.308594 355.972656 C 79.308594 353.136719 83.5625 353.136719 83.5625 355.972656 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.867188 75.375 C 85.867188 78.210938 81.617188 78.210938 81.617188 75.375 C 81.617188 72.542969 85.867188 72.542969 85.867188 75.375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.707031 75.375 C 69.707031 78.210938 65.457031 78.210938 65.457031 75.375 C 65.457031 72.542969 69.707031 72.542969 69.707031 75.375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.65625 43 C 85.65625 45.832031 81.402344 45.832031 81.402344 43 C 81.402344 40.164062 85.65625 40.164062 85.65625 43 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.957031 43 C 68.957031 45.832031 64.707031 45.832031 64.707031 43 C 64.707031 40.164062 68.957031 40.164062 68.957031 43 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.570312 96.960938 C 85.570312 99.792969 81.320312 99.792969 81.320312 96.960938 C 81.320312 94.125 85.570312 94.125 85.570312 96.960938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.570312 96.960938 C 85.570312 99.792969 81.320312 99.792969 81.320312 96.960938 C 81.320312 94.125 85.570312 94.125 85.570312 96.960938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.570312 96.960938 C 85.570312 99.792969 81.320312 99.792969 81.320312 96.960938 C 81.320312 94.125 85.570312 94.125 85.570312 96.960938 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 85.570312 264.238281 C 85.570312 267.074219 81.320312 267.074219 81.320312 264.238281 C 81.320312 261.40625 85.570312 261.40625 85.570312 264.238281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.324219 264.238281 C 78.324219 267.074219 74.074219 267.074219 74.074219 264.238281 C 74.074219 261.40625 78.324219 261.40625 78.324219 264.238281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 84.019531 339.785156 C 84.019531 342.617188 79.765625 342.617188 79.765625 339.785156 C 79.765625 336.949219 84.019531 336.949219 84.019531 339.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 67.339844 339.785156 C 67.339844 342.617188 63.085938 342.617188 63.085938 339.785156 C 63.085938 336.949219 67.339844 336.949219 67.339844 339.785156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 83.664062 407.234375 C 83.664062 410.070312 79.414062 410.070312 79.414062 407.234375 C 79.414062 404.402344 83.664062 404.402344 83.664062 407.234375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 54.679688 407.234375 C 54.679688 410.070312 50.429688 410.070312 50.429688 407.234375 C 50.429688 404.402344 54.679688 404.402344 54.679688 407.234375 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 82.988281 175.203125 C 82.988281 178.039062 78.738281 178.039062 78.738281 175.203125 C 78.738281 172.367188 82.988281 172.367188 82.988281 175.203125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 77.714844 175.203125 C 77.714844 178.039062 73.464844 178.039062 73.464844 175.203125 C 73.464844 172.367188 77.714844 172.367188 77.714844 175.203125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 82.355469 194.089844 C 82.355469 196.925781 78.105469 196.925781 78.105469 194.089844 C 78.105469 191.253906 82.355469 191.253906 82.355469 194.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.757812 194.089844 C 81.757812 196.925781 77.507812 196.925781 77.507812 194.089844 C 77.507812 191.253906 81.757812 191.253906 81.757812 194.089844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 82.355469 80.773438 C 82.355469 83.605469 78.105469 83.605469 78.105469 80.773438 C 78.105469 77.9375 82.355469 77.9375 82.355469 80.773438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 73.542969 80.773438 C 73.542969 83.605469 69.289062 83.605469 69.289062 80.773438 C 69.289062 77.9375 73.542969 77.9375 73.542969 80.773438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 81.644531 188.695312 C 81.644531 191.527344 77.390625 191.527344 77.390625 188.695312 C 77.390625 185.859375 81.644531 185.859375 81.644531 188.695312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.925781 188.695312 C 79.925781 191.527344 75.671875 191.527344 75.671875 188.695312 C 75.671875 185.859375 79.925781 185.859375 79.925781 188.695312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 79.195312 183.296875 C 79.195312 186.132812 74.945312 186.132812 74.945312 183.296875 C 74.945312 180.464844 79.195312 180.464844 79.195312 183.296875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.035156 183.296875 C 66.035156 186.132812 61.785156 186.132812 61.785156 183.296875 C 61.785156 180.464844 66.035156 180.464844 66.035156 183.296875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.859375 345.179688 C 78.859375 348.015625 74.609375 348.015625 74.609375 345.179688 C 74.609375 342.347656 78.859375 342.347656 78.859375 345.179688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 75.28125 345.179688 C 75.28125 348.015625 71.027344 348.015625 71.027344 345.179688 C 71.027344 342.347656 75.28125 342.347656 75.28125 345.179688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.957031 345.179688 C 74.957031 348.015625 70.707031 348.015625 70.707031 345.179688 C 70.707031 342.347656 74.957031 342.347656 74.957031 345.179688 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.847656 358.671875 C 78.847656 361.503906 74.59375 361.503906 74.59375 358.671875 C 74.59375 355.835938 78.847656 355.835938 78.847656 358.671875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.078125 358.671875 C 71.078125 361.503906 66.828125 361.503906 66.828125 358.671875 C 66.828125 355.835938 71.078125 355.835938 71.078125 358.671875 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.324219 123.941406 C 78.324219 126.773438 74.074219 126.773438 74.074219 123.941406 C 74.074219 121.105469 78.324219 121.105469 78.324219 123.941406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 76.417969 123.941406 C 76.417969 126.773438 72.167969 126.773438 72.167969 123.941406 C 72.167969 121.105469 76.417969 121.105469 76.417969 123.941406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.324219 99.660156 C 78.324219 102.492188 74.074219 102.492188 74.074219 99.660156 C 74.074219 96.824219 78.324219 96.824219 78.324219 99.660156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.085938 99.660156 C 74.085938 102.492188 69.835938 102.492188 69.835938 99.660156 C 69.835938 96.824219 74.085938 96.824219 74.085938 99.660156 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 78.324219 283.125 C 78.324219 285.960938 74.074219 285.960938 74.074219 283.125 C 74.074219 280.289062 78.324219 280.289062 78.324219 283.125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 50.015625 283.125 C 50.015625 285.960938 45.761719 285.960938 45.761719 283.125 C 45.761719 280.289062 50.015625 280.289062 50.015625 283.125 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 75.910156 250.75 C 75.910156 253.582031 71.65625 253.582031 71.65625 250.75 C 71.65625 247.914062 75.910156 247.914062 75.910156 250.75 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 63.832031 250.75 C 63.832031 253.582031 59.582031 253.582031 59.582031 250.75 C 59.582031 247.914062 63.832031 247.914062 63.832031 250.75 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.660156 418.027344 C 74.660156 420.863281 70.40625 420.863281 70.40625 418.027344 C 70.40625 415.191406 74.660156 415.191406 74.660156 418.027344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.101562 418.027344 C 69.101562 420.863281 64.851562 420.863281 64.851562 418.027344 C 64.851562 415.191406 69.101562 415.191406 69.101562 418.027344 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 74.085938 253.445312 C 74.085938 256.28125 69.835938 256.28125 69.835938 253.445312 C 69.835938 250.613281 74.085938 250.613281 74.085938 253.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 68.746094 253.445312 C 68.746094 256.28125 64.492188 256.28125 64.492188 253.445312 C 64.492188 250.613281 68.746094 250.613281 68.746094 253.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 67.863281 253.445312 C 67.863281 256.28125 63.613281 256.28125 63.613281 253.445312 C 63.613281 250.613281 67.863281 250.613281 67.863281 253.445312 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 73.027344 423.425781 C 73.027344 426.257812 68.773438 426.257812 68.773438 423.425781 C 68.773438 420.589844 73.027344 420.589844 73.027344 423.425781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.078125 423.425781 C 71.078125 426.257812 66.828125 426.257812 66.828125 423.425781 C 66.828125 420.589844 71.078125 420.589844 71.078125 423.425781 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 72.179688 450.40625 C 72.179688 453.238281 67.929688 453.238281 67.929688 450.40625 C 67.929688 447.570312 72.179688 447.570312 72.179688 450.40625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.078125 450.40625 C 71.078125 453.238281 66.828125 453.238281 66.828125 450.40625 C 66.828125 447.570312 71.078125 447.570312 71.078125 450.40625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.289062 237.257812 C 71.289062 240.09375 67.039062 240.09375 67.039062 237.257812 C 67.039062 234.425781 71.289062 234.425781 71.289062 237.257812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.078125 237.257812 C 71.078125 240.09375 66.828125 240.09375 66.828125 237.257812 C 66.828125 234.425781 71.078125 234.425781 71.078125 237.257812 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 71.078125 56.488281 C 71.078125 59.324219 66.828125 59.324219 66.828125 56.488281 C 66.828125 53.65625 71.078125 53.65625 71.078125 56.488281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.164062 56.488281 C 66.164062 59.324219 61.914062 59.324219 61.914062 56.488281 C 61.914062 53.65625 66.164062 53.65625 66.164062 56.488281 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 69.707031 393.746094 C 69.707031 396.578125 65.457031 396.578125 65.457031 393.746094 C 65.457031 390.910156 69.707031 390.910156 69.707031 393.746094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.839844 393.746094 C 66.839844 396.578125 62.589844 396.578125 62.589844 393.746094 C 62.589844 390.910156 66.839844 390.910156 66.839844 393.746094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 51.007812 393.746094 C 51.007812 396.578125 46.757812 396.578125 46.757812 393.746094 C 46.757812 390.910156 51.007812 390.910156 51.007812 393.746094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.839844 277.730469 C 66.839844 280.5625 62.589844 280.5625 62.589844 277.730469 C 62.589844 274.894531 66.839844 274.894531 66.839844 277.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 66.839844 277.730469 C 66.839844 280.5625 62.589844 280.5625 62.589844 277.730469 C 62.589844 274.894531 66.839844 274.894531 66.839844 277.730469 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 64.425781 331.691406 C 64.425781 334.523438 60.171875 334.523438 60.171875 331.691406 C 60.171875 328.855469 64.425781 328.855469 64.425781 331.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 64.425781 331.691406 C 64.425781 334.523438 60.171875 334.523438 60.171875 331.691406 C 60.171875 328.855469 64.425781 328.855469 64.425781 331.691406 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 63.832031 91.5625 C 63.832031 94.398438 59.582031 94.398438 59.582031 91.5625 C 59.582031 88.730469 63.832031 88.730469 63.832031 91.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.625 91.5625 C 53.625 94.398438 49.375 94.398438 49.375 91.5625 C 49.375 88.730469 53.625 88.730469 53.625 91.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 47.007812 91.5625 C 47.007812 94.398438 42.757812 94.398438 42.757812 91.5625 C 42.757812 88.730469 47.007812 88.730469 47.007812 91.5625 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 63.832031 37.601562 C 63.832031 40.4375 59.582031 40.4375 59.582031 37.601562 C 59.582031 34.769531 63.832031 34.769531 63.832031 37.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 61.5 37.601562 C 61.5 40.4375 57.246094 40.4375 57.246094 37.601562 C 57.246094 34.769531 61.5 34.769531 61.5 37.601562 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 62.933594 45.699219 C 62.933594 48.53125 58.679688 48.53125 58.679688 45.699219 C 58.679688 42.863281 62.933594 42.863281 62.933594 45.699219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 62.371094 45.699219 C 62.371094 48.53125 58.121094 48.53125 58.121094 45.699219 C 58.121094 42.863281 62.371094 42.863281 62.371094 45.699219 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 60.773438 226.464844 C 60.773438 229.300781 56.519531 229.300781 56.519531 226.464844 C 56.519531 223.632812 60.773438 223.632812 60.773438 226.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 50.976562 226.464844 C 50.976562 229.300781 46.726562 229.300781 46.726562 226.464844 C 46.726562 223.632812 50.976562 223.632812 50.976562 226.464844 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 59.59375 32.207031 C 59.59375 35.042969 55.34375 35.042969 55.34375 32.207031 C 55.34375 29.371094 59.59375 29.371094 59.59375 32.207031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.070312 32.207031 C 53.070312 35.042969 48.816406 35.042969 48.816406 32.207031 C 48.816406 29.371094 53.070312 29.371094 53.070312 32.207031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 47.65625 32.207031 C 47.65625 35.042969 43.402344 35.042969 43.402344 32.207031 C 43.402344 29.371094 47.65625 29.371094 47.65625 32.207031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 44.980469 32.207031 C 44.980469 35.042969 40.730469 35.042969 40.730469 32.207031 C 40.730469 29.371094 44.980469 29.371094 44.980469 32.207031 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 57.261719 172.503906 C 57.261719 175.339844 53.007812 175.339844 53.007812 172.503906 C 53.007812 169.671875 57.261719 169.671875 57.261719 172.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 49.984375 172.503906 C 49.984375 175.339844 45.734375 175.339844 45.734375 172.503906 C 45.734375 169.671875 49.984375 169.671875 49.984375 172.503906 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 53.703125 426.121094 C 53.703125 428.957031 49.453125 428.957031 49.453125 426.121094 C 49.453125 423.289062 53.703125 423.289062 53.703125 426.121094 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 52.347656 426.121094 C 52.347656 428.957031 48.097656 428.957031 48.097656 426.121094 C 48.097656 423.289062 52.347656 423.289062 52.347656 426.121094 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.09375 469.765625 L 117.09375 465.511719 "/>
+<path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.632812 469.765625 L 221.632812 465.511719 "/>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-1" x="114.09375" y="478.919922"/>
+</g>
+<g style="fill:rgb(49.803922%,49.803922%,49.803922%);fill-opacity:1;">
+ <use xlink:href="#glyph0-2" x="216.132812" y="478.919922"/>
+ <use xlink:href="#glyph0-1" x="221.466797" y="478.919922"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph1-1" x="149.035156" y="492.099609"/>
+ <use xlink:href="#glyph1-2" x="155.035156" y="492.099609"/>
+ <use xlink:href="#glyph1-3" x="161.707031" y="492.099609"/>
+ <use xlink:href="#glyph1-4" x="164.371094" y="492.099609"/>
+ <use xlink:href="#glyph1-5" x="171.042969" y="492.099609"/>
+ <use xlink:href="#glyph1-6" x="177.714844" y="492.099609"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph2-1" x="19.701172" y="249.457031"/>
+ <use xlink:href="#glyph2-2" x="19.701172" y="243.457031"/>
+ <use xlink:href="#glyph2-3" x="19.701172" y="233.460938"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 312.621094 267.148438 L 478.566406 267.148438 L 478.566406 212.765625 L 312.621094 212.765625 Z M 312.621094 267.148438 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph3-1" x="316.875" y="223.286133"/>
+ <use xlink:href="#glyph3-2" x="322.736328" y="223.286133"/>
+ <use xlink:href="#glyph3-3" x="328.070312" y="223.286133"/>
+ <use xlink:href="#glyph3-2" x="331.264648" y="223.286133"/>
+ <use xlink:href="#glyph3-4" x="336.598633" y="223.286133"/>
+ <use xlink:href="#glyph3-5" x="341.932617" y="223.286133"/>
+ <use xlink:href="#glyph3-3" x="347.266602" y="223.286133"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.875 245.617188 L 334.15625 245.617188 L 334.15625 228.335938 L 316.875 228.335938 Z M 316.875 245.617188 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 327.640625 236.976562 C 327.640625 239.8125 323.386719 239.8125 323.386719 236.976562 C 323.386719 234.140625 327.640625 234.140625 327.640625 236.976562 "/>
+<path style="fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.875 262.898438 L 334.15625 262.898438 L 334.15625 245.617188 L 316.875 245.617188 Z M 316.875 262.898438 "/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;" d="M 327.640625 254.257812 C 327.640625 257.089844 323.386719 257.089844 323.386719 254.257812 C 323.386719 251.421875 327.640625 251.421875 327.640625 254.257812 "/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-3" x="336.3125" y="239.794922"/>
+ <use xlink:href="#glyph0-4" x="341.646484" y="239.794922"/>
+ <use xlink:href="#glyph0-5" x="349.110352" y="239.794922"/>
+ <use xlink:href="#glyph0-6" x="355.509766" y="239.794922"/>
+ <use xlink:href="#glyph0-3" x="361.90918" y="239.794922"/>
+ <use xlink:href="#glyph0-7" x="367.243164" y="239.794922"/>
+ <use xlink:href="#glyph0-8" x="372.577148" y="239.794922"/>
+ <use xlink:href="#glyph0-8" x="380.568359" y="239.794922"/>
+ <use xlink:href="#glyph0-9" x="388.55957" y="239.794922"/>
+ <use xlink:href="#glyph0-10" x="393.893555" y="239.794922"/>
+ <use xlink:href="#glyph0-7" x="396.023438" y="239.794922"/>
+ <use xlink:href="#glyph0-11" x="401.357422" y="239.794922"/>
+ <use xlink:href="#glyph0-9" x="406.154297" y="239.794922"/>
+ <use xlink:href="#glyph0-12" x="411.488281" y="239.794922"/>
+ <use xlink:href="#glyph0-12" x="414.682617" y="239.794922"/>
+ <use xlink:href="#glyph0-13" x="417.876953" y="239.794922"/>
+ <use xlink:href="#glyph0-11" x="423.210938" y="239.794922"/>
+ <use xlink:href="#glyph0-14" x="428.007812" y="239.794922"/>
+ <use xlink:href="#glyph0-13" x="430.674805" y="239.794922"/>
+ <use xlink:href="#glyph0-15" x="436.008789" y="239.794922"/>
+ <use xlink:href="#glyph0-7" x="441.342773" y="239.794922"/>
+ <use xlink:href="#glyph0-16" x="446.676758" y="239.794922"/>
+ <use xlink:href="#glyph0-8" x="451.473633" y="239.794922"/>
+ <use xlink:href="#glyph0-17" x="459.464844" y="239.794922"/>
+ <use xlink:href="#glyph0-10" x="461.594727" y="239.794922"/>
+ <use xlink:href="#glyph0-13" x="463.724609" y="239.794922"/>
+ <use xlink:href="#glyph0-16" x="469.058594" y="239.794922"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+ <use xlink:href="#glyph0-16" x="336.3125" y="257.076172"/>
+ <use xlink:href="#glyph0-18" x="341.109375" y="257.076172"/>
+ <use xlink:href="#glyph0-17" x="348.036133" y="257.076172"/>
+ <use xlink:href="#glyph0-16" x="350.166016" y="257.076172"/>
+ <use xlink:href="#glyph0-16" x="354.962891" y="257.076172"/>
+ <use xlink:href="#glyph0-19" x="359.759766" y="257.076172"/>
+ <use xlink:href="#glyph0-20" x="366.686523" y="257.076172"/>
+ <use xlink:href="#glyph0-14" x="372.020508" y="257.076172"/>
+ <use xlink:href="#glyph0-7" x="374.6875" y="257.076172"/>
+ <use xlink:href="#glyph0-11" x="380.021484" y="257.076172"/>
+ <use xlink:href="#glyph0-21" x="384.818359" y="257.076172"/>
+ <use xlink:href="#glyph0-12" x="390.152344" y="257.076172"/>
+ <use xlink:href="#glyph0-9" x="393.34668" y="257.076172"/>
+ <use xlink:href="#glyph0-22" x="398.680664" y="257.076172"/>
+ <use xlink:href="#glyph0-7" x="404.014648" y="257.076172"/>
+ <use xlink:href="#glyph0-3" x="409.348633" y="257.076172"/>
+ <use xlink:href="#glyph0-4" x="414.682617" y="257.076172"/>
+ <use xlink:href="#glyph0-5" x="422.146484" y="257.076172"/>
+ <use xlink:href="#glyph0-6" x="428.545898" y="257.076172"/>
+ <use xlink:href="#glyph0-3" x="434.945312" y="257.076172"/>
+</g>
+</g>
+</svg>
diff --git a/paper/NestecNestlereportdraft2.txt b/paper/NestecNestlereportdraft2.txt
new file mode 100644
index 0000000..75c71f3
--- /dev/null
+++ b/paper/NestecNestlereportdraft2.txt
@@ -0,0 +1,521 @@
+First report: Improving the performance, transparence and application of in silico models applied to risk assessment
+
+in silico toxicology gmbh
+Table of contents
+
+
+Table of contents
+D1. Report documenting the work done
+Rebuilding the original models
+Internal descriptor calculation
+lazar refactoring
+Exploratory analysis of the Swiss Federal Office of Public Health LOAEL database
+Discussions and preprocessing
+Missing and invalid SMILES
+Duplicates in the datasets
+“0” values in measured data
+Comparison of new swiss datasets with the old LOAEL dataset
+Endpoint selection
+CheS-Mapper analysis of LOAEL datasets
+Graphical user interface
+Docker virtualization
+D4. Report documenting the performance of the new model compared to the old one
+LOAEL validation results
+MOUSE and RAT Carcinogenicity (TD50) validation results
+D5. New models implemented in the internal virtual machine including the batch mode
+New Graphical User Interface (GUI)
+1. Modes
+2. Select the endpoints to be predicted
+3. Start the prediction
+LAZAR Docker Service Environment
+Docker images vs. containers
+References
+________________
+D1. Report documenting the work done
+Rebuilding the original models
+The lazar framework and its underlying computational chemistry libraries have changed substantially since the delivery of the last virtual machine. For this reason it was necessary to recreate the original models with the current lazar version (spring 2015). Initial focus was the LOAEL model.
+It was impossible to reproduce the original results due to a bug in the R code of the original version, affecting the contribution of duplicated structures in the training set and causing slightly too optimistic validation results in the presence of duplicates. Still the new model performs comparable to the old one (Table 1: Model a vs Model b) with the same descriptor values.
+
+
+Internal descriptor calculation
+In order to substitute the external descriptor calculation service (Ambit) with internal descriptor calculation the computational chemistry libraries OpenBabel, CDK and JOELib were added to the lazar framework. This required substantial modifications of the framework (e.g. for the internal generation and caching of 3D structures), but ultimately led to a larger number of successfully calculated descriptors (especially 3D descriptors, see Table1, Model c).
+
+
+Model
+ Dataset
+ Model
+ Features
+ r²
+ Number of unpredicted compounds(of 439)
+ a)
+ LOAEL-mol
+ original
+ original
+ 0.507
+ N/A
+ b)
+
+
+ new
+ original
+ 0.5
+ 20
+ c)
+
+
+ new
+ new
+ 0.506
+ 12
+ Table1: Leave-one-out validation for the LOAEL model
+
+
+lazar refactoring
+While working with the LOAEL models and other datasets we realized that the current lazar version has several scalability and performance problems, especially for large datasets. In order to address these issues we had to revise previous design decisions (e.g. RDF de/serialization, separate webservices for each OpenTox object) and refactor the lazar framework.
+This was a major effort, because it required a complete restructuring of the codebase and a rewrite of large parts of the code. Ultimately we were able to
+* speedup prediction (and validation) substantially (> 1000 times faster)
+* remove system bottlenecks for large datasets
+* improve modularization for experiments with similarity and prediction algorithms
+* simplify the installation process
+* reduce and simplify the codebase to improve maintenance
+Despite a major rewrite lazar still follows the same basic read-across principle of searching for similar compounds and using their experimental data for building a local model. At the moment the following algorithm modifications have been made in comparison to the original lazar models:
+* Neighbor search is based on MolPrint2D (Bender 2004) instead of Fminer fragments
+* Regression predictions are obtained from the weighted average of neighbor activities instead of radial SVM models
+This selection can be seen as the simplest algorithms that provide reasonable performance in terms of speed, predictivity and number of predictable compounds. They will serve as a baseline for the investigation of more complex algorithms (e.g. more sophisticated local models).
+
+
+Exploratory analysis of the Swiss Federal Office of Public Health LOAEL database
+Discussions and preprocessing
+
+
+The spreadsheet of the swiss data has four tables: Codes, rat_chron, mouse_chron and multigen.
+* “Codes” contains descriptions of column names of the following three tables
+* “rat_chron” shows rat study data including identifier and measured values
+* “mouse_chron” shows mouse study data including identifier and measured values
+* “multigen” shows multi-generation rat study data including identifier and measured values
+
+
+Common columns with identifier are “CASNR”, “CAS name”, “SMILES”.
+All study tables provide a “function” and chemical “class” for the studies.
+
+
+Missing and invalid SMILES
+Unfortunately no identifier is complete across all compound therefore we focused on SMILES. Missing SMILES were generated from other identifiers when available.
+
+
+study type/ table
+ rat_chron
+ mouse_chron
+ multigen
+ missing SMILES
+ 35
+ 27
+ 31
+ invalid SMILES
+ 9
+ 6
+ 9
+ corrected SMILES
+ 44
+ 33
+ 40
+ Detailed tables:
+https://docs.google.com/spreadsheets/d/14P8F-3iX5gr5FbN7oSeuwabUOr_xdDhhr5KwiUX6LXY/edit?usp=sharing
+
+
+Duplicates in the datasets
+The swiss data has duplicate compounds for each study type but also across all types.
+
+
+study type/ table
+ rat_chron
+ mouse_chron
+ multigen
+ all
+ # studies/ compounds
+ 578
+ 488
+ 517
+ 1583
+ unique structures
+ 428
+ 409
+ 402
+ 439
+ corrected SMILES
+ 44
+ 33
+ 40
+ 117
+ unique added SMILES
+ 38
+ 31
+ 35
+ 39
+
+
+This table shows that across the study type mostly the same compound are present. Over all tables 39 compounds have invalid or missing SMILES available but all of them could be corrected or created.
+
+
+“0” values in measured data
+Studies with undefined (“0”) or empty entries for “dose value”(endpoint) were removed from the tables.
+
+
+The resulting datasets are still separated by their study type (rat, mouse and multigen). Each table includes the chemical structure as SMILES and all provided “food concentration” and “dose” values. This structure is ideal to continue with analysis and modelling. Initial modelling tests with lazar were successful.
+
+
+
+
+Comparison of new swiss datasets with the old LOAEL dataset
+Endpoint selection
+The measured value "LOAEL parental as dose (mg/kg bw per day)" is present in all new study types and selected as main endpoint for the data comparison.
+
+
+The following table shows the overlap of datasets. It lists the number of compounds that are common in both datasets. The diagonal shows the total number of compounds and the number of unique structures.
+
+
+
+
+ LOAEL old
+ LOAEL rat
+ LOAEL mouse
+ LOAEL multigen
+ LOAEL old
+ 562 (439)
+ 162
+ 144
+ 140
+ LOAEL rat
+
+
+ 493 (381)
+ 322
+ 321
+ LOAEL mouse
+
+
+
+
+ 393 (339)
+ 292
+ LOAEL multigen
+
+
+
+
+
+
+ 398 (340)
+
+
+Number of unique structures that are only present one dataset:
+LOAEL old
+ LOAEL rat
+ LOAEL mouse
+ LOAEL multigen
+ 269
+ 13
+ 4
+ 8
+
+
+Unique structures that are not in LOAEL old:
+
+
+ LOAEL rat
+ LOAEL mouse
+ LOAEL multigen
+ Not in LOAEL old
+ 219
+ 195
+ 200
+ The new LOAEL tables have the majority of structures in common.
+
+
+There are many compounds included in more than one dataset. But it is possible to build models with the data even if the applicability domain will be very similar.
+Since the old LOAEL data is based on rat data it is probably beneficial to merge them with the swiss rat data.
+
+
+CheS-Mapper analysis of LOAEL datasets
+
+
+CheS-Mapper (Chemical Space Mapping and Visualization in 3D, http://ches-mapper.org/, Gütlein 2012) can be used to analyze the relationship between the structure of chemical compounds, their physico-chemical properties, and biological or toxic effects. CheS-Mapper embeds a dataset into 3D space, such that compounds with similar feature values are close to each other.
+We explored the structural and physico-chemical diversity of the different LOAEL datasets in an interactive section together with Elena LoPiparo. The main conclusion was that old and new LOAEL datasets cover a similar chemical space and we recommend to merge them into a single dataset for LOAEL model development.
+The following two screenshots visualise the comparison. The datasets are embeded into 3D Space based on structural fragments from three Smart list (OpenBabel FP3, OpenBabel FP4 and OpenBabel MACCS).
+
+
+Blue dots are the swiss datasets, red dots represent the old dataset.
+
+
+
+
+Blue dots represent the old dataset, red is mouse, green is multigen and yellow is rat.
+
+
+Graphical user interface
+In order to adapt to the new lazar framework a new graphical interface had to be written. The new version includes batch predictions, a detailed description can be found section D5.
+Docker virtualization
+In order to meet requirements of the IT-department new versions are delivered as docker images. Our docker images are now completely self-contained and do not need any external services. Section D5 contains instructions for the installation of IST docker images and some background information.
+
+
+D4. Report documenting the performance of the new model compared to the old one
+
+
+LOAEL validation results
+
+
+The validation results are based on three independent 10 fold crossvalidations.
+
+
+
+
+model
+ r²
+ Root Mean Square Error
+ Mean Absolute Error
+ number unpredicted
+ based on
+ LOAEL-mmol (Nestle docker 2015)
+ 0.29/0.292/0.294
+ 0.905/0.89/0.895
+ 0.687/0.688/0.694
+ 227/224/225 (of 567)
+ 3 x 10 fold cross validations
+ LOAEL-mmol (Nestle VM 2012)
+ 0.506
+ 0.762
+ 0.594
+ N/A
+ LOO cross validation
+
+
+This table indicates that the predictivity of the latest LOAEL models is still lower than the old LOAEL model and the LOAEL models developed at the beginning of the project. Predictivities can be increased substantially by raising similarity thresholds for neighbors, but this comes at the cost of a larger number of unpredicted compounds. We are presently using a very simple (but fast) regression algorithm (weighted neighbor average) and hope to increase the model accuracy with slightly more complex local regression algorithms (e.g. local linear regression).
+
+
+MOUSE and RAT Carcinogenicity (TD50) validation results
+
+
+
+
+The validation results (2015) are based on three independent 10 fold crossvalidations.
+
+
+
+
+model
+ r²
+ Root Mean Square Error
+ Mean Absolute Error
+ number unpredicted
+ based on
+ Rat (Nestle docker 2015)
+ 0.28/0.299/0.23
+ 1.188/1.156/1.25
+ 0.909/0.898/0.928
+ 37/38/33 (of 511)
+ 3 x 10 fold cross validations
+ Mouse (Nestle docker 2015)
+ 0.207/0.232/0.226
+ 1.066/1.04/1.045
+ 0.779/0.774/0.776
+ 31/30/31 (of 402)
+ 3 x 10 fold cross validations
+
+
+The old mouse and rat carcinogenicity models were validated against a specific testset (which usually leads to overfitting and poorer performance for other predictions). Independent leave-one out crossvalidation experiments with these models showed that the actual r² of these models is lower than 0.1. This indicates that the new models are already much more accurate than the old ones and we hope to increase the predictivity further with better similarity and regression algorithms.
+
+
+D5. New models implemented in the internal virtual machine including the batch mode
+
+
+IST delivered 2 versions of the virtual machine (as docker images) to Nestles IT department. The following two sections contain detailed descriptions of the graphical user interface and of the installation and maintenance of IST docker images.
+New Graphical User Interface (GUI)
+
+
+LAZAR comes with a simple GUI (Graphical User Interface) for inputting data and viewing prediction results. It contains two main pages:
+
+
+Start page:
+
+
+1. Modes:
+1.1 Single mode - Input a single compound that should be predicted.
+1.2 Batch mode - Upload a file with several compounds.
+
+1. Select a model for the endpoints to be predicted
+ 1. Inspect details and validation results of a model
+
+
+ 3. Start the prediction
+
+
+Result page:
+
+
+1. Single mode:
+ 1. Overview of the prediction results.
+ 2. View a list of the neighbor compounds for each selected model.
+
+
+1. Batch mode:
+ 1. Overview of the prediction results.
+ 2. Download the prediction results in a CSV file.
+1. Modes
+
+
+1.1
+Draw a compound with the JSME Modular Editor from Peter Ertl
+
+
+1.1
+Or insert a SMILES string
+
+
+1.2
+Select and upload a file for batch predictions. Requires a CSV file (select “Export to CSV” in Excel or other Spreadsheet programs) with the type (SMILES or InChI) defined in the first header followed by the compounds in the first column. All other columns are ignored from this file.
+
+
+Example input:
+
+
+SMILES
+CCCCCCCCOC(=O)C1=CC=C(C(=O)OCCCCCCCC)C=C1
+O=C1NC(=O)NC=C1
+O=C2C1=NC3=C(C=C(C)C(C)=C3)N(C[C@H](O)[C@H](O)[C@H](O)CO)C1=NC(N2)=O
+O=C1C2=C(C=CC=C2)C(=O)C3=C1C=CC=C3
+CCC1=C(Br)C(Br)=C(Br)C(Br)=C1Br
+C1CCCCC1C2CCCCC2
+C1=CC(C)=CC=C1SSC2=CC=C(C)C=C2
+CCCCCCCCCCCCCO
+
+
+2. Select the endpoints to be predicted
+
+
+
+
+Choose one or more endpoint models.
+
+
+2.1
+
+
+
+
+Detailed model information can be displayed with the Details | Validation button. It contains details about the training dataset, the modelling algorithm and validation results. Models are validated with three independent 10-fold crossvalidations.
+
+
+3. Start the prediction
+
+
+
+
+The Predict button starts the prediction process. Calculations may take some time, you will be directed to the Results page.
+
+
+
+
+Result page:
+
+
+The Result page appearance depends on the selected prediction mode.
+With “1.1 Single mode” an overview of prediction results will be displayed in a single row:
+
+
+
+
+The first cell depicts the input structure, the remaining entries display prediction results.
+Predictions are shown in molar and weight units. Measured activities will be displayed, if the training dataset contains the query structure. The confidence value indicates the reliability of the prediction.
+IMPORTANT: At the time of writing this report confidence values are not working properly for regression models! Please inspect the neighbors (see below) to estimate the reliability of predictions.
+
+
+
+
+The following table gives an overview of similar (neighbor) compounds that have been used for the prediction:
+
+
+
+
+
+
+The table displays the chemical structure, measured activities and the similarity of all neighbor. If the training dataset contains duplicated structures with different measured activities they will be treated as separate neighbors and influence the prediction results accordingly.
+Neighbors are sorted by default by descending similarities, other sorting criteria can be selected with a click on the arrows in the table header.
+Select one of the tabs at the top to switch to another endpoint.
+
+
+With “1.2 Batch mode” the result page is slightly different:
+
+
+
+
+
+
+Results are displayed in a table with prediction results for all submitted compounds. Each row displays the same information as the overview in “1.1 Single mode”.
+
+
+Additionally the table can be downloaded as CSV file (choose “Import CSV” to import into Excel or other Spreadsheet programs).
+
+
+
+
+
+
+The resulting file contains the same information as the GUI table.
+
+
+LAZAR Docker Service Environment
+
+
+The LAZAR service comes with his own environment that includes everything needed to run the service without changes to your operating system (OS) .
+In order to achieve this we use the Docker environment (www.docker.com) which is a code platform where you can install and manage virtual a OS on your host machine. Docker is the only program that is needed to be installed on the host OS.
+The main benefit of running lazar in a docker image is the independence from the host OS and the possibility for versioning the different development stages of our service.
+
+
+Docker manages different stages of an OS and all included programs and services as images. These images can be shared with the external Docker HUB service (https://hub.docker.com) via SSH access to keep them private.
+
+
+We started with Debian 7 as the OS for the LAZAR service followed by an installation of all necessary programs and tools required for the service. The LAZAR service provided is actually separated into the main LAZAR code and the LAZAR-GUI interface. After installation we took a snapshot of the current state of the virtual OS in order to save all installed programs within this Docker image.
+
+
+docker pull gebele/nestec:v7
+
+
+
+
+To use this image you have to download the image via the docker platform installed on your host OS and start it by passing some extra flags.
+
+
+docker run -p 8088:8088 -itd gebele/nestec:v7 bash -c "/etc/init.d/supervisor start && /etc/init.d/lazar start"
+
+
+-p, allows you to route the internal port 8088 to any of your host ports (in this case also 8088).
+-itd, tells the docker image to run in detached mode with a console.
+gebele/nestec:v7, describes the actual name of the image and a tag (in this case v7 which we use for versioning).
+-c, tells the interactive image console to run a command.
+
+
+This builds a running Docker container where the LAZAR service is up and running inside. Point your browser to http://localhost:8088/ and you can see the LAZAR-GUI.
+
+
+
+
+
+
+Docker images vs. containers
+
+
+To understand the difference of an image and container you can see images as versions of the service and containers as the service program you actually work with.
+
+
+Every run command creates a new container from an image. This behavior can be used to run several instances of the LAZAR service in parallel. For example if you want to run different development stages to compare or if you like to give several users their own instance of the same version to work with, all you have to do is give each container its own port forwarding to the host by adjust the -p flag with different host ports.
+
+
+A running container can be stopped with the docker stop CONTAINER_ID command which is commonly used for stopping an old version before you update and run a new version. If for any reason you want re-run an older LAZAR version you can just start the container again docker start CONTAINER_ID and the LAZAR service gets automatically started again and works like you leaved it the last time.
+
+
+________________
+References
+Andreas Bender, Hamse Y. Mussa, and Robert C. Glen. Molecular Similarity Searching Using Atom Environments, Information-Based Feature Selection, and a Naive Bayesian Classifier. J. Chem. Inf. Comput. Sci. 2004, 44, 170-178.
+
+
+Gütlein M, Karwath A, Kramer S. CheS–Mapper–Chemical space mapping and visualization in 3D. J Cheminform. 2012;4:7. doi: 10.1186/1758-2946-4-7. [PubMed] [Cross Ref] \ No newline at end of file
diff --git a/paper/loael.rst b/paper/loael.rst
new file mode 100644
index 0000000..2a5bbea
--- /dev/null
+++ b/paper/loael.rst
@@ -0,0 +1,9 @@
+Introduction
+
+Data
+
+Models
+
+Validation
+
+Discussion