diff --git a/kibot/out_qr_lib.py b/kibot/out_qr_lib.py index c0b5c0be..3961acab 100644 --- a/kibot/out_qr_lib.py +++ b/kibot/out_qr_lib.py @@ -220,6 +220,8 @@ class QR_LibOptions(BaseOptions): mod.append([Symbol('layer'), Symbol(qr.layer)]) mod.append([Symbol('tedit'), 0]) mod.append(Sep()) + mod.append([Symbol('attr'), Symbol('virtual')]) + mod.append(Sep()) mod.append(self.fp_field(center, 'reference', self.reference+'***', qr.layer, 0)) mod.append(Sep()) mod.append(self.fp_field(center, 'value', qr.name, qr.layer, 1)) @@ -233,7 +235,7 @@ class QR_LibOptions(BaseOptions): mod.append(Sep()) mod.append(self.fp_field(center, 'user', 'qr_mask: '+str(qrc.get_mask()), qr.layer, 5)) mod.append(Sep()) - mod.append(self.fp_field(center, 'user', qr._text_sch, qr.layer, 6)) + mod.append(self.fp_field(center, 'user', qr._text_pcb, qr.layer, 6)) mod.append(Sep()) # The QR itself mod.extend(self.qr_draw_fp(size, size_rect, center, qrc, qr.pcb_negative, qr.layer)) @@ -319,6 +321,25 @@ class QR_LibOptions(BaseOptions): sexp[:] = list(filter(lambda s: not is_symbol('fp_poly', s), sexp)) # Add the new drawings sexp.extend(self.qr_draw_fp(size, size_rect, center, qrc, qr.pcb_negative, qr.layer, do_sep=False)) + # Update the fields + for s in sexp: + if (is_symbol('fp_text', s) and len(s) > 2 and isinstance(s[1], Symbol) and s[1].value() == 'user' and + isinstance(s[2], str)): + res = s[2].split(':') + if len(res) > 1: + logger.debug('- Updating field `{}`'.format(res[0])) + if res[0] == 'qr_version': + s[2] = 'qr_version: '+str(qrc.get_version()) + elif res[0] == 'qr_size': + s[2] = 'qr_size: '+str(size) + elif res[0] == 'qr_ecc': + ecc = qrc.get_error_correction_level() + s[2] = 'qr_ecc: {},{}'.format(ecc.ordinal, ecc.formatbits) + elif res[0] == 'qr_mask': + s[2] = 'qr_mask: '+str(qrc.get_mask()) + elif s[2][0] == ' ': + logger.debug('- Updating text `{}`'.format(qr._text_pcb)) + s[2] = ' '+qr._text_pcb def update_footprints(self, known_qrs): # Replace known QRs in the PCB @@ -380,6 +401,25 @@ class QR_LibOptions(BaseOptions): for s in sexp_iter(sexp, 'symbol'): if len(s) >= 2 and isinstance(s[1], str) and s[1] == sub_unit_name: s[:] = list(sub_unit_sexp) + # Update the fields + for s in sexp: + if is_symbol('property', s) and len(s) > 2 and isinstance(s[1], str) and isinstance(s[2], str): + new_val = None + field = s[1] + if field == 'qr_version': + new_val = str(qrc.get_version()) + elif field == 'qr_size': + new_val = str(size) + elif field == 'qr_ecc': + ecc = qrc.get_error_correction_level() + new_val = '{},{}'.format(ecc.ordinal, ecc.formatbits) + elif field == 'qr_mask': + new_val = str(qrc.get_mask()) + elif field == 'qr_text': + new_val = qr._text_sch + if new_val is not None: + logger.debug('- Updating field `{}` {} -> {}'.format(field, s[2], new_val)) + s[2] = new_val def update_symbols(self, fname, sexp, known_qrs): # Replace known QRs in the Schematic @@ -468,7 +508,6 @@ class QR_LibOptions(BaseOptions): for qr in self.qrs: name = self.lib+':'+qr.name known_qrs[name.lower()] = qr - # TODO: Update fields # PCB self.update_footprints(known_qrs) # Schematic diff --git a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod index 5f020cc8..48b6fb42 100644 --- a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod +++ b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 6" (at 0 -33.449999999999996) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) diff --git a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod.bogus b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod.bogus index 5f020cc8..48b6fb42 100644 --- a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod.bogus +++ b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR.kicad_mod.bogus @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 6" (at 0 -33.449999999999996) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) diff --git a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod index c2a0a0f3..ef5687ff 100644 --- a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod +++ b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -7.5 -7.5) (xy -7.5 -6.9) (xy -6.9 -6.9) (xy -6.9 -7.5)) (layer F.SilkS) (width 0)) diff --git a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod.bogus b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod.bogus index c2a0a0f3..ef5687ff 100644 --- a/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod.bogus +++ b/tests/board_samples/kicad_5/qr_test/qr.pretty/QR2.kicad_mod.bogus @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -7.5 -7.5) (xy -7.5 -6.9) (xy -6.9 -6.9) (xy -6.9 -7.5)) (layer F.SilkS) (width 0)) diff --git a/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb b/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb index 4c3ee179..a2a79a83 100644 --- a/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb +++ b/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb @@ -357,7 +357,7 @@ (fp_poly (pts (xy -20.56 -25.4) (xy -20.56 -22.98) (xy -18.14 -22.98) (xy -18.14 -25.4)) (layer F.Cu) (width 0)) (fp_poly (pts (xy -22.98 -25.4) (xy -22.98 -22.98) (xy -20.56 -22.98) (xy -20.56 -25.4)) (layer F.Cu) (width 0)) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user "qr_mask: 6" (at 0 -33.45) (layer F.Cu) hide @@ -706,7 +706,7 @@ (fp_poly (pts (xy 5.7 6.9) (xy 5.7 7.5) (xy 6.3 7.5) (xy 6.3 6.9)) (layer F.SilkS) (width 0)) (fp_poly (pts (xy 6.3 6.9) (xy 6.3 7.5) (xy 6.9 7.5) (xy 6.9 6.9)) (layer F.SilkS) (width 0)) (fp_poly (pts (xy 6.9 6.9) (xy 6.9 7.5) (xy 7.5 7.5) (xy 7.5 6.9)) (layer F.SilkS) (width 0)) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide diff --git a/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb.bogus b/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb.bogus index 4c3ee179..a2a79a83 100644 --- a/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb.bogus +++ b/tests/board_samples/kicad_5/qr_test/qr_test.kicad_pcb.bogus @@ -357,7 +357,7 @@ (fp_poly (pts (xy -20.56 -25.4) (xy -20.56 -22.98) (xy -18.14 -22.98) (xy -18.14 -25.4)) (layer F.Cu) (width 0)) (fp_poly (pts (xy -22.98 -25.4) (xy -22.98 -22.98) (xy -20.56 -22.98) (xy -20.56 -25.4)) (layer F.Cu) (width 0)) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user "qr_mask: 6" (at 0 -33.45) (layer F.Cu) hide @@ -706,7 +706,7 @@ (fp_poly (pts (xy 5.7 6.9) (xy 5.7 7.5) (xy 6.3 7.5) (xy 6.3 6.9)) (layer F.SilkS) (width 0)) (fp_poly (pts (xy 6.3 6.9) (xy 6.3 7.5) (xy 6.9 7.5) (xy 6.9 6.9)) (layer F.SilkS) (width 0)) (fp_poly (pts (xy 6.9 6.9) (xy 6.9 7.5) (xy 7.5 7.5) (xy 7.5 6.9)) (layer F.SilkS) (width 0)) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide diff --git a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod index 5f020cc8..48b6fb42 100644 --- a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod +++ b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 6" (at 0 -33.449999999999996) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) diff --git a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod.bogus b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod.bogus index 5f020cc8..48b6fb42 100644 --- a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod.bogus +++ b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR.kicad_mod.bogus @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 6" (at 0 -33.449999999999996) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer F.Cu) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -25.4 -25.4) (xy -25.4 -22.98) (xy -22.98 -22.98) (xy -22.98 -25.4)) (layer F.Cu) (width 0)) diff --git a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod index c2a0a0f3..ef5687ff 100644 --- a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod +++ b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -7.5 -7.5) (xy -7.5 -6.9) (xy -6.9 -6.9) (xy -6.9 -7.5)) (layer F.SilkS) (width 0)) diff --git a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod.bogus b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod.bogus index c2a0a0f3..ef5687ff 100644 --- a/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod.bogus +++ b/tests/board_samples/kicad_6/qr_test/qr.pretty/QR2.kicad_mod.bogus @@ -17,7 +17,7 @@ (fp_text user "qr_mask: 2" (at 0 -15.55) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_poly (pts (xy -7.5 -7.5) (xy -7.5 -6.9) (xy -6.9 -6.9) (xy -6.9 -7.5)) (layer F.SilkS) (width 0)) diff --git a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb index 18021f88..0a7caad6 100644 --- a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb +++ b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb @@ -94,7 +94,7 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer "F.Cu") hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296) ) @@ -1580,7 +1580,7 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer "F.SilkS") hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219) ) diff --git a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb.bogus b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb.bogus index 18021f88..0a7caad6 100644 --- a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb.bogus +++ b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pcb.bogus @@ -94,7 +94,7 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb) ) - (fp_text user "bogus 1 2 3 4" (at 0 -35.15) (layer "F.Cu") hide + (fp_text user " bogus 1 2 3 4" (at 0 -35.15) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296) ) @@ -1580,7 +1580,7 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56) ) - (fp_text user "bogus 1 2 3 4" (at 0 -17.25) (layer "F.SilkS") hide + (fp_text user " bogus 1 2 3 4" (at 0 -17.25) (layer "F.SilkS") hide (effects (font (size 1 1) (thickness 0.15))) (tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219) ) diff --git a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_sch b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_sch index 0b0ebcc2..20c33c15 100644 --- a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_sch +++ b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_sch @@ -1,852 +1,45 @@ -(kicad_sch (version 20211123) - (generator eeschema) +(kicad_sch (version 20211123) (generator eeschema) + (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe) + (paper "A4") - (title_block (title "QR Test") + + (title_block + (title "QR Test") (rev "A") ) - (lib_symbols (symbol "qr:QR" (pin_numbers hide) - (pin_names hide) - (in_bom no) - (on_board yes) - (property "Reference" "#QR" (id 0) (at 0 13.95 0) (effects (font (size 1.27 1.27)))) - (property "Value" "QR" (id 1) (at 0 -13.95 0) (effects (font (size 1.27 1.27)))) - (property "Footprint" "QR:QR" (id 2) (at 0 -15.65 0) (effects (font (size 1.27 1.27)) hide)) - (property "Datasheet" "" (id 3) (at 0 -17.35 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_version" "1" (id 4) (at 0 -19.05 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_size" "21" (id 5) (at 0 -20.75 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_ecc" "1,0" (id 6) (at 0 -22.45 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_mask" "6" (id 7) (at 0 -24.15 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_text" "bogus 1 2 3 4" (id 8) (at 0 -25.85 0) (effects (font (size 1.27 1.27)) hide)) - (symbol "QR_1_1" (rectangle (start -12.7 12.7) (end -11.49 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 12.7) (end -10.28 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 12.7) (end -9.07 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 12.7) (end -7.86 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 12.7) (end -6.65 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 12.7) (end -5.44 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 12.7) (end -4.23 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 12.7) (end -1.81 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 12.7) (end -0.6 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 12.7) (end 5.45 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 12.7) (end 6.66 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 12.7) (end 7.87 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 12.7) (end 9.08 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 12.7) (end 10.29 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 12.7) (end 11.5 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 12.7) (end 12.71 11.49) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 11.49) (end -11.49 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 11.49) (end -4.23 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 11.49) (end -0.6 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 11.49) (end 0.61 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 11.49) (end 3.03 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 11.49) (end 5.45 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 11.49) (end 12.71 10.28) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 10.28) (end -11.49 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 10.28) (end -9.07 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 10.28) (end -7.86 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 10.28) (end -6.65 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 10.28) (end -4.23 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 10.28) (end -1.81 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 10.28) (end -0.6 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 10.28) (end 0.61 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 10.28) (end 1.82 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 10.28) (end 5.45 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 10.28) (end 7.87 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 10.28) (end 9.08 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 10.28) (end 10.29 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 10.28) (end 12.71 9.07) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 9.07) (end -11.49 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 9.07) (end -9.07 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 9.07) (end -7.86 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 9.07) (end -6.65 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 9.07) (end -4.23 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 9.07) (end -1.81 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 9.07) (end -0.6 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 9.07) (end 0.61 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 9.07) (end 1.82 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 9.07) (end 3.03 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 9.07) (end 5.45 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 9.07) (end 7.87 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 9.07) (end 9.08 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 9.07) (end 10.29 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 9.07) (end 12.71 7.86) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 7.86) (end -11.49 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 7.86) (end -9.07 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 7.86) (end -7.86 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 7.86) (end -6.65 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 7.86) (end -4.23 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 7.86) (end -0.6 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 7.86) (end 0.61 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 7.86) (end 1.82 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 7.86) (end 3.03 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 7.86) (end 5.45 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 7.86) (end 7.87 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 7.86) (end 9.08 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 7.86) (end 10.29 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 7.86) (end 12.71 6.65) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 6.65) (end -11.49 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 6.65) (end -4.23 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 6.65) (end -1.81 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 6.65) (end 1.82 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 6.65) (end 5.45 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 6.65) (end 12.71 5.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 5.44) (end -11.49 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 5.44) (end -10.28 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 5.44) (end -9.07 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 5.44) (end -7.86 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 5.44) (end -6.65 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 5.44) (end -5.44 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 5.44) (end -4.23 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 5.44) (end -1.81 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 5.44) (end 0.61 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 5.44) (end 3.03 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 5.44) (end 5.45 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 5.44) (end 6.66 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 5.44) (end 7.87 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 5.44) (end 9.08 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 5.44) (end 10.29 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 5.44) (end 11.5 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 5.44) (end 12.71 4.23) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 4.23) (end -1.81 3.02) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 4.23) (end -0.6 3.02) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 4.23) (end 0.61 3.02) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 4.23) (end 3.03 3.02) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 3.02) (end -10.28 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 3.02) (end -7.86 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 3.02) (end -5.44 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 3.02) (end -4.23 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.23 3.02) (end -3.02 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 3.02) (end -1.81 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 3.02) (end 1.82 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 3.02) (end 4.24 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 3.02) (end 5.45 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 3.02) (end 6.66 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 3.02) (end 9.08 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 3.02) (end 10.29 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 3.02) (end 12.71 1.81) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 1.81) (end -11.49 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 1.81) (end -6.65 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 1.81) (end -5.44 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.23 1.81) (end -3.02 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 1.81) (end 1.82 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 1.81) (end 4.24 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 1.81) (end 6.66 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 1.81) (end 7.87 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 1.81) (end 9.08 0.6) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 0.6) (end -11.49 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 0.6) (end -10.28 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 0.6) (end -9.07 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 0.6) (end -6.65 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 0.6) (end -4.23 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.23 0.6) (end -3.02 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 0.6) (end -1.81 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 0.6) (end 1.82 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 0.6) (end 4.24 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 0.6) (end 5.45 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 0.6) (end 12.71 -0.61) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 -0.61) (end -10.28 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -0.61) (end -7.86 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -0.61) (end -6.65 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 -0.61) (end -5.44 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 -0.61) (end -1.81 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 -0.61) (end -0.6 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 -0.61) (end 0.61 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 -0.61) (end 3.03 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 -0.61) (end 5.45 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 -0.61) (end 6.66 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 -0.61) (end 12.71 -1.82) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 -1.82) (end -10.28 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -1.82) (end -7.86 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -1.82) (end -6.65 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 -1.82) (end -5.44 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -1.82) (end -4.23 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 -1.82) (end 1.82 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 -1.82) (end 5.45 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 -1.82) (end 6.66 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 -1.82) (end 7.87 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 -1.82) (end 12.71 -3.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 -3.03) (end -1.81 -4.24) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 -3.03) (end 3.03 -4.24) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 -3.03) (end 9.08 -4.24) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 -3.03) (end 11.5 -4.24) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -4.24) (end -11.49 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 -4.24) (end -10.28 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 -4.24) (end -9.07 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -4.24) (end -7.86 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -4.24) (end -6.65 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.65 -4.24) (end -5.44 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -4.24) (end -4.23 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 -4.24) (end -1.81 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 -4.24) (end 0.61 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 -4.24) (end 1.82 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 -4.24) (end 4.24 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 -4.24) (end 6.66 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 -4.24) (end 7.87 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 -4.24) (end 9.08 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 -4.24) (end 10.29 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 -4.24) (end 11.5 -5.45) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -5.45) (end -11.49 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -5.45) (end -4.23 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 -5.45) (end -1.81 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 -5.45) (end -0.6 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 -5.45) (end 0.61 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 -5.45) (end 3.03 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 -5.45) (end 4.24 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 -5.45) (end 7.87 -6.66) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -6.66) (end -11.49 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 -6.66) (end -9.07 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -6.66) (end -7.86 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -6.66) (end -6.65 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -6.66) (end -4.23 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.81 -6.66) (end -0.6 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.6 -6.66) (end 0.61 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.03 -6.66) (end 4.24 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.24 -6.66) (end 5.45 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 -6.66) (end 9.08 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 -6.66) (end 10.29 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 -6.66) (end 11.5 -7.87) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -7.87) (end -11.49 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 -7.87) (end -9.07 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -7.87) (end -7.86 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -7.87) (end -6.65 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -7.87) (end -4.23 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.02 -7.87) (end -1.81 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.61 -7.87) (end 1.82 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 -7.87) (end 7.87 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.87 -7.87) (end 9.08 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 10.29 -7.87) (end 11.5 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 -7.87) (end 12.71 -9.08) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -9.08) (end -11.49 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -10.28 -9.08) (end -9.07 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -9.07 -9.08) (end -7.86 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.86 -9.08) (end -6.65 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.44 -9.08) (end -4.23 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 -9.08) (end 3.03 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.45 -9.08) (end 6.66 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.66 -9.08) (end 7.87 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 9.08 -9.08) (end 10.29 -10.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 11.5 -9.08) (end 12.71 -10.29) + + (lib_symbols + (symbol "qr:QR" (pin_numbers hide) (pin_names hide) (in_bom no) (on_board yes) + (property "Reference" "#QR" (id 0) (at 0 13.95 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "QR" (id 1) (at 0 -13.95 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "QR:QR" (id 2) (at 0 -15.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -17.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_version" "1" (id 4) (at 0 -19.05 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_size" "21" (id 5) (at 0 -20.75 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_ecc" "1,0" (id 6) (at 0 -22.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_mask" "6" (id 7) (at 0 -24.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_text" "bogus 1 2 3 4" (id 8) (at 0 -25.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "QR_1_1" + (rectangle (start -12.7 -11.5) (end -11.49 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) @@ -854,27 +47,67 @@ (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.44 -10.29) (end -4.23 -11.5) + (rectangle (start -12.7 -9.08) (end -11.49 -10.29) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.02 -10.29) (end -1.81 -11.5) + (rectangle (start -12.7 -7.87) (end -11.49 -9.08) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.03 -10.29) (end 4.24 -11.5) + (rectangle (start -12.7 -6.66) (end -11.49 -7.87) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.24 -10.29) (end 5.45 -11.5) + (rectangle (start -12.7 -5.45) (end -11.49 -6.66) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.66 -10.29) (end 7.87 -11.5) + (rectangle (start -12.7 -4.24) (end -11.49 -5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -12.7 -11.5) (end -11.49 -12.71) + (rectangle (start -12.7 -1.82) (end -11.49 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 0.6) (end -11.49 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 1.81) (end -11.49 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 3.02) (end -11.49 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 5.44) (end -11.49 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 6.65) (end -11.49 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 7.86) (end -11.49 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 9.07) (end -11.49 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 10.28) (end -11.49 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 11.49) (end -11.49 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 12.7) (end -11.49 11.49) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) @@ -882,31 +115,467 @@ (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start -11.49 -4.24) (end -10.28 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -11.49 -1.82) (end -10.28 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -11.49 1.81) (end -10.28 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -11.49 5.44) (end -10.28 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -11.49 12.7) (end -10.28 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start -10.28 -11.5) (end -9.07 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start -10.28 -9.08) (end -9.07 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 -7.87) (end -9.07 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 -6.66) (end -9.07 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 -4.24) (end -9.07 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 -0.61) (end -9.07 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 0.6) (end -9.07 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 1.81) (end -9.07 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 5.44) (end -9.07 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 7.86) (end -9.07 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 9.07) (end -9.07 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 10.28) (end -9.07 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -10.28 12.7) (end -9.07 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start -9.07 -11.5) (end -7.86 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start -9.07 -9.08) (end -7.86 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 -7.87) (end -7.86 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 -6.66) (end -7.86 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 -4.24) (end -7.86 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 -0.61) (end -7.86 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 3.02) (end -7.86 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 5.44) (end -7.86 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 7.86) (end -7.86 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 9.07) (end -7.86 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 10.28) (end -7.86 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -9.07 12.7) (end -7.86 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start -7.86 -11.5) (end -6.65 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start -7.86 -9.08) (end -6.65 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 -7.87) (end -6.65 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 -6.66) (end -6.65 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 -4.24) (end -6.65 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 -0.61) (end -6.65 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 1.81) (end -6.65 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 3.02) (end -6.65 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 5.44) (end -6.65 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 7.86) (end -6.65 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 9.07) (end -6.65 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 10.28) (end -6.65 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -7.86 12.7) (end -6.65 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start -6.65 -11.5) (end -5.44 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start -6.65 -4.24) (end -5.44 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -6.65 1.81) (end -5.44 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -6.65 3.02) (end -5.44 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -6.65 5.44) (end -5.44 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -6.65 12.7) (end -5.44 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start -5.44 -11.5) (end -4.23 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.6 -11.5) (end 0.61 -12.71) + (rectangle (start -5.44 -10.29) (end -4.23 -11.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.61 -11.5) (end 1.82 -12.71) + (rectangle (start -5.44 -9.08) (end -4.23 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 -7.87) (end -4.23 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 -6.66) (end -4.23 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 -5.45) (end -4.23 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 -4.24) (end -4.23 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 -1.82) (end -4.23 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 0.6) (end -4.23 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 3.02) (end -4.23 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 5.44) (end -4.23 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 6.65) (end -4.23 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 7.86) (end -4.23 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 9.07) (end -4.23 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 10.28) (end -4.23 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 11.49) (end -4.23 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -5.44 12.7) (end -4.23 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -4.23 -1.82) (end -3.02 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -4.23 -0.61) (end -3.02 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -4.23 0.6) (end -3.02 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -4.23 1.81) (end -3.02 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -4.23 3.02) (end -3.02 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -11.5) (end -1.81 -12.71) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -7.87) (end -1.81 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -6.66) (end -1.81 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -5.45) (end -1.81 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -4.24) (end -1.81 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 -3.03) (end -1.81 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 0.6) (end -1.81 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 1.81) (end -1.81 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 3.02) (end -1.81 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 5.44) (end -1.81 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 7.86) (end -1.81 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 10.28) (end -1.81 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 11.49) (end -1.81 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -3.02 12.7) (end -1.81 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 -7.87) (end -0.6 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 -6.66) (end -0.6 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 -4.24) (end -0.6 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 -3.03) (end -0.6 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 -0.61) (end -0.6 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 4.23) (end -0.6 3.02) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 6.65) (end -0.6 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -1.81 11.49) (end -0.6 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 -10.29) (end 0.61 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 -9.08) (end 0.61 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 -3.03) (end 0.61 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 -1.82) (end 0.61 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 -0.61) (end 0.61 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 1.81) (end 0.61 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 4.23) (end 0.61 3.02) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 5.44) (end 0.61 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 6.65) (end 0.61 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 9.07) (end 0.61 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 10.28) (end 0.61 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.6 12.7) (end 0.61 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -10.29) (end 1.82 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -9.08) (end 1.82 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -7.87) (end 1.82 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -6.66) (end 1.82 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -3.03) (end 1.82 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 -0.61) (end 1.82 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 0.6) (end 1.82 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 3.02) (end 1.82 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 7.86) (end 1.82 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 10.28) (end 1.82 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.61 11.49) (end 1.82 10.28) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) @@ -914,54 +583,486 @@ (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start 1.82 -9.08) (end 3.03 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -6.66) (end 3.03 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -5.45) (end 3.03 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -4.24) (end 3.03 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -1.82) (end 3.03 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -0.61) (end 3.03 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 0.6) (end 3.03 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 1.81) (end 3.03 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 5.44) (end 3.03 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 7.86) (end 3.03 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 10.28) (end 3.03 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 11.49) (end 3.03 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 12.7) (end 3.03 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 3.03 -10.29) (end 4.24 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 3.03 -9.08) (end 4.24 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 3.03 -4.24) (end 4.24 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 3.03 -3.03) (end 4.24 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 3.03 3.02) (end 4.24 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -11.5) (end 5.45 -12.71) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -10.29) (end 5.45 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -9.08) (end 5.45 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -5.45) (end 5.45 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -4.24) (end 5.45 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 -3.03) (end 5.45 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 0.6) (end 5.45 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 1.81) (end 5.45 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 5.44) (end 5.45 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 6.65) (end 5.45 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 7.86) (end 5.45 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 9.07) (end 5.45 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 10.28) (end 5.45 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 11.49) (end 5.45 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 4.24 12.7) (end 5.45 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start 5.45 -11.5) (end 6.66 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start 5.45 -10.29) (end 6.66 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -9.08) (end 6.66 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -6.66) (end 6.66 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -4.24) (end 6.66 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -3.03) (end 6.66 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -1.82) (end 6.66 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 -0.61) (end 6.66 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 0.6) (end 6.66 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 5.44) (end 6.66 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 5.45 12.7) (end 6.66 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start 6.66 -11.5) (end 7.87 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) + (rectangle (start 6.66 -10.29) (end 7.87 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -9.08) (end 7.87 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -5.45) (end 7.87 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -4.24) (end 7.87 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -3.03) (end 7.87 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -1.82) (end 7.87 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 -0.61) (end 7.87 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 3.02) (end 7.87 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 5.44) (end 7.87 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 7.86) (end 7.87 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 9.07) (end 7.87 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 10.28) (end 7.87 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 6.66 12.7) (end 7.87 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) (rectangle (start 7.87 -11.5) (end 9.08 -12.71) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 10.29 -11.5) (end 11.5 -12.71) + (rectangle (start 7.87 -10.29) (end 9.08 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 -5.45) (end 9.08 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 -4.24) (end 9.08 -5.45) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 -3.03) (end 9.08 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 -1.82) (end 9.08 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 1.81) (end 9.08 0.6) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 5.44) (end 9.08 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 7.86) (end 9.08 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 9.07) (end 9.08 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 10.28) (end 9.08 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 7.87 12.7) (end 9.08 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -10.29) (end 10.29 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -9.08) (end 10.29 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -7.87) (end 10.29 -9.08) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -5.45) (end 10.29 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -3.03) (end 10.29 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 -0.61) (end 10.29 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 3.02) (end 10.29 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 5.44) (end 10.29 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 7.86) (end 10.29 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 9.07) (end 10.29 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 10.28) (end 10.29 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 9.08 12.7) (end 10.29 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -10.29) (end 11.5 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -9.08) (end 11.5 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -6.66) (end 11.5 -7.87) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -5.45) (end 11.5 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -3.03) (end 11.5 -4.24) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 -1.82) (end 11.5 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 0.6) (end 11.5 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 3.02) (end 11.5 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 5.44) (end 11.5 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 10.29 12.7) (end 11.5 11.49) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 -10.29) (end 12.71 -11.5) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 -9.08) (end 12.71 -10.29) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 -5.45) (end 12.71 -6.66) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 -1.82) (end 12.71 -3.03) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 -0.61) (end 12.71 -1.82) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 0.6) (end 12.71 -0.61) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 3.02) (end 12.71 1.81) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 5.44) (end 12.71 4.23) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 6.65) (end 12.71 5.44) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 7.86) (end 12.71 6.65) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 9.07) (end 12.71 7.86) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 10.28) (end 12.71 9.07) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 11.49) (end 12.71 10.28) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 11.5 12.7) (end 12.71 11.49) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) ) ) ) - (symbol (lib_id "qr:QR") - (at 31.75 39.37 0) - (unit 1) - (in_bom yes) - (on_board yes) + + + (symbol (lib_id "qr:QR") (at 31.75 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (uuid 00000000-0000-0000-0000-000061d2093f) (property "Reference" "#QR1" (id 0) (at 31.75 21.3106 0)) (property "Value" "QR" (id 1) (at 31.75 23.622 0)) - (property "Footprint" "QR:QR" (id 2) (at 31.75 35.56 0) (effects (font (size 1.27 1.27)) hide)) - (property "Datasheet" "" (id 3) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_version" "1" (id 4) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_size" "21" (id 5) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_ecc" "1,0" (id 6) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_mask" "6" (id 7) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_text" "bogus 1 2 3 4" (id 8) (at 31.75 39.37 0) (effects (font (size 1.27 1.27)) hide)) + (property "Footprint" "QR:QR" (id 2) (at 31.75 35.56 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_version" "1" (id 4) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_size" "21" (id 5) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_ecc" "1,0" (id 6) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_mask" "6" (id 7) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_text" "bogus 1 2 3 4" (id 8) (at 31.75 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) ) - (sheet (at 60.96 62.865) - (size 26.67 19.685) - (fields_autoplaced) + + (sheet (at 60.96 62.865) (size 26.67 19.685) (fields_autoplaced) (stroke (width 0) (type solid) (color 0 0 0 0)) - (fill (color 0 0 0 0.0)) + (fill (color 0 0 0 0.0000)) (uuid 00000000-0000-0000-0000-000061d2163a) - (property "Sheet name" "Subsheet" (id 0) (at 60.96 62.1534 0) (effects (font (size 1.27 1.27)) (justify left bottom))) - (property "Sheet file" "sub_1.kicad_sch" (id 1) (at 60.96 83.1346 0) (effects (font (size 1.27 1.27)) (justify left top))) + (property "Sheet name" "Subsheet" (id 0) (at 60.96 62.1534 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Sheet file" "sub_1.kicad_sch" (id 1) (at 60.96 83.1346 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) ) - (sheet_instances (path "/" (page "1")) + + (sheet_instances + (path "/" (page "1")) (path "/00000000-0000-0000-0000-000061d2163a" (page "2")) ) - (symbol_instances (path "/00000000-0000-0000-0000-000061d2093f" (reference "#QR1") (unit 1) (value "QR") (footprint "QR:QR")) - (path "/00000000-0000-0000-0000-000061d2163a/00000000-0000-0000-0000-000061d3091b" (reference "#QR2") (unit 1) (value "QR2") (footprint "QR:QR2")) + + (symbol_instances + (path "/00000000-0000-0000-0000-000061d2093f" + (reference "#QR1") (unit 1) (value "QR") (footprint "QR:QR") + ) + (path "/00000000-0000-0000-0000-000061d2163a/00000000-0000-0000-0000-000061d3091b" + (reference "#QR2") (unit 1) (value "QR2") (footprint "QR:QR2") + ) ) ) diff --git a/tests/board_samples/kicad_6/qr_test/sub_1.kicad_sch b/tests/board_samples/kicad_6/qr_test/sub_1.kicad_sch index a2aad37f..ccf9b5aa 100644 --- a/tests/board_samples/kicad_6/qr_test/sub_1.kicad_sch +++ b/tests/board_samples/kicad_6/qr_test/sub_1.kicad_sch @@ -1,2825 +1,1365 @@ -(kicad_sch (version 20211123) - (generator eeschema) +(kicad_sch (version 20211123) (generator eeschema) + (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39) + (paper "A4") - (lib_symbols (symbol "qr:QR2" (pin_numbers hide) - (pin_names hide) - (in_bom no) - (on_board yes) - (property "Reference" "#QR" (id 0) (at 0 8.75 0) (effects (font (size 1.27 1.27)))) - (property "Value" "QR2" (id 1) (at 0 -8.75 0) (effects (font (size 1.27 1.27)))) - (property "Footprint" "QR:QR2" (id 2) (at 0 -10.45 0) (effects (font (size 1.27 1.27)) hide)) - (property "Datasheet" "" (id 3) (at 0 -12.15 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_version" "2" (id 4) (at 0 -13.85 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_size" "25" (id 5) (at 0 -15.55 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_ecc" "3,2" (id 6) (at 0 -17.25 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_mask" "2" (id 7) (at 0 -18.95 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_text" "bogus 1 2 3 4" (id 8) (at 0 -20.65 0) (effects (font (size 1.27 1.27)) hide)) - (symbol "QR2_1_1" (rectangle (start -7.5 7.5) (end -7.09 7.09) + + (lib_symbols + (symbol "qr:QR2" (pin_numbers hide) (pin_names hide) (in_bom no) (on_board yes) + (property "Reference" "#QR" (id 0) (at 0 8.75 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "QR2" (id 1) (at 0 -8.75 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "QR:QR2" (id 2) (at 0 -10.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 -12.15 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_version" "2" (id 4) (at 0 -13.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_size" "25" (id 5) (at 0 -15.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_ecc" "3,2" (id 6) (at 0 -17.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_mask" "2" (id 7) (at 0 -18.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_text" "bogus 1 2 3 4" (id 8) (at 0 -20.65 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "QR2_1_1" + (rectangle (start -7.5 -6.9) (end -6.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 7.5) (end -6.68 7.09) + (rectangle (start -7.5 -6.3) (end -6.9 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 7.5) (end -6.27 7.09) + (rectangle (start -7.5 -5.7) (end -6.9 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 7.5) (end -5.86 7.09) + (rectangle (start -7.5 -5.1) (end -6.9 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 7.5) (end -5.45 7.09) + (rectangle (start -7.5 -4.5) (end -6.9 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 7.5) (end -5.04 7.09) + (rectangle (start -7.5 -3.9) (end -6.9 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 7.5) (end -4.63 7.09) + (rectangle (start -7.5 -3.3) (end -6.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 7.5) (end -3.81 7.09) + (rectangle (start -7.5 -2.1) (end -6.9 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 7.5) (end -3.4 7.09) + (rectangle (start -7.5 -1.5) (end -6.9 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 7.5) (end -2.99 7.09) + (rectangle (start -7.5 -0.9) (end -6.9 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 7.5) (end -2.17 7.09) + (rectangle (start -7.5 -0.3) (end -6.9 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 7.5) (end -1.76 7.09) + (rectangle (start -7.5 0.9) (end -6.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 7.5) (end -1.35 7.09) + (rectangle (start -7.5 2.1) (end -6.9 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 7.5) (end -0.94 7.09) + (rectangle (start -7.5 3.9) (end -6.9 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 7.5) (end -0.12 7.09) + (rectangle (start -7.5 4.5) (end -6.9 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 7.5) (end 1.52 7.09) + (rectangle (start -7.5 5.1) (end -6.9 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 7.5) (end 2.34 7.09) + (rectangle (start -7.5 5.7) (end -6.9 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 7.5) (end 3.57 7.09) + (rectangle (start -7.5 6.3) (end -6.9 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 7.5) (end 4.39 7.09) + (rectangle (start -7.5 6.9) (end -6.9 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 7.5) (end 5.21 7.09) + (rectangle (start -7.5 7.5) (end -6.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 7.5) (end 5.62 7.09) + (rectangle (start -6.9 -6.9) (end -6.3 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 7.5) (end 6.03 7.09) + (rectangle (start -6.9 -3.3) (end -6.3 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 7.5) (end 6.44 7.09) + (rectangle (start -6.9 0.3) (end -6.3 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 7.5) (end 6.85 7.09) + (rectangle (start -6.9 0.9) (end -6.3 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.85 7.5) (end 7.26 7.09) + (rectangle (start -6.9 3.9) (end -6.3 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 7.5) (end 7.67 7.09) + (rectangle (start -6.9 7.5) (end -6.3 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 7.09) (end -7.09 6.68) + (rectangle (start -6.3 -6.9) (end -5.7 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 7.09) (end -4.63 6.68) + (rectangle (start -6.3 -5.7) (end -5.7 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 7.09) (end -2.99 6.68) + (rectangle (start -6.3 -5.1) (end -5.7 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 7.09) (end -1.76 6.68) + (rectangle (start -6.3 -4.5) (end -5.7 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 7.09) (end -1.35 6.68) + (rectangle (start -6.3 -3.3) (end -5.7 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 7.09) (end -0.53 6.68) + (rectangle (start -6.3 -2.1) (end -5.7 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 7.09) (end 1.93 6.68) + (rectangle (start -6.3 -1.5) (end -5.7 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.75 7.09) (end 3.16 6.68) + (rectangle (start -6.3 -0.9) (end -5.7 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 7.09) (end 3.57 6.68) + (rectangle (start -6.3 0.3) (end -5.7 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 7.09) (end 4.39 6.68) + (rectangle (start -6.3 2.1) (end -5.7 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 7.09) (end 5.21 6.68) + (rectangle (start -6.3 2.7) (end -5.7 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 7.09) (end 7.67 6.68) + (rectangle (start -6.3 3.9) (end -5.7 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 6.68) (end -7.09 6.27) + (rectangle (start -6.3 5.1) (end -5.7 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 6.68) (end -6.27 6.27) + (rectangle (start -6.3 5.7) (end -5.7 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 6.68) (end -5.86 6.27) + (rectangle (start -6.3 6.3) (end -5.7 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 6.68) (end -5.45 6.27) + (rectangle (start -6.3 7.5) (end -5.7 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 6.68) (end -4.63 6.27) + (rectangle (start -5.7 -6.9) (end -5.1 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 6.68) (end -3.81 6.27) + (rectangle (start -5.7 -5.7) (end -5.1 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 6.68) (end -3.4 6.27) + (rectangle (start -5.7 -5.1) (end -5.1 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 6.68) (end -2.99 6.27) + (rectangle (start -5.7 -4.5) (end -5.1 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 6.68) (end -2.58 6.27) + (rectangle (start -5.7 -3.3) (end -5.1 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 6.68) (end -2.17 6.27) + (rectangle (start -5.7 -2.1) (end -5.1 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 6.68) (end -0.94 6.27) + (rectangle (start -5.7 -0.9) (end -5.1 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 6.68) (end -0.53 6.27) + (rectangle (start -5.7 0.9) (end -5.1 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 6.68) (end -0.12 6.27) + (rectangle (start -5.7 2.7) (end -5.1 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 6.68) (end 0.7 6.27) + (rectangle (start -5.7 3.9) (end -5.1 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 6.68) (end 1.93 6.27) + (rectangle (start -5.7 5.1) (end -5.1 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 6.68) (end 2.75 6.27) + (rectangle (start -5.7 5.7) (end -5.1 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 6.68) (end 3.57 6.27) + (rectangle (start -5.7 6.3) (end -5.1 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 6.68) (end 3.98 6.27) + (rectangle (start -5.7 7.5) (end -5.1 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 6.68) (end 4.39 6.27) + (rectangle (start -5.1 -6.9) (end -4.5 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 6.68) (end 5.21 6.27) + (rectangle (start -5.1 -5.7) (end -4.5 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 6.68) (end 6.03 6.27) + (rectangle (start -5.1 -5.1) (end -4.5 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 6.68) (end 6.44 6.27) + (rectangle (start -5.1 -4.5) (end -4.5 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 6.68) (end 6.85 6.27) + (rectangle (start -5.1 -3.3) (end -4.5 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 6.68) (end 7.67 6.27) + (rectangle (start -5.1 -1.5) (end -4.5 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 6.27) (end -7.09 5.86) + (rectangle (start -5.1 -0.3) (end -4.5 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 6.27) (end -6.27 5.86) + (rectangle (start -5.1 0.3) (end -4.5 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 6.27) (end -5.86 5.86) + (rectangle (start -5.1 2.1) (end -4.5 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 6.27) (end -5.45 5.86) + (rectangle (start -5.1 2.7) (end -4.5 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 6.27) (end -4.63 5.86) + (rectangle (start -5.1 3.9) (end -4.5 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 6.27) (end -3.4 5.86) + (rectangle (start -5.1 5.1) (end -4.5 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 6.27) (end -2.58 5.86) + (rectangle (start -5.1 5.7) (end -4.5 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 6.27) (end -2.17 5.86) + (rectangle (start -5.1 6.3) (end -4.5 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 6.27) (end -1.76 5.86) + (rectangle (start -5.1 7.5) (end -4.5 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 6.27) (end -0.94 5.86) + (rectangle (start -4.5 -6.9) (end -3.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 6.27) (end 0.29 5.86) + (rectangle (start -4.5 -3.3) (end -3.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 6.27) (end 1.11 5.86) + (rectangle (start -4.5 -1.5) (end -3.9 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 6.27) (end 1.52 5.86) + (rectangle (start -4.5 0.9) (end -3.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 6.27) (end 2.75 5.86) + (rectangle (start -4.5 2.1) (end -3.9 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 6.27) (end 3.98 5.86) + (rectangle (start -4.5 3.9) (end -3.9 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 6.27) (end 4.39 5.86) + (rectangle (start -4.5 7.5) (end -3.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 6.27) (end 5.21 5.86) + (rectangle (start -3.9 -6.9) (end -3.3 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 6.27) (end 6.03 5.86) + (rectangle (start -3.9 -6.3) (end -3.3 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 6.27) (end 6.44 5.86) + (rectangle (start -3.9 -5.7) (end -3.3 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 6.27) (end 6.85 5.86) + (rectangle (start -3.9 -5.1) (end -3.3 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 6.27) (end 7.67 5.86) + (rectangle (start -3.9 -4.5) (end -3.3 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 5.86) (end -7.09 5.45) + (rectangle (start -3.9 -3.9) (end -3.3 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 5.86) (end -6.27 5.45) + (rectangle (start -3.9 -3.3) (end -3.3 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 5.86) (end -5.86 5.45) + (rectangle (start -3.9 -2.1) (end -3.3 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 5.86) (end -5.45 5.45) + (rectangle (start -3.9 -0.9) (end -3.3 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 5.86) (end -4.63 5.45) + (rectangle (start -3.9 0.3) (end -3.3 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 5.86) (end -3.81 5.45) + (rectangle (start -3.9 1.5) (end -3.3 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 5.86) (end -3.4 5.45) + (rectangle (start -3.9 2.7) (end -3.3 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 5.86) (end -2.58 5.45) + (rectangle (start -3.9 3.9) (end -3.3 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 5.86) (end -0.94 5.45) + (rectangle (start -3.9 4.5) (end -3.3 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 5.86) (end -0.53 5.45) + (rectangle (start -3.9 5.1) (end -3.3 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 5.86) (end -0.12 5.45) + (rectangle (start -3.9 5.7) (end -3.3 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 5.86) (end 0.7 5.45) + (rectangle (start -3.9 6.3) (end -3.3 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 5.86) (end 1.52 5.45) + (rectangle (start -3.9 6.9) (end -3.3 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 5.86) (end 2.34 5.45) + (rectangle (start -3.9 7.5) (end -3.3 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 5.86) (end 5.21 5.45) + (rectangle (start -3.3 -2.1) (end -2.7 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 5.86) (end 6.03 5.45) + (rectangle (start -3.3 -1.5) (end -2.7 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 5.86) (end 6.44 5.45) + (rectangle (start -3.3 -0.9) (end -2.7 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 5.86) (end 6.85 5.45) + (rectangle (start -3.3 1.5) (end -2.7 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 5.86) (end 7.67 5.45) + (rectangle (start -3.3 2.1) (end -2.7 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 5.45) (end -7.09 5.04) + (rectangle (start -2.7 -5.7) (end -2.1 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 5.45) (end -4.63 5.04) + (rectangle (start -2.7 -5.1) (end -2.1 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 5.45) (end -2.17 5.04) + (rectangle (start -2.7 -4.5) (end -2.1 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 5.45) (end -1.76 5.04) + (rectangle (start -2.7 -2.7) (end -2.1 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 5.45) (end -1.35 5.04) + (rectangle (start -2.7 -0.9) (end -2.1 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 5.45) (end -0.94 5.04) + (rectangle (start -2.7 0.3) (end -2.1 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 5.45) (end 0.29 5.04) + (rectangle (start -2.7 1.5) (end -2.1 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 5.45) (end 1.52 5.04) + (rectangle (start -2.7 2.1) (end -2.1 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 5.45) (end 1.93 5.04) + (rectangle (start -2.7 2.7) (end -2.1 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 5.45) (end 2.34 5.04) + (rectangle (start -2.7 3.3) (end -2.1 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 5.45) (end 2.75 5.04) + (rectangle (start -2.7 3.9) (end -2.1 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 5.45) (end 4.39 5.04) + (rectangle (start -2.7 4.5) (end -2.1 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 5.45) (end 5.21 5.04) + (rectangle (start -2.7 6.3) (end -2.1 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 5.45) (end 7.67 5.04) + (rectangle (start -2.7 6.9) (end -2.1 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 5.04) (end -7.09 4.63) + (rectangle (start -2.7 7.5) (end -2.1 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 5.04) (end -6.68 4.63) + (rectangle (start -2.1 -6.9) (end -1.5 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 5.04) (end -6.27 4.63) + (rectangle (start -2.1 -6.3) (end -1.5 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 5.04) (end -5.86 4.63) + (rectangle (start -2.1 -5.7) (end -1.5 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 5.04) (end -5.45 4.63) + (rectangle (start -2.1 -5.1) (end -1.5 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 5.04) (end -5.04 4.63) + (rectangle (start -2.1 -0.9) (end -1.5 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 5.04) (end -4.63 4.63) + (rectangle (start -2.1 0.3) (end -1.5 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 5.04) (end -3.81 4.63) + (rectangle (start -2.1 0.9) (end -1.5 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 5.04) (end -2.99 4.63) + (rectangle (start -2.1 2.1) (end -1.5 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 5.04) (end -2.17 4.63) + (rectangle (start -2.1 2.7) (end -1.5 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 5.04) (end -1.35 4.63) + (rectangle (start -2.1 4.5) (end -1.5 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 5.04) (end -0.53 4.63) + (rectangle (start -2.1 5.7) (end -1.5 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 5.04) (end 0.29 4.63) + (rectangle (start -2.1 6.9) (end -1.5 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 5.04) (end 1.11 4.63) + (rectangle (start -1.5 -6.9) (end -0.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 5.04) (end 1.93 4.63) + (rectangle (start -1.5 -5.7) (end -0.9 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 5.04) (end 2.75 4.63) + (rectangle (start -1.5 -4.5) (end -0.9 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 5.04) (end 3.57 4.63) + (rectangle (start -1.5 -3.9) (end -0.9 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 5.04) (end 4.39 4.63) + (rectangle (start -1.5 -3.3) (end -0.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 5.04) (end 5.21 4.63) + (rectangle (start -1.5 -1.5) (end -0.9 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 5.04) (end 5.62 4.63) + (rectangle (start -1.5 -0.9) (end -0.9 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 5.04) (end 6.03 4.63) + (rectangle (start -1.5 -0.3) (end -0.9 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 5.04) (end 6.44 4.63) + (rectangle (start -1.5 0.9) (end -0.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 5.04) (end 6.85 4.63) + (rectangle (start -1.5 1.5) (end -0.9 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.85 5.04) (end 7.26 4.63) + (rectangle (start -1.5 2.1) (end -0.9 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 5.04) (end 7.67 4.63) + (rectangle (start -1.5 3.9) (end -0.9 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 4.63) (end -3.81 4.22) + (rectangle (start -1.5 4.5) (end -0.9 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 4.63) (end -3.4 4.22) + (rectangle (start -1.5 5.1) (end -0.9 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 4.63) (end -2.99 4.22) + (rectangle (start -1.5 7.5) (end -0.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 4.63) (end -2.58 4.22) + (rectangle (start -0.9 -6.3) (end -0.3 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 4.63) (end -2.17 4.22) + (rectangle (start -0.9 -5.1) (end -0.3 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 4.63) (end -0.94 4.22) + (rectangle (start -0.9 -4.5) (end -0.3 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 4.63) (end 0.7 4.22) + (rectangle (start -0.9 -3.9) (end -0.3 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 4.63) (end 1.11 4.22) + (rectangle (start -0.9 -3.3) (end -0.3 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 4.63) (end 1.52 4.22) + (rectangle (start -0.9 -2.7) (end -0.3 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 4.63) (end 1.93 4.22) + (rectangle (start -0.9 -1.5) (end -0.3 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 4.63) (end 2.34 4.22) + (rectangle (start -0.9 0.3) (end -0.3 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 4.63) (end 2.75 4.22) + (rectangle (start -0.9 1.5) (end -0.3 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 4.63) (end 3.57 4.22) + (rectangle (start -0.9 2.1) (end -0.3 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 4.63) (end 3.98 4.22) + (rectangle (start -0.9 5.1) (end -0.3 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 4.63) (end 4.39 4.22) + (rectangle (start -0.9 5.7) (end -0.3 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 4.22) (end -5.04 3.81) + (rectangle (start -0.9 7.5) (end -0.3 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 4.22) (end -4.63 3.81) + (rectangle (start -0.3 -6.9) (end 0.3 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 4.22) (end -1.76 3.81) + (rectangle (start -0.3 -5.1) (end 0.3 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 4.22) (end -0.94 3.81) + (rectangle (start -0.3 -4.5) (end 0.3 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 4.22) (end -0.53 3.81) + (rectangle (start -0.3 -3.9) (end 0.3 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 4.22) (end -0.12 3.81) + (rectangle (start -0.3 -0.9) (end 0.3 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 4.22) (end 0.29 3.81) + (rectangle (start -0.3 0.3) (end 0.3 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 4.22) (end 1.11 3.81) + (rectangle (start -0.3 0.9) (end 0.3 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 4.22) (end 2.75 3.81) + (rectangle (start -0.3 3.3) (end 0.3 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 4.22) (end 5.21 3.81) + (rectangle (start -0.3 3.9) (end 0.3 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 4.22) (end 6.03 3.81) + (rectangle (start -0.3 5.1) (end 0.3 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 4.22) (end 6.85 3.81) + (rectangle (start -0.3 5.7) (end 0.3 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 4.22) (end 7.67 3.81) + (rectangle (start -0.3 7.5) (end 0.3 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 3.81) (end -7.09 3.4) + (rectangle (start 0.3 -6.9) (end 0.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 3.81) (end -6.68 3.4) + (rectangle (start 0.3 -6.3) (end 0.9 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 3.81) (end -6.27 3.4) + (rectangle (start 0.3 -5.7) (end 0.9 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 3.81) (end -5.86 3.4) + (rectangle (start 0.3 -3.3) (end 0.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 3.81) (end -5.45 3.4) + (rectangle (start 0.3 -2.1) (end 0.9 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 3.81) (end -5.04 3.4) + (rectangle (start 0.3 -1.5) (end 0.9 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 3.81) (end -3.4 3.4) + (rectangle (start 0.3 -0.9) (end 0.9 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 3.81) (end -1.76 3.4) + (rectangle (start 0.3 -0.3) (end 0.9 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 3.81) (end -0.94 3.4) + (rectangle (start 0.3 0.9) (end 0.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 3.81) (end -0.53 3.4) + (rectangle (start 0.3 1.5) (end 0.9 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 3.81) (end 1.11 3.4) + (rectangle (start 0.3 2.1) (end 0.9 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 3.81) (end 1.93 3.4) + (rectangle (start 0.3 2.7) (end 0.9 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 3.81) (end 2.34 3.4) + (rectangle (start 0.3 3.3) (end 0.9 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 3.81) (end 2.75 3.4) + (rectangle (start 0.3 4.5) (end 0.9 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.75 3.81) (end 3.16 3.4) + (rectangle (start 0.3 5.1) (end 0.9 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.39 3.81) (end 4.8 3.4) + (rectangle (start 0.3 6.9) (end 0.9 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 3.81) (end 5.21 3.4) + (rectangle (start 0.3 7.5) (end 0.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 3.81) (end 6.03 3.4) + (rectangle (start 0.9 -6.9) (end 1.5 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 3.81) (end 6.44 3.4) + (rectangle (start 0.9 -6.3) (end 1.5 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 3.81) (end 6.85 3.4) + (rectangle (start 0.9 -5.7) (end 1.5 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 3.81) (end 7.67 3.4) + (rectangle (start 0.9 -2.7) (end 1.5 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 3.4) (end -7.09 2.99) + (rectangle (start 0.9 -2.1) (end 1.5 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 3.4) (end -6.68 2.99) + (rectangle (start 0.9 -0.3) (end 1.5 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 3.4) (end -5.86 2.99) + (rectangle (start 0.9 0.3) (end 1.5 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 3.4) (end -4.63 2.99) + (rectangle (start 0.9 1.5) (end 1.5 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 3.4) (end -3.81 2.99) + (rectangle (start 0.9 2.1) (end 1.5 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 3.4) (end -3.4 2.99) + (rectangle (start 0.9 3.3) (end 1.5 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 3.4) (end -2.58 2.99) + (rectangle (start 0.9 3.9) (end 1.5 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 3.4) (end -2.17 2.99) + (rectangle (start 0.9 4.5) (end 1.5 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 3.4) (end -1.35 2.99) + (rectangle (start 0.9 5.1) (end 1.5 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 3.4) (end 0.29 2.99) + (rectangle (start 0.9 6.3) (end 1.5 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 3.4) (end 1.93 2.99) + (rectangle (start 0.9 6.9) (end 1.5 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 3.4) (end 2.34 2.99) + (rectangle (start 0.9 7.5) (end 1.5 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 3.4) (end 2.75 2.99) + (rectangle (start 1.5 -6.9) (end 2.1 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.75 3.4) (end 3.16 2.99) + (rectangle (start 1.5 -5.1) (end 2.1 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 3.4) (end 3.57 2.99) + (rectangle (start 1.5 -4.5) (end 2.1 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 3.4) (end 5.21 2.99) + (rectangle (start 1.5 -3.9) (end 2.1 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 3.4) (end 5.62 2.99) + (rectangle (start 1.5 -3.3) (end 2.1 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 3.4) (end 6.44 2.99) + (rectangle (start 1.5 -2.7) (end 2.1 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.85 3.4) (end 7.26 2.99) + (rectangle (start 1.5 -0.3) (end 2.1 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 3.4) (end 7.67 2.99) + (rectangle (start 1.5 0.9) (end 2.1 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 2.99) (end -6.27 2.58) + (rectangle (start 1.5 1.5) (end 2.1 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 2.99) (end -3.81 2.58) + (rectangle (start 1.5 2.7) (end 2.1 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 2.99) (end -3.4 2.58) + (rectangle (start 1.5 3.3) (end 2.1 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 2.99) (end -2.99 2.58) + (rectangle (start 1.5 5.7) (end 2.1 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 2.99) (end -2.58 2.58) + (rectangle (start 1.5 6.9) (end 2.1 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 2.99) (end -1.35 2.58) + (rectangle (start 2.1 -6.3) (end 2.7 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 2.99) (end -0.53 2.58) + (rectangle (start 2.1 -4.5) (end 2.7 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 2.99) (end -0.12 2.58) + (rectangle (start 2.1 -3.9) (end 2.7 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 2.99) (end 0.29 2.58) + (rectangle (start 2.1 -3.3) (end 2.7 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 2.99) (end 0.7 2.58) + (rectangle (start 2.1 -2.7) (end 2.7 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 2.99) (end 2.34 2.58) + (rectangle (start 2.1 -2.1) (end 2.7 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 2.99) (end 2.75 2.58) + (rectangle (start 2.1 -1.5) (end 2.7 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 2.99) (end 3.57 2.58) + (rectangle (start 2.1 -0.3) (end 2.7 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 2.99) (end 3.98 2.58) + (rectangle (start 2.1 2.1) (end 2.7 1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 2.99) (end 4.39 2.58) + (rectangle (start 2.1 3.3) (end 2.7 2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 2.99) (end 5.21 2.58) + (rectangle (start 2.1 3.9) (end 2.7 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 2.99) (end 7.67 2.58) + (rectangle (start 2.1 4.5) (end 2.7 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 2.58) (end -7.09 2.17) + (rectangle (start 2.1 5.1) (end 2.7 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 2.58) (end -6.27 2.17) + (rectangle (start 2.1 6.3) (end 2.7 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 2.58) (end -5.45 2.17) + (rectangle (start 2.1 6.9) (end 2.7 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 2.58) (end -5.04 2.17) + (rectangle (start 2.7 -4.5) (end 3.3 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 2.58) (end -4.63 2.17) + (rectangle (start 2.7 -2.1) (end 3.3 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 2.58) (end -3.81 2.17) + (rectangle (start 2.7 -1.5) (end 3.3 -2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 2.58) (end -2.58 2.17) + (rectangle (start 2.7 -0.3) (end 3.3 -0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 2.58) (end -1.76 2.17) + (rectangle (start 2.7 2.7) (end 3.3 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 2.58) (end -1.35 2.17) + (rectangle (start 3.3 -6.9) (end 3.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 2.58) (end -0.53 2.17) + (rectangle (start 3.3 -6.3) (end 3.9 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 2.58) (end 0.7 2.17) + (rectangle (start 3.3 -5.1) (end 3.9 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 2.58) (end 1.11 2.17) + (rectangle (start 3.3 -4.5) (end 3.9 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 2.58) (end 2.75 2.17) + (rectangle (start 3.3 -3.3) (end 3.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 2.58) (end 4.39 2.17) + (rectangle (start 3.3 -2.1) (end 3.9 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 2.58) (end 5.21 2.17) + (rectangle (start 3.3 -0.9) (end 3.9 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 2.58) (end 5.62 2.17) + (rectangle (start 3.3 0.3) (end 3.9 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 2.58) (end 6.03 2.17) + (rectangle (start 3.3 0.9) (end 3.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 2.58) (end 6.44 2.17) + (rectangle (start 3.3 1.5) (end 3.9 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 2.58) (end 7.67 2.17) + (rectangle (start 3.3 2.7) (end 3.9 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 2.17) (end -7.09 1.76) + (rectangle (start 3.3 3.9) (end 3.9 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 2.17) (end -6.68 1.76) + (rectangle (start 3.3 4.5) (end 3.9 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 2.17) (end -5.04 1.76) + (rectangle (start 3.3 5.1) (end 3.9 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.63 2.17) (end -4.22 1.76) + (rectangle (start 3.3 5.7) (end 3.9 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.22 2.17) (end -3.81 1.76) + (rectangle (start 3.3 6.3) (end 3.9 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 2.17) (end -2.99 1.76) + (rectangle (start 3.3 6.9) (end 3.9 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 2.17) (end -2.17 1.76) + (rectangle (start 3.3 7.5) (end 3.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 2.17) (end -0.94 1.76) + (rectangle (start 3.9 -6.3) (end 4.5 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.29 2.17) (end 0.7 1.76) + (rectangle (start 3.9 -4.5) (end 4.5 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 2.17) (end 1.11 1.76) + (rectangle (start 3.9 -2.1) (end 4.5 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.75 2.17) (end 3.16 1.76) + (rectangle (start 3.9 0.3) (end 4.5 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 2.17) (end 3.98 1.76) + (rectangle (start 3.9 2.7) (end 4.5 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.39 2.17) (end 4.8 1.76) + (rectangle (start 3.9 3.9) (end 4.5 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 2.17) (end 5.62 1.76) + (rectangle (start 3.9 7.5) (end 4.5 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 2.17) (end 6.85 1.76) + (rectangle (start 4.5 -5.1) (end 5.1 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 1.76) (end -7.09 1.35) + (rectangle (start 4.5 -4.5) (end 5.1 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 1.76) (end -6.68 1.35) + (rectangle (start 4.5 -3.9) (end 5.1 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.68 1.76) (end -6.27 1.35) + (rectangle (start 4.5 -3.3) (end 5.1 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 1.76) (end -5.45 1.35) + (rectangle (start 4.5 -2.7) (end 5.1 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 1.76) (end -5.04 1.35) + (rectangle (start 4.5 -2.1) (end 5.1 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 1.76) (end -4.63 1.35) + (rectangle (start 4.5 0.3) (end 5.1 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.63 1.76) (end -4.22 1.35) + (rectangle (start 4.5 1.5) (end 5.1 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.81 1.76) (end -3.4 1.35) + (rectangle (start 4.5 3.9) (end 5.1 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 1.76) (end -2.58 1.35) + (rectangle (start 4.5 5.1) (end 5.1 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 1.76) (end -2.17 1.35) + (rectangle (start 4.5 5.7) (end 5.1 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.94 1.76) (end -0.53 1.35) + (rectangle (start 4.5 6.3) (end 5.1 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 1.76) (end 0.29 1.35) + (rectangle (start 4.5 7.5) (end 5.1 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 1.76) (end 1.11 1.35) + (rectangle (start 5.1 -6.3) (end 5.7 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.11 1.76) (end 1.52 1.35) + (rectangle (start 5.1 -5.7) (end 5.7 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 1.76) (end 1.93 1.35) + (rectangle (start 5.1 -5.1) (end 5.7 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.75 1.76) (end 3.16 1.35) + (rectangle (start 5.1 -4.5) (end 5.7 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 1.76) (end 3.57 1.35) + (rectangle (start 5.1 -3.9) (end 5.7 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 1.76) (end 3.98 1.35) + (rectangle (start 5.1 -2.7) (end 5.7 -3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.39 1.76) (end 4.8 1.35) + (rectangle (start 5.1 3.9) (end 5.7 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.21 1.76) (end 5.62 1.35) + (rectangle (start 5.1 5.1) (end 5.7 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 1.76) (end 6.03 1.35) + (rectangle (start 5.1 5.7) (end 5.7 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 1.76) (end 6.44 1.35) + (rectangle (start 5.1 6.3) (end 5.7 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.85 1.76) (end 7.26 1.35) + (rectangle (start 5.1 7.5) (end 5.7 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 1.76) (end 7.67 1.35) + (rectangle (start 5.7 -6.9) (end 6.3 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 1.35) (end -7.09 0.94) + (rectangle (start 5.7 -4.5) (end 6.3 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.86 1.35) (end -5.45 0.94) + (rectangle (start 5.7 -3.3) (end 6.3 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.4 1.35) (end -2.99 0.94) + (rectangle (start 5.7 -2.1) (end 6.3 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 1.35) (end -2.17 0.94) + (rectangle (start 5.7 0.3) (end 6.3 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.17 1.35) (end -1.76 0.94) + (rectangle (start 5.7 1.5) (end 6.3 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.35 1.35) (end -0.94 0.94) + (rectangle (start 5.7 2.7) (end 6.3 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.53 1.35) (end -0.12 0.94) + (rectangle (start 5.7 3.9) (end 6.3 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 1.35) (end 1.11 0.94) + (rectangle (start 5.7 5.1) (end 6.3 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 1.35) (end 1.93 0.94) + (rectangle (start 5.7 5.7) (end 6.3 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 1.35) (end 2.34 0.94) + (rectangle (start 5.7 6.3) (end 6.3 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 1.35) (end 3.98 0.94) + (rectangle (start 5.7 7.5) (end 6.3 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.98 1.35) (end 4.39 0.94) + (rectangle (start 6.3 -6.9) (end 6.9 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 1.35) (end 6.03 0.94) + (rectangle (start 6.3 -4.5) (end 6.9 -5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.03 1.35) (end 6.44 0.94) + (rectangle (start 6.3 -3.9) (end 6.9 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 1.35) (end 6.85 0.94) + (rectangle (start 6.3 -3.3) (end 6.9 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 1.35) (end 7.67 0.94) + (rectangle (start 6.3 -0.9) (end 6.9 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 0.94) (end -7.09 0.53) + (rectangle (start 6.3 0.3) (end 6.9 -0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.27 0.94) (end -5.86 0.53) + (rectangle (start 6.3 0.9) (end 6.9 0.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.04 0.94) (end -4.63 0.53) + (rectangle (start 6.3 1.5) (end 6.9 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.63 0.94) (end -4.22 0.53) + (rectangle (start 6.3 2.7) (end 6.9 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.99 0.94) (end -2.58 0.53) + (rectangle (start 6.3 3.9) (end 6.9 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.58 0.94) (end -2.17 0.53) + (rectangle (start 6.3 7.5) (end 6.9 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.76 0.94) (end -1.35 0.53) + (rectangle (start 6.9 -6.9) (end 7.5 -7.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.12 0.94) (end 0.29 0.53) + (rectangle (start 6.9 -6.3) (end 7.5 -6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.7 0.94) (end 1.11 0.53) + (rectangle (start 6.9 -5.7) (end 7.5 -6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.52 0.94) (end 1.93 0.53) + (rectangle (start 6.9 -5.1) (end 7.5 -5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.93 0.94) (end 2.34 0.53) + (rectangle (start 6.9 -3.9) (end 7.5 -4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.34 0.94) (end 2.75 0.53) + (rectangle (start 6.9 -3.3) (end 7.5 -3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.16 0.94) (end 3.57 0.53) + (rectangle (start 6.9 -2.1) (end 7.5 -2.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.57 0.94) (end 3.98 0.53) + (rectangle (start 6.9 -0.9) (end 7.5 -1.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.39 0.94) (end 4.8 0.53) + (rectangle (start 6.9 1.5) (end 7.5 0.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.8 0.94) (end 5.21 0.53) + (rectangle (start 6.9 2.7) (end 7.5 2.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.62 0.94) (end 6.03 0.53) + (rectangle (start 6.9 3.9) (end 7.5 3.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.44 0.94) (end 6.85 0.53) + (rectangle (start 6.9 4.5) (end 7.5 3.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.85 0.94) (end 7.26 0.53) + (rectangle (start 6.9 5.1) (end 7.5 4.5) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 7.26 0.94) (end 7.67 0.53) + (rectangle (start 6.9 5.7) (end 7.5 5.1) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.09 0.53) (end -6.68 0.12) + (rectangle (start 6.9 6.3) (end 7.5 5.7) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.45 0.53) (end -5.04 0.12) + (rectangle (start 6.9 6.9) (end 7.5 6.3) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.63 0.53) (end -4.22 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 0.53) (end -2.58 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 0.53) (end -1.35 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 0.53) (end 0.29 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 0.53) (end 0.7 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 0.53) (end 1.11 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 0.53) (end 1.52 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 0.53) (end 3.16 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 0.53) (end 3.98 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 0.53) (end 4.39 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 0.53) (end 6.85 0.12) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 0.12) (end -7.09 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.09 0.12) (end -6.68 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 0.12) (end -6.27 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 0.12) (end -5.45 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 0.12) (end -5.04 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 0.12) (end -4.63 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 0.12) (end -3.81 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 0.12) (end -3.4 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 0.12) (end -2.99 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 0.12) (end -1.35 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 0.12) (end -0.12 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 0.12) (end 0.29 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 0.12) (end 0.7 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 0.12) (end 1.52 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 0.12) (end 2.34 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 0.12) (end 3.57 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 0.12) (end 3.98 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 0.12) (end 5.62 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 0.12) (end 6.44 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 0.12) (end 6.85 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 0.12) (end 7.67 -0.29) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.09 -0.29) (end -6.68 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -0.29) (end -5.86 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -0.29) (end -3.4 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -0.29) (end -2.99 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -0.29) (end -2.17 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -0.29) (end -1.35 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -0.29) (end -0.12 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -0.29) (end 0.7 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -0.29) (end 1.11 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -0.29) (end 1.52 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -0.29) (end 1.93 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -0.29) (end 2.34 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -0.29) (end 3.57 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -0.29) (end 3.98 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -0.29) (end 4.39 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -0.29) (end 4.8 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -0.29) (end 5.21 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -0.29) (end 6.44 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -0.29) (end 7.26 -0.7) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -0.7) (end -7.09 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -0.7) (end -6.27 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -0.7) (end -5.04 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -0.7) (end -4.63 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -0.7) (end -3.81 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -0.7) (end -2.99 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -0.7) (end -1.76 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -0.7) (end -0.53 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -0.7) (end -0.12 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -0.7) (end 1.11 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -0.7) (end 1.52 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -0.7) (end 3.16 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -0.7) (end 3.57 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -0.7) (end 4.8 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -0.7) (end 5.21 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -0.7) (end 5.62 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -0.7) (end 6.03 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -0.7) (end 6.85 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -0.7) (end 7.67 -1.11) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.09 -1.11) (end -6.68 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -1.11) (end -6.27 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -1.11) (end -5.86 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -1.11) (end -5.45 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -1.11) (end -5.04 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -1.11) (end -3.81 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -1.11) (end -3.4 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -1.11) (end -2.58 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -1.11) (end -2.17 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -1.11) (end -1.76 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -1.11) (end -0.94 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -1.11) (end -0.12 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -1.11) (end 0.29 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -1.11) (end 1.52 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -1.11) (end 2.75 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -1.11) (end 3.16 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -1.11) (end 3.57 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -1.11) (end 3.98 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -1.11) (end 4.39 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -1.11) (end 5.21 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -1.11) (end 5.62 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -1.11) (end 6.03 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -1.11) (end 7.26 -1.52) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -1.52) (end -6.27 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -1.52) (end -5.45 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -1.52) (end -5.04 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -1.52) (end -4.63 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.63 -1.52) (end -4.22 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -1.52) (end -3.81 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -1.52) (end -3.4 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -1.52) (end -2.99 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -1.52) (end -2.58 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -1.52) (end -0.12 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -1.52) (end 1.11 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -1.52) (end 1.93 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -1.52) (end 3.16 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -1.52) (end 3.57 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -1.52) (end 3.98 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -1.52) (end 4.8 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -1.52) (end 7.26 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -1.52) (end 7.67 -1.93) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -1.93) (end -5.86 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -1.93) (end -5.45 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.63 -1.93) (end -4.22 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -1.93) (end -3.81 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -1.93) (end -2.99 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -1.93) (end -1.35 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -1.93) (end -0.94 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -1.93) (end -0.53 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -1.93) (end -0.12 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -1.93) (end 1.52 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -1.93) (end 1.93 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -1.93) (end 2.34 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -1.93) (end 3.16 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -1.93) (end 3.98 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -1.93) (end 5.62 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -1.93) (end 7.26 -2.34) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -2.34) (end -7.09 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -2.34) (end -5.45 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -2.34) (end -4.63 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.63 -2.34) (end -4.22 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -2.34) (end -3.81 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -2.34) (end -3.4 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -2.34) (end -2.99 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -2.34) (end -2.17 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -2.34) (end -1.76 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -2.34) (end -1.35 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -2.34) (end -0.53 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -2.34) (end 0.29 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -2.34) (end 0.7 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -2.34) (end 1.52 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -2.34) (end 2.34 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -2.34) (end 2.75 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -2.34) (end 3.16 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -2.34) (end 5.62 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -2.34) (end 6.03 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -2.34) (end 6.44 -2.75) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -2.75) (end -7.09 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -2.75) (end -6.27 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -2.75) (end -5.86 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -2.75) (end -5.04 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -2.75) (end -3.81 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -2.75) (end -3.4 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -2.75) (end -2.17 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -2.75) (end -1.35 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -2.75) (end -0.94 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -2.75) (end -0.53 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -2.75) (end -0.12 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -2.75) (end 0.29 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -2.75) (end 1.11 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -2.75) (end 1.52 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -2.75) (end 1.93 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -2.75) (end 5.21 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -2.75) (end 5.62 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -2.75) (end 6.03 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -2.75) (end 6.44 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -2.75) (end 6.85 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -2.75) (end 7.26 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -2.75) (end 7.67 -3.16) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -3.16) (end -7.09 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -3.16) (end -5.86 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -3.16) (end -5.04 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -3.16) (end -4.63 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -3.16) (end -3.4 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -3.16) (end -2.99 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -3.16) (end -2.58 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -3.16) (end -2.17 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -3.16) (end -1.35 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -3.16) (end 1.93 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -3.16) (end 2.34 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -3.16) (end 2.75 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -3.16) (end 3.16 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -3.16) (end 3.57 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -3.16) (end 3.98 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -3.16) (end 4.39 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -3.16) (end 5.21 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -3.16) (end 6.03 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -3.16) (end 6.85 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -3.16) (end 7.26 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -3.16) (end 7.67 -3.57) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -3.57) (end -7.09 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -3.57) (end -5.45 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -3.57) (end -3.81 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -3.57) (end -2.99 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -3.57) (end -0.94 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -3.57) (end -0.12 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -3.57) (end 0.7 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -3.57) (end 1.93 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -3.57) (end 2.34 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -3.57) (end 4.39 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -3.57) (end 4.8 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -3.57) (end 5.62 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -3.57) (end 6.85 -3.98) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -3.98) (end -7.09 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -3.98) (end -6.27 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -3.98) (end -5.86 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -3.98) (end -5.04 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -3.98) (end -4.63 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -3.98) (end -3.81 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -3.98) (end -3.4 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -3.98) (end -2.17 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -3.98) (end -1.76 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -3.98) (end -1.35 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -3.98) (end -0.94 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -3.98) (end -0.53 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -3.98) (end 0.29 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -3.98) (end 0.7 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -3.98) (end 1.52 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -3.98) (end 2.34 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -3.98) (end 2.75 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -3.98) (end 3.16 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -3.98) (end 3.57 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -3.98) (end 3.98 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -3.98) (end 4.39 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -3.98) (end 4.8 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -3.98) (end 5.21 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -3.98) (end 5.62 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -3.98) (end 6.03 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -3.98) (end 6.44 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -3.98) (end 7.26 -4.39) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -4.39) (end -3.81 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -4.39) (end -2.58 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -4.39) (end -2.17 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -4.39) (end -1.35 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -4.39) (end 0.29 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -4.39) (end 1.11 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -4.39) (end 2.34 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -4.39) (end 3.16 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -4.39) (end 4.39 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -4.39) (end 6.03 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -4.39) (end 6.44 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -4.39) (end 7.26 -4.8) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -4.8) (end -7.09 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.09 -4.8) (end -6.68 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -4.8) (end -6.27 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -4.8) (end -5.86 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -4.8) (end -5.45 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -4.8) (end -5.04 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -4.8) (end -4.63 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -4.8) (end -2.17 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -4.8) (end -1.76 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -4.8) (end -1.35 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -4.8) (end -0.53 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -4.8) (end -0.12 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -4.8) (end 1.11 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -4.8) (end 1.52 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -4.8) (end 2.34 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -4.8) (end 2.75 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -4.8) (end 3.16 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -4.8) (end 3.57 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -4.8) (end 3.98 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -4.8) (end 4.39 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -4.8) (end 5.21 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -4.8) (end 6.03 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -4.8) (end 6.44 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -4.8) (end 6.85 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -4.8) (end 7.67 -5.21) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -5.21) (end -7.09 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -5.21) (end -4.63 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -4.22 -5.21) (end -3.81 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -5.21) (end -2.99 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -5.21) (end -2.58 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -5.21) (end -1.35 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -5.21) (end -0.94 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -5.21) (end -0.53 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -5.21) (end 0.7 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -5.21) (end 1.11 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -5.21) (end 1.52 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -5.21) (end 2.34 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -5.21) (end 2.75 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -5.21) (end 3.57 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -5.21) (end 3.98 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -5.21) (end 4.39 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -5.21) (end 6.03 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -5.21) (end 6.44 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.85 -5.21) (end 7.26 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -5.21) (end 7.67 -5.62) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -5.62) (end -7.09 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -5.62) (end -6.27 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -5.62) (end -5.86 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -5.62) (end -5.45 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -5.62) (end -4.63 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -5.62) (end -2.99 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -5.62) (end -2.58 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -5.62) (end -1.76 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.76 -5.62) (end -1.35 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -5.62) (end -0.94 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -5.62) (end -0.53 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.12 -5.62) (end 0.29 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -5.62) (end 1.11 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.11 -5.62) (end 1.52 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -5.62) (end 3.57 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.57 -5.62) (end 3.98 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -5.62) (end 4.39 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -5.62) (end 4.8 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -5.62) (end 5.21 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -5.62) (end 5.62 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -5.62) (end 6.03 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -5.62) (end 6.85 -6.03) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -6.03) (end -7.09 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -6.03) (end -6.27 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -6.03) (end -5.86 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -6.03) (end -5.45 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -6.03) (end -4.63 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -6.03) (end -2.17 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -6.03) (end -0.53 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -6.03) (end -0.12 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -6.03) (end 0.7 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -6.03) (end 1.93 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -6.03) (end 2.75 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -6.03) (end 3.16 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -6.03) (end 3.57 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -6.03) (end 5.21 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.62 -6.03) (end 6.03 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -6.03) (end 6.44 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.44 -6.03) (end 6.85 -6.44) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -6.44) (end -7.09 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -6.44) (end -6.27 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -6.44) (end -5.86 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -6.44) (end -5.45 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -6.44) (end -4.63 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.81 -6.44) (end -3.4 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.58 -6.44) (end -2.17 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -6.44) (end -1.76 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -6.44) (end -0.94 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -6.44) (end -0.53 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.7 -6.44) (end 1.11 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -6.44) (end 4.39 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.39 -6.44) (end 4.8 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -6.44) (end 5.62 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -6.44) (end 7.67 -6.85) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -6.85) (end -7.09 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -6.85) (end -4.63 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -6.85) (end -2.99 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.99 -6.85) (end -2.58 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -6.85) (end -1.76 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -1.35 -6.85) (end -0.94 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -6.85) (end -0.53 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 0.29 -6.85) (end 0.7 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.52 -6.85) (end 1.93 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -6.85) (end 2.75 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.16 -6.85) (end 3.57 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -6.85) (end 4.39 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 4.8 -6.85) (end 5.21 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 5.21 -6.85) (end 5.62 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -6.85) (end 6.44 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -6.85) (end 7.67 -7.26) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.5 -7.26) (end -7.09 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -7.09 -7.26) (end -6.68 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.68 -7.26) (end -6.27 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -6.27 -7.26) (end -5.86 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.86 -7.26) (end -5.45 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.45 -7.26) (end -5.04 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -5.04 -7.26) (end -4.63 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -3.4 -7.26) (end -2.99 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.17 -7.26) (end -1.76 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.94 -7.26) (end -0.53 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -0.53 -7.26) (end -0.12 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.93 -7.26) (end 2.34 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.34 -7.26) (end 2.75 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 2.75 -7.26) (end 3.16 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 3.98 -7.26) (end 4.39 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 6.03 -7.26) (end 6.44 -7.67) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 7.26 -7.26) (end 7.67 -7.67) + (rectangle (start 6.9 7.5) (end 7.5 6.9) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) ) ) ) - (symbol (lib_id "qr:QR2") - (at 59.055 40.64 0) - (unit 1) - (in_bom yes) - (on_board yes) + + + (symbol (lib_id "qr:QR2") (at 59.055 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (uuid 00000000-0000-0000-0000-000061d3091b) (property "Reference" "#QR2" (id 0) (at 59.055 28.6004 0)) (property "Value" "QR2" (id 1) (at 59.055 30.9118 0)) - (property "Footprint" "QR:QR2" (id 2) (at 59.055 36.83 0) (effects (font (size 1.27 1.27)) hide)) - (property "Datasheet" "" (id 3) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_version" "2" (id 4) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_size" "25" (id 5) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_ecc" "3,2" (id 6) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_mask" "2" (id 7) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) - (property "qr_text" "bogus 1 2 3 4" (id 8) (at 59.055 40.64 0) (effects (font (size 1.27 1.27)) hide)) + (property "Footprint" "QR:QR2" (id 2) (at 59.055 36.83 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_version" "2" (id 4) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_size" "25" (id 5) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_ecc" "3,2" (id 6) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_mask" "2" (id 7) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "qr_text" "bogus 1 2 3 4" (id 8) (at 59.055 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) ) ) diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index 6abe175b..41dac940 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -973,9 +973,11 @@ def test_qr_lib_1(test_dir): res = subprocess.check_output(cmd, stderr=subprocess.STDOUT).decode() logging.debug(res.split('\n')[0]) assert 'QR-Code:https://github.com/INTI-CMNB/KiBot/' in res + assert ctx.search_err('Updating text `https') # Restore the original files bd = ctx.get_board_dir() - files = ['qr.lib', 'qr.kicad_sym', 'qr.pretty/QR.kicad_mod', 'qr.pretty/QR2.kicad_mod', 'qr_test.kicad_pcb'] + files = ['qr.lib', 'qr.kicad_sym', 'qr.pretty/QR.kicad_mod', 'qr.pretty/QR2.kicad_mod', 'qr_test.kicad_pcb', + 'qr_test.kicad_sch', 'sub_1.kicad_sch'] for f in files: bogus = os.path.join(bd, 'qr_test/'+f+'.bogus') if os.path.isfile(bogus):