]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Convert step-2 to a simplex test 11449/head
authorPeter Munch <peterrmuench@gmail.com>
Thu, 31 Dec 2020 12:15:51 +0000 (13:15 +0100)
committerPeter Munch <peterrmuench@gmail.com>
Tue, 5 Jan 2021 22:03:32 +0000 (23:03 +0100)
tests/simplex/step-02.cc [new file with mode: 0644]
tests/simplex/step-02.with_simplex_support=on.output [new file with mode: 0644]

diff --git a/tests/simplex/step-02.cc b/tests/simplex/step-02.cc
new file mode 100644 (file)
index 0000000..32cf829
--- /dev/null
@@ -0,0 +1,102 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2020 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE.md at
+// the top level directory of deal.II.
+//
+// ---------------------------------------------------------------------
+
+
+// Step-02 on a simplex mesh. Following incompatible modifications had to be
+// made:
+//  - The function GridGenerator::hyper_shell() is only working for hypercube
+//    meshes. Use this function to create a temporary mesh and convert it to
+//    simplex mesh.
+//  - Local refinement is replaced by global refinement.
+
+
+#include <deal.II/dofs/dof_handler.h>
+#include <deal.II/dofs/dof_renumbering.h>
+#include <deal.II/dofs/dof_tools.h>
+
+#include <deal.II/grid/grid_generator.h>
+#include <deal.II/grid/tria.h>
+#include <deal.II/grid/tria_accessor.h>
+#include <deal.II/grid/tria_iterator.h>
+
+#include <deal.II/lac/dynamic_sparsity_pattern.h>
+#include <deal.II/lac/sparse_matrix.h>
+
+#include <deal.II/simplex/fe_lib.h>
+
+#include <fstream>
+
+#include "../tests.h"
+
+using namespace dealii;
+
+void make_grid(Triangulation<2> &triangulation)
+{
+  Triangulation<2> triangulation_temp;
+
+  const Point<2> center(1, 0);
+  const double   inner_radius = 0.5, outer_radius = 1.0;
+  GridGenerator::hyper_shell(
+    triangulation_temp, center, inner_radius, outer_radius, 5);
+
+  GridGenerator::convert_hypercube_to_simplex_mesh(triangulation_temp,
+                                                   triangulation);
+
+  triangulation.refine_global(); // WARNING: no local refinement is performed
+}
+
+void distribute_dofs(DoFHandler<2> &dof_handler)
+{
+  const Simplex::FE_P<2> finite_element(1);
+  dof_handler.distribute_dofs(finite_element);
+
+  DynamicSparsityPattern dynamic_sparsity_pattern(dof_handler.n_dofs(),
+                                                  dof_handler.n_dofs());
+
+  DoFTools::make_sparsity_pattern(dof_handler, dynamic_sparsity_pattern);
+
+  SparsityPattern sparsity_pattern;
+  sparsity_pattern.copy_from(dynamic_sparsity_pattern);
+
+  sparsity_pattern.print_svg(deallog.get_file_stream());
+}
+
+void renumber_dofs(DoFHandler<2> &dof_handler)
+{
+  DoFRenumbering::Cuthill_McKee(dof_handler);
+
+  DynamicSparsityPattern dynamic_sparsity_pattern(dof_handler.n_dofs(),
+                                                  dof_handler.n_dofs());
+  DoFTools::make_sparsity_pattern(dof_handler, dynamic_sparsity_pattern);
+
+  SparsityPattern sparsity_pattern;
+  sparsity_pattern.copy_from(dynamic_sparsity_pattern);
+
+  sparsity_pattern.print_svg(deallog.get_file_stream());
+}
+
+int
+main()
+{
+  initlog();
+
+  Triangulation<2> triangulation;
+  make_grid(triangulation);
+
+  DoFHandler<2> dof_handler(triangulation);
+
+  distribute_dofs(dof_handler);
+  renumber_dofs(dof_handler);
+}
diff --git a/tests/simplex/step-02.with_simplex_support=on.output b/tests/simplex/step-02.with_simplex_support=on.output
new file mode 100644 (file)
index 0000000..b96b281
--- /dev/null
@@ -0,0 +1,1267 @@
+
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 102 102 ">
+<style type="text/css" >
+     <![CDATA[
+      rect.pixel {
+          fill:   #ff0000;
+      }
+    ]]>
+  </style>
+
+   <rect width="102" height="102" fill="rgb(128, 128, 128)"/>
+   <rect x="1" y="1" width="100.100" height="100.100" fill="rgb(255, 255, 255)"/>
+
+  <rect class="pixel" x="1" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="100" width=".9" height=".9"/>
+</svg>
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 102 102 ">
+<style type="text/css" >
+     <![CDATA[
+      rect.pixel {
+          fill:   #ff0000;
+      }
+    ]]>
+  </style>
+
+   <rect width="102" height="102" fill="rgb(128, 128, 128)"/>
+   <rect x="1" y="1" width="100.100" height="100.100" fill="rgb(255, 255, 255)"/>
+
+  <rect class="pixel" x="1" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="1" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="2" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="3" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="1" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="4" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="5" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="6" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="2" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="7" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="3" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="8" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="4" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="9" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="10" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="11" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="12" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="7" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="13" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="5" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="14" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="15" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="16" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="17" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="6" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="18" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="8" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="19" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="9" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="20" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="21" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="22" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="23" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="24" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="25" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="26" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="15" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="22" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="27" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="25" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="28" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="27" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="29" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="13" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="30" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="10" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="31" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="12" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="16" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="24" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="32" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="11" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="33" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="18" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="34" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="19" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="20" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="26" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="35" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="14" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="36" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="17" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="37" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="38" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="21" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="39" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="23" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="40" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="41" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="28" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="30" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="32" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="42" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="42" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="43" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="31" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="44" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="45" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="36" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="46" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="47" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="33" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="48" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="49" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="50" width=".9" height=".9"/>
+  <rect class="pixel" x="51" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="29" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="34" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="35" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="37" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="51" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="38" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="52" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="41" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="53" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="54" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="43" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="52" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="55" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="56" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="50" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="53" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="57" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="39" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="58" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="55" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="59" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="40" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="60" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="57" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="61" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="44" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="62" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="45" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="46" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="63" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="48" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="64" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="47" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="49" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="65" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="66" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="67" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="68" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="69" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="54" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="70" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="58" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="62" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="71" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="59" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="63" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="72" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="60" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="73" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="56" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="64" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="74" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="61" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="65" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="75" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="76" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="77" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="78" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="79" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="66" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="80" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="67" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="81" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="68" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="82" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="69" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="83" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="70" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="71" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="72" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="84" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="73" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="74" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="75" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="85" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="76" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="86" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="78" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="87" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="77" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="88" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="79" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="89" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="80" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="90" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="91" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="92" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="82" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="93" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="81" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="84" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="94" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="83" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="85" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="95" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="96" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="86" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="87" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="97" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="88" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="89" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="98" width=".9" height=".9"/>
+  <rect class="pixel" x="99" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="90" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="93" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="97" y="99" width=".9" height=".9"/>
+  <rect class="pixel" x="100" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="91" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="92" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="94" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="95" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="96" y="100" width=".9" height=".9"/>
+  <rect class="pixel" x="98" y="100" width=".9" height=".9"/>
+</svg>

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.