Commit e3c09fd3 by Hubert

first prototype finished

1 parent 1952f3fa
Showing with 2845 additions and 161 deletions
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
# config.mk
SKETCH = kompost.ino
UPLOAD_PORT = /dev/ttyUSB0
# BOARD = es8266
UPLOAD_SPEED = 115200
#THIS_DIR := $(realpath $(dir $(realpath $(lastword $(MAKEFILE_LIST)))))
CUSTOM_LIBS = /home/hubert/.arduino15/Arduino/libraries
# CUSTOM_LIBS = /home/hubert/.arduino15/
#CUSTOM_LIBS = /home/hubert/.arduino15/packages/esp8266/hardware/esp8266/2.7.4/libraries
#CUSTOM_LIBS = /home/hubert/.arduino15
# ROOT := $(THIS_DIR)/..
# LIBS = $(ESP_LIBS)/SPI \
# $(ESP_LIBS)/Wire \
# $(ESP_LIBS)/ESP8266WiFi \
# $(THIS_DIR)/libraries
# # $(ROOT)/ext_lib
......@@ -4,13 +4,13 @@ void loop_control( int counter ) {
// i'm alive / heartbeat
/* pcf8574.digitalWrite(led, counter % 2); */
if (button1->pressed) {
rotate_start(button1);
}
/* if (button1->pressed) { */
/* rotate_start(button1); */
/* } */
if (button1->released) {
device_end(button1);
}
/* if (button1->released) { */
/* device_end(button1); */
/* } */
/* unsigned int buttonCondition = buttonHolding; */
/* unsigned int liquid_levelCondition = ( */
......
......@@ -12,14 +12,15 @@
#include "mqtt.h"
// Number = pcfPIN - one action per pin / no diode crap anymore
#define dive 1
#define diaphragm 2
#define peristaltic 3
#define peristaltic_reverse 4
#define src_valve_pump 5
#define dst_valve_rotate 6
#define dst_valve_watersource 7
#define dst_valve_rotate 1
#define dst_valve_watersource 2
#define diaphragm 3
#define peristaltic 4
#define peristaltic_reverse 5
#define dive 6
#define src_valve_pump 7
#define off 0
......
......@@ -7,20 +7,20 @@ void insertSequence(int device, int start_value, int end_value, double duration,
ptr->end_value = end_value;
ptr->action = action;
ptr->next = NULL;
Serial.println("is0");
/* Serial.println("is0"); */
if ( sequence_tail == NULL ) {
Serial.println("is1");
/* Serial.println("is1"); */
sequence_head = ptr;
set_relay(device, start_value);
ptr->end = action->start + duration;
} else {
Serial.println("is2");
/* Serial.println("is2"); */
sequence_tail->next = ptr;
ptr->start = sequence_tail->end;
ptr->end = sequence_tail->end + duration;
}
Serial.println("is3");
/* Serial.println("is3"); */
sequence_tail=ptr;
}
......@@ -60,10 +60,10 @@ void monitor_sequence_duration() {
double remaining = sequence_head->end - ut;
String remainingStr(remaining);
Serial.println("--------------- Duration");
Serial.println(duration);
Serial.println(remainingStr);
Serial.println("---------------");
/* Serial.println("--------------- Duration"); */
/* Serial.println(duration); */
/* Serial.println(remainingStr); */
/* Serial.println("---------------"); */
mqttClient.publish(duration, remainingStr );
}
......@@ -73,9 +73,9 @@ int fill_start(struct action *ptr) {
insertSequence( dst_valve_rotate, 0, 0, 0, ptr );
insertSequence( dst_valve_watersource, 1, 1, 0, ptr );
insertSequence( src_valve_pump, 0, 0, 0, ptr );
insertSequence( peristaltic_reverse, 1, 0, 5, ptr ); // fill hose for 5 seconds
insertSequence( peristaltic_reverse, 1, 0, 10, ptr ); // fill hose for 10 seconds
insertSequence( src_valve_pump, 1, 0, ptr->data, ptr ); // let gravity do its work
insertSequence( peristaltic, 1, 0, 5, ptr ); // vent hose for 5 seconds
insertSequence( peristaltic, 1, 0, 10, ptr ); // vent hose for 10 seconds
insertSequence( dst_valve_watersource, 0, 0, 0, ptr );
return 1;
} else {
......@@ -125,21 +125,24 @@ void set_relay(int device, int value) {
String state(pre + device + "/state");
String valueStr( value );
mqttClient.publish(state, valueStr );
Serial.println("--------------- Relay");
Serial.println(state);
Serial.println(valueStr);
Serial.println("---------------");
int pin = 1;
while ( pin < 7 ) {
if ( device == pin
/* || step->src_valve == pin */
/* || step->dst_valve == pin */
) {
/* pcf8574.digitalWrite(pin,0); */
} else {
/* pcf8574.digitalWrite(pin,1); */
}
pin++;
}
pcf8574.digitalWrite(device,!value); // sink; 1 == relay off (nc), 0 = relay on (no)
/* Serial.println("--------------- Relay"); */
/* Serial.println(state); */
/* Serial.println(valueStr); */
/* Serial.println("---------------"); */
/* int pin = 1; */
/* while ( pin < 7 ) { */
/* if ( device == pin */
/* /\* || step->src_valve == pin *\/ */
/* /\* || step->dst_valve == pin *\/ */
/* ) { */
/* /\* pcf8574.digitalWrite(pin,0); *\/ */
/* } else { */
/* /\* pcf8574.digitalWrite(pin,1); *\/ */
/* } */
/* pin++; */
/* } */
}
......@@ -3,13 +3,15 @@
#include <math.h>
#include <Wire.h>
#include "PCF8591.h"
#include "pcf.h"
#include "wifi.h"
#include "sonar.h"
#include "pcf.h"
#include "mqtt.h"
#include "queue.h"
#include "device.h"
/* #include "control.h" */
/* #include "control.h" */
......@@ -17,13 +19,15 @@ unsigned int counter = 0;
void setup(void) {
Serial.begin(115200);
/* Serial.begin(115200); */
delay(100);
setup_wifi();
pinMode(LED_BUILTIN, OUTPUT);
/* pinMode(LED_BUILTIN, OUTPUT); */
setup_sonar();
/* delay(5000); */
setup_pcf();
setup_sonar();
delay(100);
setup_mqtt();
/* setup_queue(); */
}
......@@ -33,12 +37,29 @@ void loop(void) {
delay(500);
counter++;
/* sensors_event_t temp_event, pressure_event; */
/* bmp_temp->getEvent(&temp_event); */
/* bmp_pressure->getEvent(&pressure_event); */
loop_sonar(counter);
/* String liquidLevelAvgStr(liquid_level_avg()); */
/* mqttClient.publish(PREAMBLE T_SDIST, liquidLevelAvgStr ); */
/* pcf8574.digitalWrite(0,counter % 2); */
/* float ana0V = pcf8591.voltageRead(AIN0); // Read voltage from analog 0 */
/* int ana = pcf8591.analogRead(AIN0); */
String moistureLevelStr(pcf8591.analogRead(0));
mqttClient.publish(PREAMBLE T_MOIST, moistureLevelStr );
String temp(bmp.readTemperature());
mqttClient.publish(PREAMBLE T_TEMP, temp );
String liquidLevelAvgStr(liquid_level_avg());
mqttClient.publish(PREAMBLE T_SDIST, liquidLevelAvgStr );
/* String temp(temp_event.temperature); */
loop_pcf();
/* loop_pcf(); */
loop_queue();
loop_device();
/* loop_control(counter); */
......
......@@ -12,6 +12,8 @@ MQTT mqttClient(device_id, mqtt_server, 1883);
#define PREAMBLE "home/compost/"
#define T_RDIST "rawdistance"
#define T_SDIST "waterlevel"
#define T_TEMP "temperature"
#define T_MOIST "moisture"
#define T_PUMPSOURCE "pumpsource"
#define T_PUMPSTATE "pumpstate"
#define T_PUMPLEVEL "pumplevel"
......
......@@ -18,7 +18,7 @@ void setup_mqtt() {
void mqttSubscribe() {
/* mqttClient.subscribe("home/compost/pump"); */
Serial.println("mqttSubscribe");
/* Serial.println("mqttSubscribe"); */
mqttClient.subscribe(PREAMBLE T_FILL TS_DURATION,1);
mqttClient.subscribe(PREAMBLE T_ROTATE TS_DURATION ,1);
mqttClient.subscribe(PREAMBLE T_FERTILIZE TS_DURATION ,1);
......@@ -31,22 +31,22 @@ void mqttPublished() {
void mqttConnected() {
mqttSubscribe();
Serial.println("connected");
/* Serial.println("connected"); */
}
void mqttDisconnected() {
Serial.println("disconnected");
/* Serial.println("disconnected"); */
delay(500);
mqttClient.connect();
}
void mqttData(String& topic, String& data) {
Serial.println("mqttData");
/* Serial.println("mqttData"); */
String dataStr(data);
Serial.println(topic);
Serial.println(PREAMBLE T_FILL TS_DURATION);
/* Serial.println(topic); */
/* Serial.println(PREAMBLE T_FILL TS_DURATION); */
if (topic == PREAMBLE T_FILL TS_DURATION) {
Serial.println("rotate duration");
/* Serial.println("rotate duration"); */
enqueue(C_FILL_DURATION, time(NULL), stringToLong(dataStr));
}
if (topic == PREAMBLE T_ROTATE TS_DURATION) {
......
......@@ -7,7 +7,13 @@
#include <Wire.h>
#include "PCF8574.h"
PCF8574 pcf8574(0x20, 0, 2);
#include "PCF8591.h"
const unsigned int sda = 0;
const unsigned int scl = 2;
PCF8574 pcf8574(0x20, scl, sda);
/* PCF8591 pcf8591(0x49, scl, sda); */
PCF8591 pcf8591(0x49);
int led = 0;
int PINbutton1 = 1;
......
......@@ -8,34 +8,35 @@ void updateButton(struct button *buttonX) {
}
void setup_pcf () {
pcf8574.pinMode(PINbutton1, INPUT);
pcf8574.pinMode(PINbutton2, INPUT);
pcf8574.pinMode(PINbutton3, INPUT);
pcf8574.pinMode(led, OUTPUT);
pcf8574.pinMode(leeren11, OUTPUT);
pcf8574.pinMode(leeren1, OUTPUT);
pcf8574.pinMode(leeren2, OUTPUT);
pcf8574.pinMode(fuellen2, OUTPUT);
pcf8591.begin(sda,scl);
for (int pin = 0; pin < 8; pin ++) {
pcf8574.pinMode(pin, OUTPUT);
}
pcf8574.begin();
for (int pin = 0; pin < 8; pin ++) {
pcf8574.digitalWrite(pin,1);
}
button1->pin = 1;
button1->holding = 0;
button1->pressed = 0;
button1->released = 0;
/* button1->pin = 1; */
/* button1->holding = 0; */
/* button1->pressed = 0; */
/* button1->released = 0; */
button2->pin = 2;
button2->holding = 0;
button2->pressed = 0;
button2->released = 0;
/* button2->pin = 2; */
/* button2->holding = 0; */
/* button2->pressed = 0; */
/* button2->released = 0; */
button3->pin = 3;
button3->holding = 0;
button3->pressed = 0;
button3->released = 0;
/* button3->pin = 3; */
/* button3->holding = 0; */
/* button3->pressed = 0; */
/* button3->released = 0; */
}
void loop_pcf () {
updateButton(button1);
updateButton(button2);
updateButton(button3);
/* updateButton(button1); */
/* updateButton(button2); */
/* updateButton(button3); */
}
#include "queue.h"
void enqueue(int command, double start, double data) {
Serial.println("enqueue");
/* Serial.println("enqueue"); */
/* // no dupes, only create new if it is scheduled */
/* while(ptr != NULL) { */
/* if ( command == T_PUMPLEVEL */
......@@ -125,9 +125,9 @@ void loop_queue() {
if ( ptr->running == 1
&& ut >= ptr->end
) {
Serial.println("end");
/* Serial.println("end"); */
entry_end(ptr);
Serial.println("end1");
/* Serial.println("end1"); */
/* action is due to removal */
if (prev != NULL) {
......@@ -137,7 +137,7 @@ void loop_queue() {
if (ptr == head) {
head = ptr->next;
}
Serial.println("end5");
/* Serial.println("end5"); */
/* if (ptr == tail) { */
/* tail = prev; */
/* } */
......
......@@ -3,6 +3,12 @@
#include <NewPing.h>
/* #include <Adafruit_BMP085.h> */
/* Adafruit_BMP085 bmp; */
#include <Adafruit_Sensor.h>
#include <Adafruit_BMP280.h>
Adafruit_BMP280 bmp;
Adafruit_Sensor *bmp_temp = bmp.getTemperatureSensor();
Adafruit_Sensor *bmp_pressure = bmp.getPressureSensor();
#define TRIGGER_PIN 1
#define ECHO_PIN 3
......@@ -11,6 +17,7 @@
#define containerBase 113 /* distance to ground in mm */
int measurements [] = {0,0,0,0,0};
int liquidLevel = 10;
double temperature = 0;
int dubugLiquid = 0;
......
#include "sonar.h"
void setup_sonar() {
/* pinMode(1, FUNCTION_3); */
/* pinMode(3, FUNCTION_3); */
/* bmp.begin(); */
pinMode(1, FUNCTION_3);
pinMode(3, FUNCTION_3);
String temp(bmp.readTemperature());
bmp.begin(0x76);
/* bmp.setSampling(Adafruit_BMP280::MODE_NORMAL, /\* Operating Mode. *\/ */
/* Adafruit_BMP280::SAMPLING_X2, /\* Temp. oversampling *\/ */
/* Adafruit_BMP280::SAMPLING_X16, /\* Pressure oversampling *\/ */
/* Adafruit_BMP280::FILTER_X16, /\* Filtering. *\/ */
/* Adafruit_BMP280::STANDBY_MS_500); /\* Standby time. *\/ */
}
void loop_sonar(int counter) {
......@@ -20,7 +29,8 @@ double liquid_level() {
double liquidLevel =
containerBase
- ((
dubugLiquid /* sonar.ping_median(5) */
/* dubugLiquid */
sonar.ping_median(5)
* speedOfSound
/ 2 )
/ 1000
......
File mode changed
......@@ -5,10 +5,10 @@ void setup_wifi() {
WiFi.begin(ssid, password);
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
Serial.println("delay");
/* Serial.println("delay"); */
delay(500);
}
if (MDNS.begin(host)) {
Serial.println("MDNS responder started");
/* Serial.println("MDNS responder started"); */
}
}
This diff could not be displayed because it is too large.
include<vars.scad>
module cornerdrills() {
translate([24,8,0]) {
cylinder(d=12,h=40, $fn=10);
module cornerdrills(hull=true) {
#translate([24+12,9,170]) {
cylinder(d=12,h=100, $fn=20);
}
translate([24,8,0]) {
#translate([24,9,0]) {
if (hull == true) {
hull() {
cylinder(d=6,h=500, $fn=10);
cylinder(d=6,h=500, $fn=20);
translate([15,0,0])
cylinder(d=6,h=500, $fn=10);
cylinder(d=6,h=500, $fn=20);
}
} else {
cylinder(d=6,h=500, $fn=20);
translate([15,0,0])
cylinder(d=6,h=500, $fn=20);
}
}
translate([8,24,0]) {
#translate([3+4.2+1,3+45+2.5,0]) {
if (hull == true) {
hull() {
cylinder(d=6,h=400, $fn=10);
translate([0,15,0]) cylinder(d=6,h=400, $fn=10);
cylinder(d=6,h=400, $fn=20);
translate([0,-6+23.5,0]) cylinder(d=6,h=400, $fn=20);
}
} else {
cylinder(d=6,h=400, $fn=20);
translate([0,-6+23.5,0]) cylinder(d=6,h=400, $fn=20);
}
}
translate([8,24,100]) {
cylinder(d=12,h=200, $fn=10);
translate([3+4.2,3+45+2.5,0]) {
cylinder(d=12,h=100, $fn=20);
}
}
......@@ -57,24 +69,25 @@ module draindrills(x,y) {
module gx12drill(z) {
translate([gxXPos,gxYPos,0])
cylinder(d=12,h=30, $fn=10);
cylinder(d=12,h=100, $fn=20);
translate([gxXPos,gxYPos,z-20])
cylinder(d=12,h=30, $fn=10);
cylinder(d=12,h=100, $fn=20);
translate([gxXPos,gxYPos,z-40])
cylinder(d=6,h=30, $fn=10);
cylinder(d=6,h=100, $fn=20);
}
module pipedrill() {
translate([10,60,0]) cylinder(d=6,h=500, $fn=10);
translate([288,381,0]) cylinder(d=6,h=500, $fn=20);
translate([293,373,0]) cylinder(d=6,h=500, $fn=20);
}
module drills(x,y,z) {
module drills(x,y,z, hull=true) {
draindrills(x,y);
cornerdrills();
mirror([0,1,0]) translate([0,-y,0]) cornerdrills();
mirror([1,0,0]) translate([-x,0,0]) cornerdrills();
mirror([1,0,0]) translate([-x,y,0]) mirror([0,1,0]) cornerdrills();
cornerdrills(hull);
mirror([0,1,0]) translate([0,-y,0]) cornerdrills(hull);
mirror([1,0,0]) translate([-x,0,0]) cornerdrills(hull);
mirror([1,0,0]) translate([-x,y,0]) mirror([0,1,0]) cornerdrills(hull);
mirror([1,0,0]) translate([-x,0,0]) gx12drill(z);
mirror([1,0,0]) translate([-x,0,0]) rotate([0,0,90]) translate([0,-14,0]) gx12drill(z);
mirror([1,0,0]) translate([-x,0,0]) rotate([0,0,90]) translate([-35,-14,0]) gx12drill(z);
pipedrill();
}
use<eurobox.scad>
use<lid.scad>
use<cuts.scad>
use<screws.scad>
use<pipes.scad>
include<vars.scad>
module guideside(guideover,shift,long) {
cube([70+long,21.5,guideover]);
cube([20,20,30]);
translate([68+long,0,0]) cube([2,18,27]);
}
module guideedge(guideover,shift) {
translate([-5,-5,5]) guideside(guideover,shift,0);
/* rotate([0,0,90]) translate([-5,-16.5,5]) guideside(guideover,shift,11); */
rotate([0,0,90]) mirror([0,1,0]) translate([-5,-5,5]) guideside(guideover,shift,11);
}
module drillcorner(x,y,z) {
union(){
mirror([0,0,1]) translate([0,0,-18])guideedge(8,0);
translate([0,0,-22]) guideedge(8,0);
/* translate([0,0,z+9]) mirror([0,0,1]) guideedge(1); */
translate([0,0,z+9+12]) mirror([0,0,1]) guideedge(5,0);
translate([0,0,z+10]) mirror([0,0,1]) guideedge(10,0);
translate([0,0,z-28]) guideedge(5,0);
/* translate([55,-5,10]) cube([15,8,5]); */
/* translate([55,-5,z-8]) cube([15,8,5]); */
/* mirror([1,1,0]) translate([-85,-3,10]) cube([15,8,5]); */
/* mirror([1,1,0]) translate([-85,-3,z-8]) cube([15,8,5]); */
}
}
module drillguide(x,y,z) {
difference() {
union() {
/* translate([x,0, 0]) mirror([1,0,0]) grates(x,y,z) */
translate([x,0, 0]) mirror([1,0,0]) drillcorner(x,y,z);
translate([0,y, 0]) mirror([0,1,0])
translate([x,0, 0]) mirror([1,0,0])
drillcorner(x,y,z);
/* } */
/* translate([0,-offset*2+y, 0]) mirror([0,1,0]) { */
/* union() { */
/* grates(x,y,z); */
/* translate([-offset*2+x,0, 0]) mirror([1,0,0]) grates(x,y,z); */
/* drillcorner(x,y,z); */
}
union() {
eurobox(x,y,z,
handle=false,
handlecaps=false,
pipes=false,
drilled=false,
screws=false,
locked=false,
exploded=false
);
insert=13;
translate([insert,insert,z-3.5]) cube([x-insert*2,y-insert*2,2]);
translate([insert,insert*2,z-5.5]) cube([x-insert*2,y-insert*4,2]);
/* translate([insert,insert,z-19.5]) cube([x-insert*2,y-insert*2,2]); */
translate([insert,insert,z-23]) cube([x-insert*2,y-insert*2,2]);
translate([0,0,-20])drills(x,y,z,hull=false);
translate([x-6,y-6,7.5]) cylinder(r=2,h=z-7.5,fn=6);
translate([x-6,6,7.5]) cylinder(r=2,h=z-7.5,fn=6);
}
}
}
drillguide(300,400,220);
/* eurobox(300,400,220, */
/* handle=false, */
/* handlecaps=false, */
/* pipes=false, */
/* drilled=true, */
/* screws=false, */
/* locked=false, */
/* exploded=false */
/* ); */
......@@ -14,23 +14,38 @@ module innerWall(x,y,z) {
}
module grateX(x,y,z) {
translate([0,innergrateXypos,0]) cube([x/2,strength,z]);
translate([0,innergrateXypos-45,z-12]) cube([15,45.1,4.15]);
hull() {
translate([0,innergrateXypos,0]) cube([1,2.5,z]);
translate([18,innergrateXypos-0.65,0]) cube([1,3.8,z]);
}
}
module grateY(x,y,z) {
translate([innergrateYxpos,0,0]) cube([strength,y/2,z]);
hull() {
translate([innergrateYxpos,0,0]) cube([2.5,1,z]);
translate([innergrateYxpos-0.65,18,0]) cube([3.8,1,z]);
}
}
module grateXY(x,y,z) {
translate([0,0+strength/2,0]) {
rotate([0,0,-45])
cube([strength,y/2,z]);
rotate([0,0,-45]) {
hull() {
translate([-2+1.4,8,0]) cube([2.8,1,z]);
translate([-2+1.4,27.6,0]) cube([2.8,1,z]);
}
}
}
}
module grateZ(x,y,z) {
hull() {
translate([-(offset)+gratesize,-(offset)+gratesize,z])
cube([x-gratesize*2,y-gratesize*2,3.8]);
translate([-(offset),-(offset),z])
cube([x,y,strength]);
cube([x,y,2.5]);
}
}
module grates(x,y,z) {
......@@ -104,7 +119,7 @@ module eurobox(x,y,z,handle,handlecaps,pipes,drilled,screws,locked,exploded) {
}
}
eurobox(300,400,220,true);
eurobox(300,400,220,true,drilled=true);
/* testprobes */
......
No preview for this file type
......@@ -40,11 +40,12 @@ module H_HULL_PRESS_OUTER_SHAPE_NEGATIVE(over=0) {
translate([5,13,6]) rotate([90,0,0]) cylinder(d=3, h=25);
translate([5,9,6]) rotate([90,0,0]) cylinder(d=5.6, h=2);
translate([5,-6,6]) rotate([90,90,0]) cylinder(d=6.3, h=2.6, $fn=6);
translate([5,-6-1.3,0]) cube([5.45,2.6,15],true);/*rotate([90,90,0]) cylinder(d=6.3, h=2.6, $fn=6);*/
}
module H_HULL_PRESS_OUTER_SHAPE(over=0) {
intersection() {
translate([1.5,10,6]) rotate([90,90,0]) cylinder(d=17, h=30, $fn=6);
translate([1.5,10,7]) rotate([90,90,0]) cylinder(d=19, h=30, $fn=6);
linear_extrude(height = 12, center = false, convexity = 10)
polygon(points=[ [6.7,-3.6]
,[9,-5]
......@@ -61,6 +62,19 @@ module H_HULL_PRESS_OUTER_SHAPE(over=0) {
}
}
module H_PRESS_OUTER() {
size=8;
translate(edges[0]) rotate([0,-90]) translate([0,0,-115.5])H_HULL_PRESS_OUTER_SHAPE();
translate(edges[0]) rotate([0,-90]) translate([0,0,-19.5])H_HULL_PRESS_OUTER_SHAPE();
translate(edges[2]) rotate([0,90]) translate([0,0,-67.])H_HULL_PRESS_OUTER_SHAPE(-8);
}
module H_PRESS_OUTER_NEGATIVE() {
size=8;
translate(edges[0]) rotate([0,-90]) translate([0,0,-115.5])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE();
translate(edges[0]) rotate([0,-90]) translate([0,0,-19.5])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE();
translate(edges[2]) rotate([0,90]) translate([0,0,-67.])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE(-8);
}
module H_HULL() {
union() {
for (i = [0:3]) {
......@@ -76,6 +90,7 @@ module H_HULL() {
module H_PRESS_INNER() {
size=8;
union() {
translate([62,18.6,8]) cube([4,9,15]);
for (i = [0:3]) {
hull() {
translate(edges[i]) rotate([0,-45+90*i]) H_HULL_PRESS_INNER_SHAPE();
......@@ -85,18 +100,6 @@ module H_PRESS_INNER() {
}
}
module H_PRESS_OUTER() {
size=8;
translate(edges[0]) rotate([0,-90]) translate([0,0,-115.5])H_HULL_PRESS_OUTER_SHAPE();
translate(edges[0]) rotate([0,-90]) translate([0,0,-19.5])H_HULL_PRESS_OUTER_SHAPE();
translate(edges[2]) rotate([0,90]) translate([0,0,-67.])H_HULL_PRESS_OUTER_SHAPE(-8);
}
module H_PRESS_OUTER_NEGATIVE() {
size=8;
translate(edges[0]) rotate([0,-90]) translate([0,0,-115.5])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE();
translate(edges[0]) rotate([0,-90]) translate([0,0,-19.5])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE();
translate(edges[2]) rotate([0,90]) translate([0,0,-67.])H_HULL_PRESS_OUTER_SHAPE_NEGATIVE(-8);
}
module H_Poly(size) {
translate([-size/2,0,-size/2]) polyhedron(
......@@ -391,26 +394,28 @@ module handle(x,y,z,inner,exploded=false) {
translate(-exploded*3) handleBlock(x,y,z,blank=true);
} else {
handleBlock(x,y,z, base=true);
/* handleBlock(x,y,z,press=true); */
/* handleBlock(x,y,z,moisture_inner=true); */
/* handleBlock(x,y,z,moisture_outer=true); */
handleBlock(x,y,z,press=true);
handleBlock(x,y,z,moisture_inner=true);
handleBlock(x,y,z,moisture_outer=true);
translate([0,0,10])handleBlock(x,y,z,blank=true);
}
}
module handles(x,y,z,exploded) {
handle(x,y,z,false,exploded);
/* handle(x,y,z,true,exploded); */
/* mirror([0,1,0]) translate([0,-y,0]) { */
/* handle(x,y,z,false,exploded); */
/* handle(x,y,z,true,exploded); */
/* } */
handle(x,y,z,true,exploded);
mirror([0,1,0]) translate([0,-y,0]) {
handle(x,y,z,false,exploded);
handle(x,y,z,true,exploded);
}
}
/* handle(300,400,220,exploded=[0,-20,0]); */
intersection() {
translate([104,10,155]) cube(28.5,50,80);
handle(300,400,220);
}
handle(300,400,220,exploded=[0,-20,0]);
/* intersection() { */
/* translate([104,10,155]) cube(28.5,50,80); */
/* handle(300,400,220); */
/* } */
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -12,17 +12,30 @@ module materialDot(radius, height, roundness) {
}
module shapeZ(x,y,z) {
translate([0,0,-250]) minkowski() {
translate([-3,-3,-250]) minkowski() {
cube([
x-(offset)*2,
y-(offset)*2,
x-(offset-3)*2,
y-(offset-3)*2,
1
]);
cylinder(
r=offset,
h=500
r=offset-3,
h=500,
$fn=50
);
}
}
/* translate([0,0,-250]) minkowski() { */
/* cube([ */
/* x-(offset)*2, */
/* y-(offset)*2, */
/* 1 */
/* ]); */
/* cylinder( */
/* r=offset, */
/* h=500, */
/* $fn=50 */
/* ); */
/* } */
}
module volume(x,y,z,extra) {
......@@ -58,8 +71,9 @@ module handleShape(x,y,z,extra,bool,borders){
translate([-strength*2,0,0]) rotate([90,0,90]) linear_extrude(height = 140, center = false, convexity = 10)
polygon(points=[[-10,-50]
,[25.7-2,-50]
,[25.4-2,-32.5]
,[18.5,-32.5]
,[25.4-2,-33.3]
,[18.5,-33.3]
,[18.5,-30]
,[10,-5]
,[10,strength]
,[20,strength]
......
module pushInAdapterStraignt() {
difference() {
union() {
cylinder(d=0.95,h=3.6, $fn=10);
translate([0,0,0.1]) cylinder(d=1.5,h=1.2, $fn=20);
translate([0,0,2.3]) cylinder(d=1.5,h=1.2, $fn=20);
cylinder(d=9.5,h=36, $fn=10);
translate([0,0,1]) cylinder(d=15,h=12, $fn=20);
translate([0,0,23]) cylinder(d=15,h=12, $fn=20);
}
translate([0,0,-0.1]) cylinder(d=0.7,h=10, $fn=10);
translate([0,0,-1]) cylinder(d=7,h=100, $fn=10);
}
}
module sidepipe(z) {
/* translate([0,0,0.6+strength+1.7]) { */
translate([0,0,1+1.7+0.3]) {
translate([0,0,10+17+3]) {
difference() {
cylinder(d=0.6,h=z-1, $fn=10);
translate([0,0,-0.1]) cylinder(d=0.4,h=z, $fn=10);
cylinder(d=6,h=z-10, $fn=10);
translate([0,0,-1]) cylinder(d=4,h=z, $fn=10);
}
}
}
module pipes(z,exploded) {
translate(exploded) translate([1,6,0]) {
translate(exploded) translate([10,60,0]) {
color("#fff") sidepipe(z);
color("#fff") translate([0,0,1.1]) {
color("#fff") translate([0,0,11]) {
pushInAdapterStraignt();
}
}
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
......@@ -3,8 +3,8 @@ $fn=20;
strength = 2.5;
gratesize = 16.8;
innergrateXypos = 80;
innergrateYxpos = 70;
innergrateXypos = 76;
innergrateYxpos = 65;
roundborderInner = 5;
recess = 7.87;
......
linear_extrude(height = 0.46, center = false, convexity = 10, twist = 0)
import("dark.svg");
This diff could not be displayed because it is too large.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="297mm"
height="210mm"
viewBox="0 0 297 210"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="dark.svg"
inkscape:export-filename="/home/hubert/projects/kompost/skin/platte_24x21_2.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs2">
<inkscape:path-effect
effect="powerstroke"
id="path-effect845"
is_visible="true"
lpeversion="1"
offset_points="0.60730322,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect843"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
<inkscape:path-effect
effect="powerstroke"
id="path-effect838"
is_visible="true"
lpeversion="1"
offset_points="0.2999652,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect836"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#808080"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="2.8284271"
inkscape:cx="317.15107"
inkscape:cy="628.63602"
inkscape:document-units="mm"
inkscape:current-layer="layer5"
inkscape:document-rotation="0"
showgrid="false"
inkscape:pagecheckerboard="false"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="49"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="dark"
style="display:inline">
<path
id="rect8074-0-2-2"
style="display:inline;mix-blend-mode:normal;fill:#536c53;fill-opacity:0.99908;stroke-width:15.3082;stroke-dasharray:183.697, 15.3082"
d="M 826.38477 56.847656 L 826.38477 59.433594 L 826.38477 75.359375 L 830.58008 75.359375 L 830.58008 177.875 L 826.38477 177.875 L 826.38477 195.28711 L 826.38477 211.21289 L 830.58008 211.21289 L 830.58008 313.73047 L 826.38477 313.73047 L 826.38477 331.14062 L 826.38477 347.06641 L 830.58008 347.06641 L 830.58008 449.58398 L 826.38477 449.58398 L 826.38477 466.99609 L 826.38477 482.92188 L 830.58008 482.92188 L 830.58008 585.4375 L 826.38477 585.4375 L 826.38477 602.84961 L 826.38477 618.77539 L 830.58008 618.77539 L 830.58008 630.55664 L 830.58008 721.29297 L 826.38477 721.29297 L 826.38477 736.16406 L 1007.1504 736.16406 L 1007.1504 721.29297 L 1002.9551 721.29297 L 1002.9551 626.89062 L 1002.9551 618.77344 L 1007.1504 618.77344 L 1007.1504 602.84961 L 1007.1504 602.84766 L 1007.1504 585.4375 L 1002.9551 585.4375 L 1002.9551 482.91992 L 1007.1504 482.91992 L 1007.1504 466.99414 L 1007.1504 449.58398 L 1002.9551 449.58398 L 1002.9551 347.06445 L 1007.1504 347.06445 L 1007.1504 331.13867 L 1007.1504 313.73047 L 1002.9551 313.73047 L 1002.9551 211.21094 L 1007.1504 211.21094 L 1007.1504 195.28516 L 1007.1504 177.875 L 1002.9551 177.875 L 1002.9551 75.357422 L 1007.1504 75.357422 L 1007.1504 59.431641 L 1007.1504 56.847656 L 1002.9551 56.847656 L 830.58008 56.847656 L 826.38477 56.847656 z M 891.49219 83.621094 L 947.85156 83.621094 L 947.85156 90.341797 L 942.01953 90.341797 L 942.01953 96.453125 L 942.01953 141.85156 L 897.32422 141.85156 L 897.32422 96.453125 L 897.32422 90.341797 L 891.49219 90.341797 L 891.49219 83.621094 z M 891.49219 148.57422 L 947.85156 148.57422 L 947.85156 152.59961 L 891.49219 152.59961 L 891.49219 148.57422 z M 830.58008 190.11133 L 1002.9551 190.11133 L 1002.9551 192.69922 L 830.58008 192.69922 L 830.58008 190.11133 z M 891.49219 219.47461 L 947.85156 219.47461 L 947.85156 226.19727 L 942.01953 226.19727 L 942.01953 232.30664 L 942.01953 277.70703 L 897.32422 277.70703 L 897.32422 232.30664 L 897.32422 226.19727 L 891.49219 226.19727 L 891.49219 219.47461 z M 891.49219 284.42773 L 947.85156 284.42773 L 947.85156 288.45508 L 891.49219 288.45508 L 891.49219 284.42773 z M 830.58008 325.9668 L 1002.9551 325.9668 L 1002.9551 328.55469 L 830.58008 328.55469 L 830.58008 325.9668 z M 891.49219 355.32812 L 947.85156 355.32812 L 947.85156 362.05078 L 942.01953 362.05078 L 942.01953 368.16211 L 942.01953 384.36719 A 21.655276 24.957048 0 0 0 927.11719 408.08008 A 21.655276 24.957048 0 0 0 927.64648 413.56055 L 897.32422 413.56055 L 897.32422 368.16211 L 897.32422 362.05078 L 891.49219 362.05078 L 891.49219 355.32812 z M 970.33984 410.32617 A 21.655276 24.957048 0 0 1 970.91602 416.04688 A 21.655276 24.957048 0 0 1 949.25977 441.00391 A 21.655276 24.957048 0 0 1 928.82617 424.30859 L 891.49219 424.30859 L 891.49219 420.2832 L 927.91992 420.2832 A 21.655276 24.957048 0 0 1 927.60547 416.04688 A 21.655276 24.957048 0 0 1 927.69336 413.80078 A 21.655276 24.957048 0 0 0 948.77148 433.03711 A 21.655276 24.957048 0 0 0 970.33984 410.32617 z M 830.58008 461.82031 L 1002.9551 461.82031 L 1002.9551 464.4082 L 830.58008 464.4082 L 830.58008 461.82031 z M 891.49219 491.18359 L 947.85156 491.18359 L 947.85156 497.9043 L 942.01953 497.9043 L 942.01953 504.01562 L 942.01953 549.41406 L 897.32422 549.41406 L 897.32422 504.01562 L 897.32422 497.9043 L 891.49219 497.9043 L 891.49219 491.18359 z M 891.49219 556.13672 L 947.85156 556.13672 L 947.85156 560.16406 L 891.49219 560.16406 L 891.49219 556.13672 z M 830.58008 597.67578 L 1002.9551 597.67578 L 1002.9551 600.26172 L 830.58008 600.26172 L 830.58008 597.67578 z M 891.49219 627.03711 L 947.85156 627.03711 L 947.85156 628.0625 L 947.85156 633.75977 L 942.01953 633.75977 L 942.01953 639.86914 L 942.01953 685.26953 L 897.32422 685.26953 L 897.32422 639.86914 L 897.32422 633.75977 L 891.49219 633.75977 L 891.49219 629.26172 L 891.49219 627.03711 z M 891.49219 691.99023 L 947.85156 691.99023 L 947.85156 696.01758 L 891.49219 696.01758 L 891.49219 691.99023 z M 830.58008 733.5293 L 1002.9551 733.5293 L 1002.9551 736.11719 L 830.58008 736.11719 L 830.58008 733.5293 z "
transform="scale(0.26458333)" />
<path
id="rect10989-3"
style="display:inline;fill:#676c53;fill-opacity:0.99908;stroke-width:48.3424;stroke-dasharray:580.108, 48.3424"
d="M 23.320312 56.847656 L 23.320312 59.433594 L 23.320312 75.359375 L 27.509766 75.359375 L 27.509766 177.875 L 23.320312 177.875 L 23.320312 195.28711 L 23.320312 211.21289 L 27.509766 211.21289 L 27.509766 313.73047 L 23.320312 313.73047 L 23.320312 331.14062 L 23.320312 347.06641 L 27.509766 347.06641 L 27.509766 449.58398 L 23.320312 449.58398 L 23.320312 466.99609 L 23.320312 482.92188 L 27.509766 482.92188 L 27.509766 585.4375 L 23.320312 585.4375 L 23.320312 602.84961 L 23.320312 618.77539 L 27.509766 618.77539 L 27.509766 721.29297 L 23.320312 721.29297 L 23.320312 736.16406 L 204.08594 736.16406 L 204.08594 721.29297 L 204.08008 721.29297 L 199.88477 721.29297 L 199.88477 642.27539 L 199.88477 618.77344 L 204.08594 618.77344 L 204.08594 602.84961 L 204.08594 602.84766 L 204.08594 585.4375 L 204.08008 585.4375 L 199.88477 585.4375 L 199.88477 482.91992 L 204.08594 482.91992 L 204.08594 466.99414 L 204.08594 449.58398 L 204.08008 449.58398 L 199.88477 449.58398 L 199.88477 347.06445 L 204.08594 347.06445 L 204.08594 331.13867 L 204.08594 313.73047 L 204.08008 313.73047 L 199.88477 313.73047 L 199.88477 211.21094 L 204.08594 211.21094 L 204.08594 195.28516 L 204.08594 177.875 L 204.08008 177.875 L 199.88477 177.875 L 199.88477 75.357422 L 204.08594 75.357422 L 204.08594 59.431641 L 204.08594 56.847656 L 199.88477 56.847656 L 27.509766 56.847656 L 23.320312 56.847656 z M 88.419922 83.621094 L 144.78125 83.621094 L 144.78125 90.341797 L 138.94922 90.341797 L 138.94922 96.453125 L 138.94922 141.85156 L 94.253906 141.85156 L 94.253906 96.453125 L 94.253906 90.341797 L 88.419922 90.341797 L 88.419922 83.621094 z M 88.419922 148.57422 L 144.78125 148.57422 L 144.78125 152.59961 L 88.419922 152.59961 L 88.419922 148.57422 z M 27.509766 190.11133 L 199.88477 190.11133 L 199.88477 192.69922 L 27.509766 192.69922 L 27.509766 190.11133 z M 88.419922 219.47461 L 144.78125 219.47461 L 144.78125 226.19727 L 138.94922 226.19727 L 138.94922 232.30664 L 138.94922 277.70703 L 94.253906 277.70703 L 94.253906 232.30664 L 94.253906 226.19727 L 88.419922 226.19727 L 88.419922 219.47461 z M 88.419922 284.42773 L 144.78125 284.42773 L 144.78125 288.45508 L 88.419922 288.45508 L 88.419922 284.42773 z M 27.509766 325.9668 L 199.88477 325.9668 L 199.88477 328.55469 L 27.509766 328.55469 L 27.509766 325.9668 z M 88.419922 355.32812 L 144.78125 355.32812 L 144.78125 362.05078 L 138.94922 362.05078 L 138.94922 368.16211 L 138.94922 413.56055 L 94.253906 413.56055 L 94.253906 368.16211 L 94.253906 362.05078 L 88.419922 362.05078 L 88.419922 355.32812 z M 88.419922 420.2832 L 144.78125 420.2832 L 144.78125 424.30859 L 88.419922 424.30859 L 88.419922 420.2832 z M 27.509766 461.82031 L 199.88477 461.82031 L 199.88477 464.4082 L 27.509766 464.4082 L 27.509766 461.82031 z M 88.419922 491.18359 L 144.78125 491.18359 L 144.78125 497.9043 L 138.94922 497.9043 L 138.94922 504.01562 L 138.94922 549.41406 L 94.253906 549.41406 L 94.253906 504.01562 L 94.253906 497.9043 L 88.419922 497.9043 L 88.419922 491.18359 z M 88.419922 556.13672 L 144.78125 556.13672 L 144.78125 560.16406 L 88.419922 560.16406 L 88.419922 556.13672 z M 27.509766 597.67578 L 199.88477 597.67578 L 199.88477 600.26172 L 27.509766 600.26172 L 27.509766 597.67578 z M 88.419922 627.03711 L 144.78125 627.03711 L 144.78125 633.75977 L 138.94922 633.75977 L 138.94922 639.86914 L 138.94922 685.26953 L 94.253906 685.26953 L 94.253906 639.86914 L 94.253906 633.75977 L 88.419922 633.75977 L 88.419922 627.03711 z M 88.419922 691.99023 L 144.78125 691.99023 L 144.78125 696.01758 L 88.419922 696.01758 L 88.419922 691.99023 z M 27.509766 733.5293 L 199.88477 733.5293 L 199.88477 736.11719 L 27.509766 736.11719 L 27.509766 733.5293 z "
transform="scale(0.26458333)" />
<path
id="rect8072-1-5-6"
style="display:inline;mix-blend-mode:normal;fill:#6f916f;fill-opacity:0.99908;stroke-width:15.3082;stroke-dasharray:183.697, 15.3082"
d="M 625.61914 56.847656 L 625.61914 59.433594 L 625.61719 59.433594 L 625.61719 75.359375 L 629.8125 75.359375 L 629.8125 177.875 L 625.61914 177.875 L 625.61914 195.28711 L 625.61719 195.28711 L 625.61719 211.21289 L 629.8125 211.21289 L 629.8125 313.73047 L 625.61914 313.73047 L 625.61914 331.14062 L 629.8125 331.14062 L 629.8125 331.14258 L 625.61719 331.14258 L 625.61719 347.06836 L 629.8125 347.06836 L 629.8125 449.58398 L 625.61914 449.58398 L 625.61914 466.99609 L 629.8125 466.99609 L 629.8125 466.99805 L 625.61719 466.99805 L 625.61719 482.92383 L 629.8125 482.92383 L 629.8125 585.4375 L 625.61914 585.4375 L 625.61914 602.84961 L 629.8125 602.84961 L 629.8125 602.85156 L 625.61719 602.85156 L 625.61719 618.77734 L 629.8125 618.77734 L 629.8125 634.4043 L 629.8125 721.29297 L 625.61914 721.29297 L 625.61914 736.16406 L 806.38477 736.16406 L 806.38477 721.29297 L 806.38281 721.29297 L 802.1875 721.29297 L 802.1875 630.73633 L 802.1875 618.77539 L 806.38281 618.77539 L 806.38281 602.84961 L 806.38477 602.84961 L 806.38477 585.4375 L 806.38281 585.4375 L 802.1875 585.4375 L 802.1875 482.92188 L 806.38281 482.92188 L 806.38281 466.99609 L 806.38477 466.99609 L 806.38477 449.58398 L 806.38281 449.58398 L 802.1875 449.58398 L 802.1875 347.06641 L 806.38281 347.06641 L 806.38281 331.14062 L 806.38477 331.14062 L 806.38477 313.73047 L 806.38281 313.73047 L 802.1875 313.73047 L 802.1875 211.21289 L 806.38281 211.21289 L 806.38281 195.28711 L 806.38477 195.28711 L 806.38477 177.875 L 806.38281 177.875 L 802.1875 177.875 L 802.1875 75.359375 L 806.38281 75.359375 L 806.38281 59.433594 L 806.38477 59.433594 L 806.38477 56.847656 L 802.1875 56.847656 L 629.8125 56.847656 L 625.61914 56.847656 z M 690.72461 83.621094 L 747.08398 83.621094 L 747.08398 90.341797 L 741.25195 90.341797 L 741.25195 96.453125 L 741.25195 141.85156 L 696.55664 141.85156 L 696.55664 96.453125 L 696.55664 90.341797 L 690.72461 90.341797 L 690.72461 83.621094 z M 690.72461 148.57422 L 747.08398 148.57422 L 747.08398 152.59961 L 690.72461 152.59961 L 690.72461 148.57422 z M 629.8125 190.11133 L 802.1875 190.11133 L 802.1875 192.69922 L 629.8125 192.69922 L 629.8125 190.11133 z M 690.72461 219.47461 L 747.08398 219.47461 L 747.08398 226.19727 L 741.25195 226.19727 L 741.25195 232.30664 L 741.25195 248.51367 A 21.655276 24.957048 0 0 0 726.34961 272.22656 A 21.655276 24.957048 0 0 0 726.87891 277.70703 L 696.55664 277.70703 L 696.55664 232.30664 L 696.55664 226.19727 L 690.72461 226.19727 L 690.72461 219.47461 z M 769.57227 274.4707 A 21.655276 24.957048 0 0 1 770.14844 280.19141 A 21.655276 24.957048 0 0 1 748.49219 305.14844 A 21.655276 24.957048 0 0 1 728.06055 288.45508 L 690.72461 288.45508 L 690.72461 284.42773 L 727.15234 284.42773 A 21.655276 24.957048 0 0 1 726.83789 280.19141 A 21.655276 24.957048 0 0 1 726.92578 277.94531 A 21.655276 24.957048 0 0 0 748.00391 297.18359 A 21.655276 24.957048 0 0 0 769.57227 274.4707 z M 629.8125 325.9668 L 802.1875 325.9668 L 802.1875 328.55469 L 629.8125 328.55469 L 629.8125 325.9668 z M 690.72461 355.32812 L 747.08398 355.32812 L 747.08398 362.05078 L 741.25195 362.05078 L 741.25195 368.16211 L 741.25195 413.56055 L 696.55664 413.56055 L 696.55664 368.16211 L 696.55664 362.05078 L 690.72461 362.05078 L 690.72461 355.32812 z M 690.72461 420.2832 L 747.08398 420.2832 L 747.08398 424.30859 L 690.72461 424.30859 L 690.72461 420.2832 z M 629.8125 461.82031 L 802.1875 461.82031 L 802.1875 464.4082 L 629.8125 464.4082 L 629.8125 461.82031 z M 690.72461 491.18359 L 747.08398 491.18359 L 747.08398 497.9043 L 741.25195 497.9043 L 741.25195 504.01562 L 741.25195 549.41406 L 696.55664 549.41406 L 696.55664 504.01562 L 696.55664 497.9043 L 690.72461 497.9043 L 690.72461 491.18359 z M 690.72461 556.13672 L 747.08398 556.13672 L 747.08398 560.16406 L 690.72461 560.16406 L 690.72461 556.13672 z M 629.8125 597.67578 L 802.1875 597.67578 L 802.1875 600.26172 L 629.8125 600.26172 L 629.8125 597.67578 z M 690.72461 627.03711 L 747.08398 627.03711 L 747.08398 631.9082 L 747.08398 633.75977 L 741.25195 633.75977 L 741.25195 639.86914 L 741.25195 656.07617 A 21.655276 24.957048 0 0 0 726.34961 679.78906 A 21.655276 24.957048 0 0 0 726.87891 685.26953 L 696.55664 685.26953 L 696.55664 639.86914 L 696.55664 633.75977 L 690.72461 633.75977 L 690.72461 633.10742 L 690.72461 627.03711 z M 769.57227 682.0332 A 21.655276 24.957048 0 0 1 770.14844 687.75391 A 21.655276 24.957048 0 0 1 748.49219 712.71094 A 21.655276 24.957048 0 0 1 728.06055 696.01758 L 690.72461 696.01758 L 690.72461 691.99023 L 727.15234 691.99023 A 21.655276 24.957048 0 0 1 726.83789 687.75391 A 21.655276 24.957048 0 0 1 726.92578 685.50781 A 21.655276 24.957048 0 0 0 748.00391 704.74609 A 21.655276 24.957048 0 0 0 769.57227 682.0332 z M 629.8125 733.5293 L 802.1875 733.5293 L 802.1875 736.11719 L 629.8125 736.11719 L 629.8125 733.5293 z "
transform="scale(0.26458333)" />
<path
id="rect8070-4-2-4"
style="display:inline;mix-blend-mode:normal;fill:#93ac93;fill-opacity:0.99908;stroke-width:15.3082;stroke-dasharray:183.697, 15.3082"
d="M 424.85156 56.847656 L 424.85156 59.433594 L 424.85156 75.359375 L 429.04492 75.359375 L 429.04492 177.875 L 424.85156 177.875 L 424.85156 195.28711 L 424.85156 211.21289 L 429.04492 211.21289 L 429.04492 313.73047 L 424.85156 313.73047 L 424.85156 331.14062 L 424.85156 347.06641 L 429.04492 347.06641 L 429.04492 449.58398 L 424.85156 449.58398 L 424.85156 466.99609 L 424.85156 482.92188 L 429.04492 482.92188 L 429.04492 585.4375 L 424.85156 585.4375 L 424.85156 602.84961 L 424.85156 618.77539 L 429.04492 618.77539 L 429.04492 638.25 L 429.04492 721.29297 L 424.85156 721.29297 L 424.85156 736.16406 L 605.61914 736.16406 L 605.61914 721.29297 L 605.61523 721.29297 L 601.41992 721.29297 L 601.41992 634.58203 L 601.41992 618.77344 L 605.61719 618.77344 L 605.61719 602.84961 L 605.61914 602.84961 L 605.61914 585.4375 L 605.61523 585.4375 L 601.41992 585.4375 L 601.41992 482.91992 L 605.61719 482.91992 L 605.61719 466.99609 L 605.61914 466.99609 L 605.61914 449.58398 L 605.61523 449.58398 L 601.41992 449.58398 L 601.41992 347.06445 L 605.61719 347.06445 L 605.61719 331.14062 L 605.61914 331.14062 L 605.61914 313.73047 L 605.61523 313.73047 L 601.41992 313.73047 L 601.41992 211.21094 L 605.61719 211.21094 L 605.61719 195.28711 L 605.61914 195.28711 L 605.61914 177.875 L 605.61523 177.875 L 601.41992 177.875 L 601.41992 75.357422 L 605.61719 75.357422 L 605.61719 59.433594 L 605.61914 59.433594 L 605.61914 56.847656 L 601.41992 56.847656 L 429.04492 56.847656 L 424.85156 56.847656 z M 468.28906 83.621094 L 568.63086 83.621094 L 568.63086 90.341797 L 563.01562 90.341797 L 563.01562 96.453125 L 563.01562 141.85156 L 521.23242 141.85156 L 521.23242 96.453125 L 521.23242 90.341797 L 515.40039 90.341797 L 515.40039 96.453125 L 515.40039 141.85156 L 473.61914 141.85156 L 473.61914 96.453125 L 473.61914 90.341797 L 468.28906 90.341797 L 468.28906 83.621094 z M 467.78711 148.57422 L 568.84766 148.57422 L 568.84766 152.59961 L 467.78711 152.59961 L 467.78711 148.57422 z M 429.04492 190.11133 L 601.41992 190.11133 L 601.41992 192.69922 L 429.04492 192.69922 L 429.04492 190.11133 z M 468.28906 219.47461 L 568.63086 219.47461 L 568.63086 226.19727 L 563.01562 226.19727 L 563.01562 232.30664 L 563.01562 277.70703 L 521.23242 277.70703 L 521.23242 232.30664 L 521.23242 226.19727 L 515.40039 226.19727 L 515.40039 232.30664 L 515.40039 277.70703 L 473.61914 277.70703 L 473.61914 232.30664 L 473.61914 226.19727 L 468.28906 226.19727 L 468.28906 219.47461 z M 467.78711 284.42773 L 568.84766 284.42773 L 568.84766 288.45508 L 467.78711 288.45508 L 467.78711 284.42773 z M 429.04492 325.9668 L 601.41992 325.9668 L 601.41992 328.55469 L 429.04492 328.55469 L 429.04492 325.9668 z M 468.28906 355.32812 L 568.63086 355.32812 L 568.63086 362.05078 L 563.01562 362.05078 L 563.01562 368.16211 L 563.01562 413.56055 L 521.23242 413.56055 L 521.23242 368.16211 L 521.23242 362.05078 L 515.40039 362.05078 L 515.40039 368.16211 L 515.40039 413.56055 L 473.61914 413.56055 L 473.61914 368.16211 L 473.61914 362.05078 L 468.28906 362.05078 L 468.28906 355.32812 z M 467.78711 420.2832 L 568.84766 420.2832 L 568.84766 424.30859 L 467.78711 424.30859 L 467.78711 420.2832 z M 429.04492 461.82031 L 601.41992 461.82031 L 601.41992 464.4082 L 429.04492 464.4082 L 429.04492 461.82031 z M 468.28906 491.18359 L 568.63086 491.18359 L 568.63086 497.9043 L 563.01562 497.9043 L 563.01562 504.01562 L 563.01562 549.41406 L 521.23242 549.41406 L 521.23242 504.01562 L 521.23242 497.9043 L 515.40039 497.9043 L 515.40039 504.01562 L 515.40039 549.41406 L 473.61914 549.41406 L 473.61914 504.01562 L 473.61914 497.9043 L 468.28906 497.9043 L 468.28906 491.18359 z M 467.78711 556.13672 L 568.84766 556.13672 L 568.84766 560.16406 L 467.78711 560.16406 L 467.78711 556.13672 z M 429.04492 597.67578 L 601.41992 597.67578 L 601.41992 600.26172 L 429.04492 600.26172 L 429.04492 597.67578 z M 468.28906 627.03711 L 568.63086 627.03711 L 568.63086 633.75977 L 563.01562 633.75977 L 563.01562 635.40039 L 563.01562 639.86914 L 563.01562 685.26953 L 521.23242 685.26953 L 521.23242 639.86914 L 521.23242 636.28906 L 521.23242 633.75977 L 515.40039 633.75977 L 515.40039 636.41211 L 515.40039 639.86914 L 515.40039 685.26953 L 473.61914 685.26953 L 473.61914 639.86914 L 473.61914 637.30273 L 473.61914 633.75977 L 468.28906 633.75977 L 468.28906 627.03711 z M 467.78711 691.99023 L 568.84766 691.99023 L 568.84766 696.01758 L 467.78711 696.01758 L 467.78711 691.99023 z M 429.04492 733.5293 L 601.41992 733.5293 L 601.41992 736.11719 L 429.04492 736.11719 L 429.04492 733.5293 z "
transform="scale(0.26458333)" />
<path
id="rect8068-0-4-8"
style="display:inline;mix-blend-mode:normal;fill:#b7c8b7;fill-opacity:0.99908;stroke-width:15.3082;stroke-dasharray:183.697, 15.3082"
d="m 224.08594,56.847656 c 0,6.170573 0,12.341146 0,18.511719 h 4.1914 V 177.875 h -4.1914 v 33.33789 h 4.1914 v 102.51758 h -4.1914 v 33.33789 h 4.1914 v 102.51562 h -4.1914 v 33.33985 h 4.1914 V 585.4375 h -4.1914 v 32.21289 h 0.0312 l -0.0312,1.12695 h 4.1914 v 102.51563 h -4.1914 v 14.87109 h 180.76562 v -14.87109 h -0.004 -4.19532 v -49.73633 -37.83008 -14.94922 -0.002 h 4.19922 V 585.4375 h -0.004 -4.19532 v -49.73633 -52.77929 h 4.19922 v -33.3379 h -0.004 -4.19532 V 347.06836 h -14.28515 v 39.97656 h -40.80078 v -39.97656 h -14.88868 v 39.97656 h -41.78125 v -39.97656 h -14.86914 v 52.7207 h -37.2207 v -68.64648 -0.002 h 155.32422 v 15.92579 h 12.7207 v -33.33594 h -0.004 -4.19532 V 263.9941 211.21285 h 4.19922 V 177.875 h -0.004 -4.19532 V 128.13867 75.359375 h 4.19922 c 0,-6.170573 0,-12.341146 0,-18.511719 -63.44849,0 -125.89925,0 -180.76512,0 z m 12.7207,2.585938 h 155.32422 v 15.925781 h -5.76367 V 115.33594 H 345.56641 V 75.359375 H 330.67773 V 115.33594 H 288.89648 V 75.359375 h -14.86914 v 52.722655 h -37.2207 z m -8.5293,130.677736 h 0.16211 172.21289 v 2.58789 h -172.375 z m 8.5293,5.17578 h 155.32422 v 15.92578 h -5.76367 v 39.97656 h -40.80078 v -39.97656 h -14.88868 v 39.97656 h -41.78125 v -39.97656 h -14.86914 v 52.72266 h -37.2207 z m -8.5293,130.67969 h 0.16211 172.21289 v 2.58789 h -172.375 z m 0,135.85351 h 0.16211 172.21289 v 2.58789 h -172.375 z m 8.5293,5.17578 h 155.32422 v 15.92579 h -5.76367 v 39.97656 h -40.80078 v -39.97656 h -14.88868 v 39.97656 h -41.78125 v -39.97656 h -14.86914 v 52.72265 h -37.2207 v -68.64648 z m -8.5293,130.67969 h 0.16211 172.21289 v 2.58594 h -172.375 z m 163.85352,5.17383 v 15.92578 0.002 h -5.76367 v 39.97657 h -40.80078 v -39.97657 h -14.88868 v 39.97657 h -41.78125 v -39.97657 h -14.86914 v 52.72071 h -37.2207 c 0.0729,-22.91129 0.24024,-45.76848 0.24024,-68.64649 z M 228.27734,733.5293 h 0.16211 172.21289 v 2.58789 h -172.375 z"
transform="scale(0.26458333)"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
</g>
</svg>
This diff could not be displayed because it is too large.
linear_extrude(height = 0.46, center = true, convexity = 10, twist = 0)
import("light.svg");
This diff could not be displayed because it is too large.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="297mm"
height="210mm"
viewBox="0 0 297 210"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="light.svg"
inkscape:export-filename="/home/hubert/projects/kompost/skin/platte_24x21_2.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<defs
id="defs2">
<inkscape:path-effect
effect="powerstroke"
id="path-effect845"
is_visible="true"
lpeversion="1"
offset_points="0.60730322,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect843"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
<inkscape:path-effect
effect="powerstroke"
id="path-effect838"
is_visible="true"
lpeversion="1"
offset_points="0.2999652,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect836"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#808080"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.70710678"
inkscape:cx="492.75007"
inkscape:cy="362.13539"
inkscape:document-units="mm"
inkscape:current-layer="layer2"
inkscape:document-rotation="0"
showgrid="false"
inkscape:pagecheckerboard="false"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="49"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="light"
style="display:inline">
<path
id="rect8074-0-2"
style="display:inline;mix-blend-mode:normal;fill:#536c53;fill-opacity:0.99908;stroke-width:15.3082;stroke-dasharray:183.697, 15.3082"
d="M 826.38477,56.847656 V 736.16406 H 1007.1504 V 721.29297 626.80078 602.84961 585.4375 466.99609 449.58398 331.14062 313.73047 195.28711 177.875 59.433594 56.847656 h -4.1953 v 2.585938 H 830.58008 v -2.585938 z m 65.10742,39.605469 h 5.83203 v 45.398435 h 44.69531 V 96.453125 h 5.83203 v 45.398435 6.72266 h -56.35937 v -6.72266 z m -60.91211,96.246095 h 172.37502 v 2.58789 H 830.58008 Z m 60.91211,39.60742 h 5.83203 v 45.40039 h 44.69531 v -45.40039 h 5.83203 v 45.40039 6.7207 h -56.35937 v -6.7207 z m -60.91211,96.24805 h 172.37502 v 2.58593 H 830.58008 Z m 60.91211,39.60742 h 5.83203 v 45.39844 h 30.32226 a 21.655276,24.957048 0 0 1 -0.52929,-5.48047 21.655276,24.957048 0 0 1 14.90234,-23.71094 v -16.20703 h 5.83203 v 14.98437 a 21.655276,24.957048 0 0 1 0.91992,-0.0234 21.655276,24.957048 0 0 1 21.65625,24.95703 21.655276,24.957048 0 0 1 -21.65625,24.95703 21.655276,24.957048 0 0 1 -21.07812,-19.23633 21.655276,24.957048 0 0 0 -0.0879,2.2461 21.655276,24.957048 0 0 0 0.31445,4.23437 h -36.42773 v -6.7207 z m -60.91211,96.24609 h 172.37502 v 2.58789 H 830.58008 Z m 60.91211,39.60742 h 5.83203 v 45.39844 h 44.69531 v -45.39844 h 5.83203 v 45.39844 6.72266 h -56.35937 v -6.72266 z m -60.91211,96.2461 h 172.37502 v 2.58789 H 830.58008 Z m 60.91211,39.60742 h 5.83203 v 45.40039 h 44.69531 v -45.40039 h 5.83203 v 45.40039 6.7207 h -56.35937 v -6.7207 z"
transform="scale(0.26458333)" />
<path
id="rect8072-1-5"
style="display:inline;mix-blend-mode:normal;fill:#6f916f;fill-opacity:0.99908;stroke-width:4.05029;stroke-dasharray:48.6032, 4.05029"
d="M 165.5284,15.040942 V 194.77674 h 47.82757 V 15.040942 h -1.11053 v 0.684196 h -45.60755 v -0.684196 z m 17.22582,10.478947 h 1.54306 v 12.011669 h 11.82563 V 25.519889 h 1.54306 v 12.011669 1.778704 h -14.91175 v -1.778704 z m -16.11633,25.465112 h 45.60755 v 0.684713 h -45.60755 z m 16.11633,10.479463 h 1.54306 v 12.012187 h 8.02276 A 5.729625,6.6032189 0 0 1 192.18,72.02661 a 5.729625,6.6032189 0 0 1 3.94291,-6.274036 v -4.28811 h 1.54306 v 3.965133 a 5.729625,6.6032189 0 0 1 0.2434,-0.0062 5.729625,6.6032189 0 0 1 5.72988,6.603214 5.729625,6.6032189 0 0 1 -5.72988,6.603214 5.729625,6.6032189 0 0 1 -5.57693,-5.089609 5.729625,6.6032189 0 0 0 -0.0232,0.593762 5.729625,6.6032189 0 0 0 0.0832,1.12086 h -9.63817 v -1.778186 z m -16.11633,25.46563 h 45.60755 v 0.684194 h -45.60755 z m 16.11633,10.479463 h 1.54306 v 12.011673 h 11.82563 V 97.409557 h 1.54306 v 12.011673 1.77818 h -14.91175 v -1.77818 z m -16.11633,25.465113 h 45.60755 v 0.68471 h -45.60755 z m 16.11633,10.47946 h 1.54306 v 12.01167 h 11.82563 v -12.01167 h 1.54306 v 12.01167 1.77871 h -14.91175 v -1.77871 z m -16.11633,25.46511 h 45.60755 v 0.68472 h -45.60755 z m 16.11633,10.47947 h 1.54306 v 12.01218 h 8.02276 a 5.729625,6.6032189 0 0 1 -0.14004,-1.45004 5.729625,6.6032189 0 0 1 3.94291,-6.27352 v -4.28862 h 1.54306 v 3.96513 a 5.729625,6.6032189 0 0 1 0.2434,-0.006 5.729625,6.6032189 0 0 1 5.72988,6.60321 5.729625,6.6032189 0 0 1 -5.72988,6.60322 5.729625,6.6032189 0 0 1 -5.57693,-5.08961 5.729625,6.6032189 0 0 0 -0.0232,0.59376 5.729625,6.6032189 0 0 0 0.0832,1.12086 h -9.63817 v -1.77819 z" />
<path
id="rect8070-4-2"
style="display:inline;mix-blend-mode:normal;fill:#93ac93;fill-opacity:0.99908;stroke-width:4.05029;stroke-dasharray:48.6032, 4.05029"
d="M 112.40864,15.040942 V 194.77674 h 47.82809 V 15.040942 h -1.11105 v 0.684196 h -45.60755 v -0.684196 z m 11.36003,10.478947 h 1.54306 v 12.011669 h 11.05462 V 25.519889 h 1.54306 v 12.011669 h 11.05513 V 25.519889 h 1.54306 v 12.011669 1.778704 h -26.73893 v -1.778704 z m -10.25054,25.465112 h 45.60755 v 0.684713 h -45.60755 z m 10.25054,10.479463 h 1.54306 v 12.012187 h 11.05462 V 61.464464 h 1.54306 v 12.012187 h 11.05513 V 61.464464 h 1.54306 v 12.012187 1.778185 h -26.73893 v -1.778185 z m -10.25054,25.46563 h 45.60755 v 0.684194 h -45.60755 z m 10.25054,10.479463 h 1.54306 v 12.011673 h 11.05462 V 97.409557 h 1.54306 v 12.011673 h 11.05513 V 97.409557 h 1.54306 v 12.011673 1.77818 h -26.73893 v -1.77818 z m -10.25054,25.465113 h 45.60755 v 0.68471 h -45.60755 z m 10.25054,10.47946 h 1.54306 v 12.01167 h 11.05462 v -12.01167 h 1.54306 v 12.01167 h 11.05513 v -12.01167 h 1.54306 v 12.01167 1.77871 h -26.73893 v -1.77871 z m -10.25054,25.46511 h 45.60755 v 0.68472 h -45.60755 z m 10.25054,10.47947 h 1.54306 v 12.01218 h 11.05462 v -12.01218 h 1.54306 v 12.01218 h 11.05513 v -12.01218 h 1.54306 v 12.01218 1.77819 h -26.73893 v -1.77819 z" />
<path
id="rect8068-0-4"
style="display:inline;mix-blend-mode:normal;fill:#b7c8b7;fill-opacity:0.99908;stroke-width:4.05029;stroke-dasharray:48.6032, 4.05029"
d="M 59.289403,15.040942 V 194.77674 H 107.11697 V 15.040942 h -1.11105 v 0.684196 H 60.398378 v -0.684196 z m 28.202411,10.533207 h 3.939292 v 4.941818 h -3.939292 z m 14.734496,0 h 3.77341 v 4.941818 h -3.77341 z m -41.826898,0.03721 h 2.241725 v 4.941301 h -2.241725 z m 12.106238,0 h 3.931542 V 30.51597 H 72.50565 Z m -12.06438,8.292 h 45.56465 V 47.06276 50.300289 H 60.44127 Z m -0.04289,17.081645 h 45.60754 v 0.684713 H 60.398378 Z m 27.093436,10.53424 h 3.93929 v 4.9413 h -3.93929 z m 14.734494,0 h 3.77341 v 4.9413 h -3.77341 z m -41.826896,0.03669 h 2.241725 v 4.941818 h -2.241725 z m 12.106238,0 h 3.931542 v 4.90461 h -3.931542 z m -12.06438,8.292518 h 45.564648 v 13.159403 3.237529 H 60.44127 Z m -0.04289,17.081645 h 45.607538 v 0.684194 H 60.398378 Z m 27.093436,10.533724 h 3.939288 v 4.941809 h -3.939288 z m 14.734492,0 h 3.77341 v 4.941809 h -3.77341 z m -41.826894,0.03669 h 2.241725 v 4.941809 h -2.241725 z m 12.106238,0 h 3.931542 v 4.905119 h -3.931542 z m -12.06438,8.292519 h 45.564646 v 13.1594 3.23753 H 60.44127 Z m -0.04289,17.08164 h 45.607546 v 0.68471 H 60.398378 Z m 27.093436,10.53424 h 3.939296 v 4.9413 H 87.49182 Z m 14.7345,0 h 3.77341 v 4.9413 h -3.77341 z m -41.826902,0.0367 h 2.241725 v 4.9413 h -2.241725 z m 12.106238,0 h 3.931542 v 4.90461 h -3.931542 z m -12.06438,8.292 h 45.564654 v 13.1594 3.23805 H 60.44127 Z m -0.04289,17.08164 h 45.607544 v 0.68472 H 60.398378 Z m 27.093436,10.53424 h 3.939294 v 4.94182 h -3.939294 z m 14.734498,0 h 3.77341 v 4.94182 h -3.77341 z m -41.8269,0.0367 h 2.241725 v 0.45011 4.49171 H 60.39942 v -4.44417 z m 12.106238,0 H 76.4372 v 0.15658 4.74855 h -3.931542 v -4.66483 z m -12.06438,8.29252 h 45.564652 v 13.15941 3.23752 H 60.44127 Z" />
<path
id="rect8066-6-7"
style="display:inline;mix-blend-mode:normal;fill:#c4c8b7;fill-opacity:0.99908;stroke-width:4.05029;stroke-dasharray:48.6032, 4.05029"
d="m 6.1701643,15.040942 v 0.684196 31.337622 4.606954 31.338138 4.606436 31.338142 4.60695 31.33762 4.60696 31.33814 3.93464 H 53.997736 V 15.040942 h -1.111559 v 0.684196 H 7.2786253 V 15.040942 Z M 23.394436,25.519889 h 1.543576 V 37.531558 H 36.763646 V 25.519889 h 1.543058 v 12.011669 1.778704 H 23.394436 V 37.531558 Z M 7.2786253,50.985001 H 52.886177 v 0.684713 H 7.2786253 Z M 23.394436,61.464464 h 1.543576 V 73.476651 H 36.763646 V 61.464464 h 1.543058 v 12.012187 1.778185 H 23.394436 V 73.476651 Z M 7.2786253,86.930094 H 52.886177 v 0.684194 H 7.2786253 Z M 23.394436,97.409557 h 1.543576 V 109.42123 H 36.763646 V 97.409557 h 1.543058 v 12.011673 1.77818 H 23.394436 v -1.77818 z M 7.2786253,122.87467 H 52.886177 v 0.68471 H 7.2786253 Z m 16.1158107,10.47946 h 1.543576 v 12.01167 h 11.825634 v -12.01167 h 1.543058 v 12.01167 1.77871 H 23.394436 V 145.3658 Z M 7.2786253,158.81924 H 52.886177 v 0.68472 H 7.2786253 Z m 16.1158107,10.47947 h 1.543576 v 12.01218 h 11.825634 v -12.01218 h 1.543058 v 12.01218 1.77819 H 23.394436 v -1.77819 z" />
<g
id="g3147-6-6-8-8-5"
style="display:inline;mix-blend-mode:normal"
transform="matrix(0.58818251,0,0,0.67786248,87.225274,23.366168)" />
</g>
</svg>
No preview for this file type
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="297mm"
height="210mm"
viewBox="0 0 297 210"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="platte_24x21.svg">
<defs
id="defs2">
<inkscape:path-effect
effect="powerstroke"
id="path-effect845"
is_visible="true"
lpeversion="1"
offset_points="0.60730322,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect843"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
<inkscape:path-effect
effect="powerstroke"
id="path-effect838"
is_visible="true"
lpeversion="1"
offset_points="0.2999652,0.37584776"
sort_points="true"
interpolator_type="CentripetalCatmullRom"
interpolator_beta="0.75"
start_linecap_type="round"
linejoin_type="spiro"
miter_limit="4"
scale_width="1"
end_linecap_type="round" />
<inkscape:path-effect
effect="simplify"
id="path-effect836"
is_visible="true"
lpeversion="1"
steps="1"
threshold="0.0032025118"
smooth_angles="0"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
step="1" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#808080"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="260.31591"
inkscape:cy="611.31181"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:pagecheckerboard="false"
inkscape:window-width="1920"
inkscape:window-height="1030"
inkscape:window-x="0"
inkscape:window-y="49"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="dark"
inkscape:groupmode="layer"
id="layer1"
style="display:inline">
<rect
style="fill:#8a8a8a;fill-opacity:0.99908;stroke-width:9.31972;stroke-dasharray:111.836, 9.31972"
id="rect4044"
width="239.92998"
height="181.74677"
x="28.459209"
y="15.040346" />
<path
style="fill:#000000;stroke:none;stroke-width:1.01391px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 68.766478,172.40316 295.48192,167.56764"
id="path833" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07"
width="46.186916"
height="0.69494456"
x="28.459211"
y="88.017029" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851"
width="11.975883"
height="13.83479"
x="46.342937"
y="97.01371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809"
width="15.101381"
height="1.805321"
x="44.780186"
y="95.208389" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-46.342937"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-59.881565"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2"
width="15.101381"
height="1.805321"
x="44.780186"
y="110.8485" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1"
width="15.10138"
height="1.0815338"
x="44.780186"
y="112.65382" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911"
width="46.186916"
height="0.69494456"
x="28.459211"
y="123.81042" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1"
width="1.1244258"
height="31.81184"
x="74.646126"
y="88.711975" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4"
width="1.1244258"
height="31.81184"
x="27.334787"
y="88.711975" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-4"
width="46.186916"
height="0.69494456"
x="222.20227"
y="88.017029" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-2"
width="11.975883"
height="13.83479"
x="240.086"
y="97.01371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-22"
width="15.101381"
height="1.805321"
x="238.52324"
y="95.208389" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-05"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-240.086"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-5"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-253.62463"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-2"
width="15.101381"
height="1.805321"
x="238.52324"
y="110.8485" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-90"
width="15.10138"
height="1.0815338"
x="238.52324"
y="112.65382" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-2"
width="46.186916"
height="0.69494456"
x="222.20227"
y="123.81042" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-8"
width="1.1244258"
height="31.81184"
x="268.38919"
y="88.711975" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-38"
width="1.1244258"
height="31.81184"
x="221.07785"
y="88.711975" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-0-0"
cx="254.00215"
cy="111.51606"
rx="5.8024182"
ry="6.7030749" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-4"
cx="253.87122"
cy="109.37664"
rx="5.8024182"
ry="6.7030749" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-1"
width="46.186916"
height="0.69494456"
x="173.76651"
y="88.017029" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-9"
width="11.975883"
height="13.83479"
x="191.65024"
y="97.01371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-6"
width="15.101381"
height="1.805321"
x="190.08749"
y="95.208389" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-2"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-191.65024"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-54"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-205.18887"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-4"
width="15.101381"
height="1.805321"
x="190.08749"
y="110.8485" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-9"
width="15.10138"
height="1.0815338"
x="190.08749"
y="112.65382" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-9"
width="46.186916"
height="0.69494456"
x="173.76651"
y="123.81042" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-3"
width="1.1244258"
height="31.81184"
x="219.95343"
y="88.711975" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-6"
width="1.1244258"
height="31.81184"
x="172.64209"
y="88.711975" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-0"
width="46.186916"
height="0.69494456"
x="222.20227"
y="124.50538" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-29"
width="11.975883"
height="13.83479"
x="240.086"
y="133.50206" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-4"
width="15.101381"
height="1.805321"
x="238.52324"
y="131.69673" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-3"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-240.086"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-51"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-253.62463"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-7"
width="15.101381"
height="1.805321"
x="238.52324"
y="147.33685" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-4"
width="15.10138"
height="1.0815338"
x="238.52324"
y="149.14217" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-3"
width="46.186916"
height="0.69494456"
x="222.20227"
y="160.29878" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-1"
width="1.1244258"
height="31.81184"
x="268.38919"
y="125.20033" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-4"
width="1.1244258"
height="31.81184"
x="221.07785"
y="125.20033" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-9"
width="46.186916"
height="0.69494456"
x="173.76651"
y="124.50538" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-4"
width="11.975883"
height="13.83479"
x="191.65024"
y="133.50206" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-226"
width="15.101381"
height="1.805321"
x="190.08749"
y="131.69673" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-4"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-191.65024"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-1"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-205.18887"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-28"
width="15.101381"
height="1.805321"
x="190.08749"
y="147.33685" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-8"
width="15.10138"
height="1.0815338"
x="190.08749"
y="149.14217" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-92"
width="46.186916"
height="0.69494456"
x="173.76651"
y="160.29878" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-88"
width="1.1244258"
height="31.81184"
x="219.95343"
y="125.20033" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-8"
width="1.1244258"
height="31.81184"
x="172.64209"
y="125.20033" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-3"
width="46.186916"
height="0.69494456"
x="28.459211"
y="124.50538" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-8"
width="11.975883"
height="13.83479"
x="46.342937"
y="133.50206" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-3"
width="15.101381"
height="1.805321"
x="44.780186"
y="131.69673" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-33"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-46.342937"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-8"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-59.881565"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-0"
width="15.101381"
height="1.805321"
x="44.780186"
y="147.33685" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-47"
width="15.10138"
height="1.0815338"
x="44.780186"
y="149.14217" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-6"
width="46.186916"
height="0.69494456"
x="28.459211"
y="160.29878" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-89"
width="1.1244258"
height="31.81184"
x="74.646126"
y="125.20033" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-0"
width="1.1244258"
height="31.81184"
x="27.334787"
y="125.20033" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-4-8"
width="46.186916"
height="0.69494456"
x="173.76651"
y="160.99371" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-2-7"
width="11.975883"
height="13.83479"
x="191.65024"
y="169.99039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-22-9"
width="15.101381"
height="1.805321"
x="190.08749"
y="168.18507" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-05-0"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-191.65024"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-5-3"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-205.18887"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-2-3"
width="15.101381"
height="1.805321"
x="190.08749"
y="183.82518" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-90-3"
width="15.10138"
height="1.0815338"
x="190.08749"
y="185.63049" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-2-7"
width="46.186916"
height="0.69494456"
x="173.76651"
y="196.78711" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-8-3"
width="1.1244258"
height="31.81184"
x="219.95343"
y="161.68866" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-38-2"
width="1.1244258"
height="31.81184"
x="172.64209"
y="161.68866" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-0-0-6"
cx="205.56639"
cy="184.49274"
rx="5.8024182"
ry="6.7030749" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-4-5"
cx="205.43546"
cy="182.35332"
rx="5.8024182"
ry="6.7030749" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-4-6"
width="46.186916"
height="0.69494456"
x="173.76651"
y="51.528687" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-2-5"
width="11.975883"
height="13.83479"
x="191.65024"
y="60.525364" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-22-8"
width="15.101381"
height="1.805321"
x="190.08749"
y="58.720043" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-05-7"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-191.65024"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-5-9"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-205.18887"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-2-6"
width="15.101381"
height="1.805321"
x="190.08749"
y="74.360153" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-90-0"
width="15.10138"
height="1.0815338"
x="190.08749"
y="76.165474" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-2-4"
width="46.186916"
height="0.69494456"
x="173.76651"
y="87.322083" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-8-1"
width="1.1244258"
height="31.81184"
x="219.95343"
y="52.223633" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-38-0"
width="1.1244258"
height="31.81184"
x="172.64209"
y="52.223633" />
<ellipse
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-0-0-4"
cx="205.56639"
cy="75.027718"
rx="5.8024182"
ry="6.7030749" />
<ellipse
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:1.28043;stroke-miterlimit:4;stroke-dasharray:15.3652, 1.28043;stroke-dashoffset:0;stroke-opacity:1"
id="path3149-4-8"
cx="205.43546"
cy="72.888298"
rx="5.8024182"
ry="6.7030749" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-08"
width="46.186916"
height="0.69494456"
x="222.20227"
y="51.528687" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-6"
width="11.975883"
height="13.83479"
x="240.086"
y="60.525364" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-24"
width="15.101381"
height="1.805321"
x="238.52324"
y="58.720043" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-7"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-240.086"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-9"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-253.62463"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-3"
width="15.101381"
height="1.805321"
x="238.52324"
y="74.360153" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-92"
width="15.10138"
height="1.0815338"
x="238.52324"
y="76.165474" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-8"
width="46.186916"
height="0.69494456"
x="222.20227"
y="87.322083" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-30"
width="1.1244258"
height="31.81184"
x="268.38919"
y="52.223633" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-1"
width="1.1244258"
height="31.81184"
x="221.07785"
y="52.223633" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-91"
width="46.186916"
height="0.69494456"
x="28.459211"
y="51.528687" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-5"
width="11.975883"
height="13.83479"
x="46.342937"
y="60.525364" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-49"
width="15.101381"
height="1.805321"
x="44.780186"
y="58.720043" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-25"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-46.342937"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-7"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-59.881565"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-49"
width="15.101381"
height="1.805321"
x="44.780186"
y="74.360153" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-94"
width="15.10138"
height="1.0815338"
x="44.780186"
y="76.165474" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-5"
width="46.186916"
height="0.69494456"
x="28.459211"
y="87.322083" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-9"
width="1.1244258"
height="31.81184"
x="74.646126"
y="52.223633" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-3"
width="1.1244258"
height="31.81184"
x="27.334787"
y="52.223633" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-7"
width="46.186916"
height="0.69494456"
x="222.20227"
y="160.99371" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-0"
width="11.975883"
height="13.83479"
x="240.086"
y="169.99039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-81"
width="15.101381"
height="1.805321"
x="238.52324"
y="168.18507" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-9"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-240.086"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-97"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-253.62463"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-8"
width="15.101381"
height="1.805321"
x="238.52324"
y="183.82518" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-2"
width="15.10138"
height="1.0815338"
x="238.52324"
y="185.63049" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-53"
width="46.186916"
height="0.69494456"
x="222.20227"
y="196.78711" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-49"
width="1.1244258"
height="31.81184"
x="268.38919"
y="161.68866" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-02"
width="1.1244258"
height="31.81184"
x="221.07785"
y="161.68866" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-96"
width="46.186916"
height="0.69494456"
x="28.459211"
y="160.99371" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-21"
width="11.975883"
height="13.83479"
x="46.342937"
y="169.99039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-20"
width="15.101381"
height="1.805321"
x="44.780186"
y="168.18507" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-73"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-46.342937"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-11"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-59.881565"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-9"
width="15.101381"
height="1.805321"
x="44.780186"
y="183.82518" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-0"
width="15.10138"
height="1.0815338"
x="44.780186"
y="185.63049" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-56"
width="46.186916"
height="0.69494456"
x="28.459211"
y="196.78711" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-7"
width="1.1244258"
height="31.81184"
x="74.646126"
y="161.68866" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-7"
width="1.1244258"
height="31.81184"
x="27.334787"
y="161.68866" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47"
width="46.186916"
height="0.69494456"
x="125.33075"
y="51.528687" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48"
width="11.195115"
height="13.83479"
x="150.03227"
y="60.525364" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.712242;stroke-miterlimit:4;stroke-dasharray:8.54697, 0.712242;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5"
width="26.886181"
height="1.805321"
x="135.84595"
y="58.720043" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-137.2744"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-162.79013"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.71479;stroke-miterlimit:4;stroke-dasharray:8.57738, 0.71479;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-6"
width="27.07848"
height="1.805321"
x="135.71165"
y="74.360153" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.553244;stroke-miterlimit:4;stroke-dasharray:6.63899, 0.553244;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-06"
width="27.07848"
height="1.0815338"
x="135.71165"
y="76.165474" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64"
width="46.186916"
height="0.69494456"
x="125.33075"
y="87.322083" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6"
width="1.1244258"
height="31.81184"
x="171.51767"
y="52.223633" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2"
width="1.1244258"
height="31.81184"
x="124.20633"
y="52.223633" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9"
width="11.195115"
height="13.83479"
x="137.2744"
y="60.525364" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6"
width="12.19356"
height="1.5627494"
x="62.166595"
y="-150.03227"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-7"
width="46.186916"
height="0.69494456"
x="125.33075"
y="88.017029" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-0"
width="11.195115"
height="13.83479"
x="150.03227"
y="97.01371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.712242;stroke-miterlimit:4;stroke-dasharray:8.54697, 0.712242;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-1"
width="26.886181"
height="1.805321"
x="135.84595"
y="95.208389" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-0"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-137.2744"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-1"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-162.79013"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.71479;stroke-miterlimit:4;stroke-dasharray:8.57738, 0.71479;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-6-3"
width="27.07848"
height="1.805321"
x="135.71165"
y="110.8485" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.553244;stroke-miterlimit:4;stroke-dasharray:6.63899, 0.553244;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-06-7"
width="27.07848"
height="1.0815338"
x="135.71165"
y="112.65382" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-7"
width="46.186916"
height="0.69494456"
x="125.33075"
y="123.81042" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-2"
width="1.1244258"
height="31.81184"
x="171.51767"
y="88.711975" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-6"
width="1.1244258"
height="31.81184"
x="124.20633"
y="88.711975" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-4"
width="11.195115"
height="13.83479"
x="137.2744"
y="97.01371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-5"
width="12.19356"
height="1.5627494"
x="98.654938"
y="-150.03227"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-0"
width="46.186916"
height="0.69494456"
x="125.33075"
y="124.50538" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-2"
width="11.195115"
height="13.83479"
x="150.03227"
y="133.50206" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.712242;stroke-miterlimit:4;stroke-dasharray:8.54697, 0.712242;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-9"
width="26.886181"
height="1.805321"
x="135.84595"
y="131.69673" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-09"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-137.2744"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-9"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-162.79013"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.71479;stroke-miterlimit:4;stroke-dasharray:8.57738, 0.71479;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-6-4"
width="27.07848"
height="1.805321"
x="135.71165"
y="147.33685" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.553244;stroke-miterlimit:4;stroke-dasharray:6.63899, 0.553244;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-06-5"
width="27.07848"
height="1.0815338"
x="135.71165"
y="149.14217" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-1"
width="46.186916"
height="0.69494456"
x="125.33075"
y="160.29878" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-0"
width="1.1244258"
height="31.81184"
x="171.51767"
y="125.20033" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-3"
width="1.1244258"
height="31.81184"
x="124.20633"
y="125.20033" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-7"
width="11.195115"
height="13.83479"
x="137.2744"
y="133.50206" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-8"
width="12.19356"
height="1.5627494"
x="135.1433"
y="-150.03227"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-6"
width="46.186916"
height="0.69494456"
x="125.33075"
y="160.99371" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-04"
width="11.195115"
height="13.83479"
x="150.03227"
y="169.99039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.712242;stroke-miterlimit:4;stroke-dasharray:8.54697, 0.712242;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-6"
width="26.886181"
height="1.805321"
x="135.84595"
y="168.18507" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-7"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-137.2744"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-60"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-162.79013"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.71479;stroke-miterlimit:4;stroke-dasharray:8.57738, 0.71479;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-6-9"
width="27.07848"
height="1.805321"
x="135.71165"
y="183.82518" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.553244;stroke-miterlimit:4;stroke-dasharray:6.63899, 0.553244;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-06-75"
width="27.07848"
height="1.0815338"
x="135.71165"
y="185.63049" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-9"
width="46.186916"
height="0.69494456"
x="125.33075"
y="196.78711" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-7"
width="1.1244258"
height="31.81184"
x="171.51767"
y="161.68866" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-8"
width="1.1244258"
height="31.81184"
x="124.20633"
y="161.68866" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-5"
width="11.195115"
height="13.83479"
x="137.2744"
y="169.99039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-3"
width="12.19356"
height="1.5627494"
x="171.63162"
y="-150.03227"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.475046;stroke-miterlimit:4;stroke-dasharray:5.70053, 0.475046;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-3"
width="5.0162878"
height="4.3044052"
x="62.222034"
y="-108.32205"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.438883;stroke-miterlimit:4;stroke-dasharray:5.26658, 0.438883;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-1"
width="5.0162878"
height="3.6740029"
x="62.222034"
y="-122.92825"
transform="rotate(90)" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.11126;stroke-miterlimit:4;stroke-dasharray:13.3352, 1.11126;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3"
width="10.932199"
height="10.808301"
x="108.32205"
y="56.430019" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.488947;stroke-miterlimit:4;stroke-dasharray:5.86736, 0.488947;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9"
width="5.0162878"
height="4.5600195"
x="62.259399"
y="-93.448097"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-8"
width="46.186916"
height="0.69494456"
x="76.894989"
y="51.528687" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.296935;stroke-miterlimit:4;stroke-dasharray:3.56321, 0.296935;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-9"
width="5.398303"
height="1.5627494"
x="63.754471"
y="-88.838638"
transform="rotate(90)" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-74"
width="46.186916"
height="0.69494456"
x="76.894989"
y="87.322083" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-1"
width="1.1244258"
height="31.81184"
x="123.08191"
y="52.223633" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-9"
width="1.1244258"
height="31.81184"
x="75.770569"
y="52.223633" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.22005;stroke-miterlimit:4;stroke-dasharray:14.6407, 1.22005;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0"
width="9.9734364"
height="14.280499"
x="79.180397"
y="56.381039" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:2.83322;stroke-miterlimit:4;stroke-dasharray:33.9991, 2.83322;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-7-8"
width="46.143177"
height="16.645044"
x="76.938728"
y="70.67704" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.43696;stroke-miterlimit:4;stroke-dasharray:17.2437, 1.43696;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-3"
width="46.186916"
height="4.2776675"
x="76.894989"
y="52.223633" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.12519;stroke-miterlimit:4;stroke-dasharray:13.5024, 1.12519;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-8"
width="11.195115"
height="10.820711"
x="93.137741"
y="56.41761" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.345004;stroke-miterlimit:4;stroke-dasharray:4.14004, 0.345004;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-8"
width="5.0162878"
height="2.2703412"
x="62.259399"
y="-79.166359"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.475046;stroke-miterlimit:4;stroke-dasharray:5.70053, 0.475046;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-3-9"
width="5.0162878"
height="4.3044052"
x="98.710373"
y="-108.32205"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.438883;stroke-miterlimit:4;stroke-dasharray:5.26658, 0.438883;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-1-7"
width="5.0162878"
height="3.6740029"
x="98.710373"
y="-122.92825"
transform="rotate(90)" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.11126;stroke-miterlimit:4;stroke-dasharray:13.3352, 1.11126;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-9"
width="10.932199"
height="10.808301"
x="108.32205"
y="92.918365" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.488947;stroke-miterlimit:4;stroke-dasharray:5.86736, 0.488947;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-9"
width="5.0162878"
height="4.5600195"
x="98.747742"
y="-93.448097"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-8-3"
width="46.186916"
height="0.69494456"
x="76.894989"
y="88.017029" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.296935;stroke-miterlimit:4;stroke-dasharray:3.56321, 0.296935;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-9-2"
width="5.398303"
height="1.5627494"
x="100.24281"
y="-88.838638"
transform="rotate(90)" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-74-4"
width="46.186916"
height="0.69494456"
x="76.894989"
y="123.81042" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-1-3"
width="1.1244258"
height="31.81184"
x="123.08191"
y="88.711975" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-9-7"
width="1.1244258"
height="31.81184"
x="75.770569"
y="88.711975" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.22005;stroke-miterlimit:4;stroke-dasharray:14.6407, 1.22005;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-1"
width="9.9734364"
height="14.280499"
x="79.180397"
y="92.869385" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:2.83322;stroke-miterlimit:4;stroke-dasharray:33.9991, 2.83322;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-7-8-2"
width="46.143177"
height="16.645044"
x="76.938728"
y="107.16538" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.43696;stroke-miterlimit:4;stroke-dasharray:17.2437, 1.43696;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-3-2"
width="46.186916"
height="4.2776675"
x="76.894989"
y="88.711975" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.12519;stroke-miterlimit:4;stroke-dasharray:13.5024, 1.12519;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-8-0"
width="11.195115"
height="10.820711"
x="93.137741"
y="92.905952" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.345004;stroke-miterlimit:4;stroke-dasharray:4.14004, 0.345004;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-8-2"
width="5.0162878"
height="2.2703412"
x="98.747742"
y="-79.166359"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.475046;stroke-miterlimit:4;stroke-dasharray:5.70053, 0.475046;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-3-7"
width="5.0162878"
height="4.3044052"
x="135.19873"
y="-108.32205"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.438883;stroke-miterlimit:4;stroke-dasharray:5.26658, 0.438883;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-1-5"
width="5.0162878"
height="3.6740029"
x="135.19873"
y="-122.92825"
transform="rotate(90)" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.11126;stroke-miterlimit:4;stroke-dasharray:13.3352, 1.11126;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-1"
width="10.932199"
height="10.808301"
x="108.32205"
y="129.40671" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.488947;stroke-miterlimit:4;stroke-dasharray:5.86736, 0.488947;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-7"
width="5.0162878"
height="4.5600195"
x="135.2361"
y="-93.448097"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-8-4"
width="46.186916"
height="0.69494456"
x="76.894989"
y="124.50538" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.296935;stroke-miterlimit:4;stroke-dasharray:3.56321, 0.296935;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-9-1"
width="5.398303"
height="1.5627494"
x="136.73117"
y="-88.838638"
transform="rotate(90)" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-74-7"
width="46.186916"
height="0.69494456"
x="76.894989"
y="160.29878" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-1-1"
width="1.1244258"
height="31.81184"
x="123.08191"
y="125.20033" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-9-1"
width="1.1244258"
height="31.81184"
x="75.770569"
y="125.20033" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.22005;stroke-miterlimit:4;stroke-dasharray:14.6407, 1.22005;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-17"
width="9.9734364"
height="14.280499"
x="79.180397"
y="129.35773" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:2.83322;stroke-miterlimit:4;stroke-dasharray:33.9991, 2.83322;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-7-8-0"
width="46.143177"
height="16.645044"
x="76.938728"
y="143.65373" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.43696;stroke-miterlimit:4;stroke-dasharray:17.2437, 1.43696;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-3-4"
width="46.186916"
height="4.2776675"
x="76.894989"
y="125.20033" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.12519;stroke-miterlimit:4;stroke-dasharray:13.5024, 1.12519;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-8-08"
width="11.195115"
height="10.820711"
x="93.137741"
y="129.3943" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.345004;stroke-miterlimit:4;stroke-dasharray:4.14004, 0.345004;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-8-5"
width="5.0162878"
height="2.2703412"
x="135.2361"
y="-79.166359"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.475046;stroke-miterlimit:4;stroke-dasharray:5.70053, 0.475046;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-3-6"
width="5.0162878"
height="4.3044052"
x="171.68706"
y="-108.32205"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.438883;stroke-miterlimit:4;stroke-dasharray:5.26658, 0.438883;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-1-2"
width="5.0162878"
height="3.6740029"
x="171.68706"
y="-122.92825"
transform="rotate(90)" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.11126;stroke-miterlimit:4;stroke-dasharray:13.3352, 1.11126;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-19"
width="10.932199"
height="10.808301"
x="108.32205"
y="165.89505" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.488947;stroke-miterlimit:4;stroke-dasharray:5.86736, 0.488947;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-6"
width="5.0162878"
height="4.5600195"
x="171.72443"
y="-93.448097"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-8-48"
width="46.186916"
height="0.69494456"
x="76.894989"
y="160.99371" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.296935;stroke-miterlimit:4;stroke-dasharray:3.56321, 0.296935;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-9-0"
width="5.398303"
height="1.5627494"
x="173.2195"
y="-88.838638"
transform="rotate(90)" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-74-8"
width="46.186916"
height="0.69494456"
x="76.894989"
y="196.78711" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-1-10"
width="1.1244258"
height="31.81184"
x="123.08191"
y="161.68866" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-9-2"
width="1.1244258"
height="31.81184"
x="75.770569"
y="161.68866" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.22005;stroke-miterlimit:4;stroke-dasharray:14.6407, 1.22005;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-2"
width="9.9734364"
height="14.280499"
x="79.180397"
y="165.84607" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:2.83322;stroke-miterlimit:4;stroke-dasharray:33.9991, 2.83322;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-7-8-9"
width="46.143177"
height="16.645044"
x="76.938728"
y="180.14206" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.43696;stroke-miterlimit:4;stroke-dasharray:17.2437, 1.43696;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-3-7"
width="46.186916"
height="4.2776675"
x="76.894989"
y="161.68866" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.12519;stroke-miterlimit:4;stroke-dasharray:13.5024, 1.12519;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-8-5"
width="11.195115"
height="10.820711"
x="93.137741"
y="165.88263" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.345004;stroke-miterlimit:4;stroke-dasharray:4.14004, 0.345004;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-8-6"
width="5.0162878"
height="2.2703412"
x="171.72443"
y="-79.166359"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-0-6"
width="46.186916"
height="0.69494456"
x="222.20227"
y="15.040346" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-29-3"
width="11.975883"
height="13.83479"
x="240.086"
y="24.037024" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-4-7"
width="15.101381"
height="1.805321"
x="238.52324"
y="22.231703" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-3-9"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-240.086"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-51-7"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-253.62463"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-7-4"
width="15.101381"
height="1.805321"
x="238.52324"
y="37.871815" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-4-9"
width="15.10138"
height="1.0815338"
x="238.52324"
y="39.677135" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-3-1"
width="46.186916"
height="0.69494456"
x="222.20227"
y="50.833744" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-1-7"
width="1.1244258"
height="31.81184"
x="268.38919"
y="15.735291" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-4-0"
width="1.1244258"
height="31.81184"
x="221.07785"
y="15.735291" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-9-0"
width="46.186916"
height="0.69494456"
x="173.76651"
y="15.040346" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-4-8"
width="11.975883"
height="13.83479"
x="191.65024"
y="24.037024" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-226-5"
width="15.101381"
height="1.805321"
x="190.08749"
y="22.231703" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-4-3"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-191.65024"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-1-9"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-205.18887"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-28-4"
width="15.101381"
height="1.805321"
x="190.08749"
y="37.871815" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-8-1"
width="15.10138"
height="1.0815338"
x="190.08749"
y="39.677135" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-92-5"
width="46.186916"
height="0.69494456"
x="173.76651"
y="50.833744" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-88-4"
width="1.1244258"
height="31.81184"
x="219.95343"
y="15.735291" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-8-1"
width="1.1244258"
height="31.81184"
x="172.64209"
y="15.735291" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-3-5"
width="46.186916"
height="0.69494456"
x="28.459211"
y="15.040346" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.3159;stroke-miterlimit:4;stroke-dasharray:15.791, 1.3159;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-8-4"
width="11.975883"
height="13.83479"
x="46.342937"
y="24.037024" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-3-9"
width="15.101381"
height="1.805321"
x="44.780186"
y="22.231703" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-33-8"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-46.342937"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-8-3"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-59.881565"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.533793;stroke-miterlimit:4;stroke-dasharray:6.4055, 0.533793;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-0-8"
width="15.101381"
height="1.805321"
x="44.780186"
y="37.871815" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.413155;stroke-miterlimit:4;stroke-dasharray:4.9579, 0.413155;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-47-5"
width="15.10138"
height="1.0815338"
x="44.780186"
y="39.677135" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-6-2"
width="46.186916"
height="0.69494456"
x="28.459211"
y="50.833744" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-89-2"
width="1.1244258"
height="31.81184"
x="74.646126"
y="15.735291" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-0-2"
width="1.1244258"
height="31.81184"
x="27.334787"
y="15.735291" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-0-0"
width="46.186916"
height="0.69494456"
x="125.33075"
y="15.040346" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-2-3"
width="11.195115"
height="13.83479"
x="150.03227"
y="24.037024" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.712242;stroke-miterlimit:4;stroke-dasharray:8.54697, 0.712242;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-9-4"
width="26.886181"
height="1.805321"
x="135.84595"
y="22.231703" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-09-6"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-137.2744"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-9-3"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-162.79013"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.71479;stroke-miterlimit:4;stroke-dasharray:8.57738, 0.71479;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-2-6-4-6"
width="27.07848"
height="1.805321"
x="135.71165"
y="37.871815" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:0.553244;stroke-miterlimit:4;stroke-dasharray:6.63899, 0.553244;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-1-06-5-3"
width="27.07848"
height="1.0815338"
x="135.71165"
y="39.677135" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-1-3"
width="46.186916"
height="0.69494456"
x="125.33075"
y="50.833744" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-0-4"
width="1.1244258"
height="31.81184"
x="171.51767"
y="15.735291" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-3-4"
width="1.1244258"
height="31.81184"
x="124.20633"
y="15.735291" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.27228;stroke-miterlimit:4;stroke-dasharray:15.2675, 1.27228;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-7-3"
width="11.195115"
height="13.83479"
x="137.2744"
y="24.037024" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.44627;stroke-miterlimit:4;stroke-dasharray:5.35523, 0.44627;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-8-9"
width="12.19356"
height="1.5627494"
x="25.678253"
y="-150.03227"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.475046;stroke-miterlimit:4;stroke-dasharray:5.70053, 0.475046;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-3-7-2"
width="5.0162878"
height="4.3044052"
x="25.733692"
y="-108.32205"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.438883;stroke-miterlimit:4;stroke-dasharray:5.26658, 0.438883;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-1-5-5"
width="5.0162878"
height="3.6740029"
x="25.733692"
y="-122.92825"
transform="rotate(90)" />
<rect
style="fill:#000000;stroke:none;stroke-width:1.11126;stroke-miterlimit:4;stroke-dasharray:13.3352, 1.11126;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-1-8"
width="10.932199"
height="10.808301"
x="108.32205"
y="19.941679" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.488947;stroke-miterlimit:4;stroke-dasharray:5.86736, 0.488947;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-7-9"
width="5.0162878"
height="4.5600195"
x="25.771059"
y="-93.448097"
transform="rotate(90)" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-07-47-8-4-0"
width="46.186916"
height="0.69494456"
x="76.894989"
y="15.040346" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.296935;stroke-miterlimit:4;stroke-dasharray:3.56321, 0.296935;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-8-9-1-2"
width="5.398303"
height="1.5627494"
x="27.266129"
y="-88.838638"
transform="rotate(90)" />
<rect
style="fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.83663;stroke-miterlimit:4;stroke-dasharray:10.0396, 0.83663;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-64-74-7-4"
width="46.186916"
height="0.69494456"
x="76.894989"
y="50.833744" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-6-1-1-7"
width="1.1244258"
height="31.81184"
x="123.08191"
y="15.735291" />
<rect
style="display:inline;fill:#000000;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.883205;stroke-miterlimit:4;stroke-dasharray:10.5984, 0.883205;stroke-dashoffset:0;stroke-opacity:1"
id="rect2911-0-1-4-2-9-1-6"
width="1.1244258"
height="31.81184"
x="75.770569"
y="15.735291" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.22005;stroke-miterlimit:4;stroke-dasharray:14.6407, 1.22005;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-17-5"
width="9.9734364"
height="14.280499"
x="79.180397"
y="19.892698" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:2.83322;stroke-miterlimit:4;stroke-dasharray:33.9991, 2.83322;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-5-7-8-0-7"
width="46.143177"
height="16.645044"
x="76.938728"
y="34.188698" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.43696;stroke-miterlimit:4;stroke-dasharray:17.2437, 1.43696;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-9-0-3-4-1"
width="46.186916"
height="4.2776675"
x="76.894989"
y="15.735291" />
<rect
style="display:inline;fill:#000000;stroke:none;stroke-width:1.12519;stroke-miterlimit:4;stroke-dasharray:13.5024, 1.12519;stroke-dashoffset:0;stroke-opacity:1"
id="rect851-48-3-8-08-3"
width="11.195115"
height="10.820711"
x="93.137741"
y="19.92927" />
<rect
style="display:inline;fill:#ffffff;fill-opacity:0.99908;fill-rule:nonzero;stroke:none;stroke-width:0.345004;stroke-miterlimit:4;stroke-dasharray:4.14004, 0.345004;stroke-dashoffset:0;stroke-opacity:1"
id="rect2809-8-0-2-6-9-8-5-3"
width="5.0162878"
height="2.2703412"
x="25.771059"
y="-79.166359"
transform="rotate(90)" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="light"
style="display:none" />
</svg>
This diff could not be displayed because it is too large.
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!