diff --git a/CHANGELOG.md b/CHANGELOG.md index dc83970a..0faeda15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Position files now can include virtual components. (#106) - Support for variants on KiCost output. (#106) - `--cli-order` option to generate outputs in arbitrary order. (#106) -- QR codes generation: symbols and footprints. (#93) +- QR codes generation and update: symbols and footprints. (#93) ### Changed - Internal BoM: now components with different Tolerance, Voltage, Current diff --git a/README.md b/README.md index de6f6253..2a437a18 100644 --- a/README.md +++ b/README.md @@ -1678,6 +1678,11 @@ Next time you need this list just use an alias, like this: * Type: `qr_lib` * Description: Generates a QR code symbol and footprint. This output creates a library containing a symbol and footprint for a QR code. + To refresh the generated symbols and footprints use the `update_qr` preflight. + The workflow is as follows: + - Create the symbol and footprints using this output. + - Use them in your schematic and PCB. + - To keep them updated add the `update_qr` preflight * Valid keys: - `comment`: [string=''] A comment for documentation purposes. - `dir`: [string='./'] Output directory for the generated files. If it starts with `+` the rest is concatenated to the default dir. diff --git a/docs/samples/generic_plot.kibot.yaml b/docs/samples/generic_plot.kibot.yaml index dda4158a..8717422e 100644 --- a/docs/samples/generic_plot.kibot.yaml +++ b/docs/samples/generic_plot.kibot.yaml @@ -1133,6 +1133,11 @@ outputs: # QR_Lib: # This output creates a library containing a symbol and footprint for a QR code. + # To refresh the generated symbols and footprints use the `update_qr` preflight. + # The workflow is as follows: + # - Create the symbol and footprints using this output. + # - Use them in your schematic and PCB. + # - To keep them updated add the `update_qr` preflight - name: 'qr_lib_example' comment: 'Generates a QR code symbol and footprint.' type: 'qr_lib' diff --git a/kibot/kicad/sexpdata.py b/kibot/kicad/sexpdata.py index c8585cb4..9ff0d8ac 100644 --- a/kibot/kicad/sexpdata.py +++ b/kibot/kicad/sexpdata.py @@ -41,6 +41,11 @@ See the source code for more information. # Copyright (c) 2012 Takafumi Arakaki # All rights reserved. +# Copyright (c) 2022 Salvador E. Tropea +# Copyright (c) 2022 Instituto Nacional de TecnologĂ­a Industrial +# - Adapted to KiCad +# - Added sexp_iter + # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: @@ -250,7 +255,7 @@ def loads(string, **kwds): obj = parse(string, **kwds) if len(obj) != 1: raise SExpData("Not an s-expression file") - return obj[0] + return obj def dump(obj, filelike, **kwds): @@ -707,3 +712,18 @@ def parse(string, **kwds): """ return Parser(string, **kwds).parse() + + +def sexp_iter(vect, path): + """ + Returns an iterator to filter all the elements described in the path. + """ + elems = path.split('/') + total = len(elems) + for i, e in enumerate(elems): + iter = filter(lambda x: isinstance(x, list) and isinstance(x[0], Symbol) and x[0].value() == e, vect) + if i == total-1: + return iter + vect = next(iter, None) + if vect is None: + return None diff --git a/kibot/kicad/v6_sch.py b/kibot/kicad/v6_sch.py index 7f81cefd..da7a7a6d 100644 --- a/kibot/kicad/v6_sch.py +++ b/kibot/kicad/v6_sch.py @@ -1604,7 +1604,7 @@ class SchematicV6(Schematic): with open(fname, 'rt') as fh: error = None try: - sch = load(fh) + sch = load(fh)[0] except SExpData as e: error = str(e) if error: diff --git a/kibot/out_qr_lib.py b/kibot/out_qr_lib.py index 4b3745a7..c0b5c0be 100644 --- a/kibot/out_qr_lib.py +++ b/kibot/out_qr_lib.py @@ -5,17 +5,13 @@ # Project: KiBot (formerly KiPlot) import os from qrcodegen import QrCode +from tempfile import NamedTemporaryFile from .gs import GS -if GS.ki6(): # pragma: no cover (Ki6) - from pcbnew import IU_PER_MM, S_POLYGON, wxPoint, ADD_MODE_APPEND - ADD_APPEND = ADD_MODE_APPEND -else: - from pcbnew import IU_PER_MM, S_POLYGON, wxPoint, ADD_APPEND from .optionable import BaseOptions, Optionable -from .out_base import VariantOptions from .error import KiPlotConfigurationError -from .kicad.sexpdata import Symbol, dumps, Sep, load, SExpData +from .kicad.sexpdata import Symbol, dumps, Sep, load, SExpData, sexp_iter from .kicad.v6_sch import DrawRectangleV6, PointXY, Stroke, Fill, SchematicFieldV6, FontEffects +from .kiplot import load_board from .macros import macros, document, output_class # noqa: F401 from . import log @@ -24,6 +20,46 @@ QR_ECCS = {'low': QrCode.Ecc.LOW, 'quartile': QrCode.Ecc.QUARTILE, 'high': QrCode.Ecc.HIGH} logger = log.get_logger() +TO_SEPARATE = set(['kicad_pcb', 'general', 'title_block', 'layers', 'setup', 'pcbplotparams', 'net_class', 'module', + 'kicad_sch', 'lib_symbols', 'symbol', 'sheet', 'sheet_instances', 'symbol_instances']) + + +def is_symbol(name, sexp): + return isinstance(sexp, list) and len(sexp) >= 1 and isinstance(sexp[0], Symbol) and sexp[0].value() == name + + +def make_separated(sexp): + if not isinstance(sexp, list): + return sexp + if not isinstance(sexp[0], Symbol) or sexp[0].value() not in TO_SEPARATE: + return sexp + separated = [] + for s in sexp: + separated.append(make_separated(s)) + if isinstance(s, list): + separated.append(Sep()) + return separated + + +def compute_size(qr, is_sch=True, use_mm=True): + if is_sch: + qrc = qr._code_sch + full_size = qr.size_sch + else: + qrc = qr._code_pcb + full_size = qr.size_pcb + size = qrc.get_size() + if not is_sch and qr.pcb_negative: + size += 2 + if use_mm: + full_size *= 1 if qr.size_units == 'millimeters' else 25.4 + center = round(full_size/2, 2) + size_rect = round(full_size/size, 2) + else: + full_size *= 39.37007874 if qr.size_units == 'millimeters' else 1000 + center = round(full_size/2) + size_rect = full_size/size + return qrc, size, full_size, center, size_rect class QRCodeOptions(Optionable): @@ -85,11 +121,7 @@ class QR_LibOptions(BaseOptions): def symbol_k5(self, f, qr): # Compute the size - qrc = qr._code_sch - size = qrc.get_size() - full_size = qr.size_sch * (39.37007874 if qr.size_units == 'millimeters' else 1000) - center = round(full_size/2) - size_rect = full_size/size + qrc, size, full_size, center, size_rect = compute_size(qr, use_mm=False) # Generate the symbol f.write("#\n# {}\n#\n".format(qr.name)) f.write("DEF {} {} 0 {} N N 1 F N\n".format(qr.name, '#'+self.reference, 0)) @@ -136,7 +168,7 @@ class QR_LibOptions(BaseOptions): fld.append(Sep()) return fld - def qr_draw_fp(self, size, size_rect, center, qrc, negative, layer): + def qr_draw_fp(self, size, size_rect, center, qrc, negative, layer, do_sep=True): mod = [] for y in range(size): for x in range(size): @@ -156,38 +188,11 @@ class QR_LibOptions(BaseOptions): rect.append([Symbol('layer'), Symbol(layer)]) rect.append([Symbol('width'), 0]) mod.append(rect) - mod.append(Sep()) + if do_sep: + mod.append(Sep()) return mod - def qr_draw_fp_memory(self, m, size, size_rect, center, qrc, negative, layer): - """ Create the QR drawings for the board in memory """ - for y in range(size): - for x in range(size): - if qrc.get_module(x-negative, y-negative) ^ negative: - x_pos = round(x*size_rect-center, 2) - y_pos = round(y*size_rect-center, 2) - x_pos2 = round(x_pos+size_rect, 2) - y_pos2 = round(y_pos+size_rect, 2) - # Convert to Internal Units - x_pos *= IU_PER_MM - y_pos *= IU_PER_MM - x_pos2 *= IU_PER_MM - y_pos2 *= IU_PER_MM - # Create a PCB polygon - poly = VariantOptions.create_module_element(m) - poly.SetShape(S_POLYGON) - points = [] - points.append(wxPoint(x_pos, y_pos)) - points.append(wxPoint(x_pos, y_pos2)) - points.append(wxPoint(x_pos2, y_pos2)) - points.append(wxPoint(x_pos2, y_pos)) - poly.SetPolyPoints(points) - poly.SetLayer(layer) - poly.SetWidth(0) - poly.thisown = 0 - m.AddNative(poly, ADD_APPEND) - - def qr_draw_sym(self, size, size_rect, center, qrc): + def qr_draw_sym(self, size, size_rect, center, qrc, do_sep=True): mod = [] for y in range(size): for x in range(size): @@ -202,18 +207,13 @@ class QR_LibOptions(BaseOptions): rect.fill = Fill() rect.fill.type = 'outline' mod.append(rect.write()) - mod.append(Sep()) + if do_sep: + mod.append(Sep()) return mod def footprint(self, dir, qr): # Compute the size - qrc = qr._code_pcb - size = qrc.get_size() - if qr.pcb_negative: - size += 2 - full_size = qr.size_pcb * (1 if qr.size_units == 'millimeters' else 25.4) - center = round(full_size/2, 2) - size_rect = round(full_size/size, 2) + qrc, size, full_size, center, size_rect = compute_size(qr, is_sch=False) # Generate the footprint fname = os.path.join(dir, qr.name+'.kicad_mod') mod = [Symbol('module'), Symbol(qr.name)] @@ -276,11 +276,7 @@ class QR_LibOptions(BaseOptions): for qr in self.qrs: logger.debug('Adding symbol: '+qr.name) # Compute the size - qrc = qr._code_sch - size = qrc.get_size() - full_size = qr.size_sch * (1 if qr.size_units == 'millimeters' else 25.4) - center = round(full_size/2, 2) - size_rect = round(full_size/size, 2) + qrc, size, full_size, center, size_rect = compute_size(qr) # Symbol main attributes sym = [Symbol('symbol'), qr.name] sym.append([Symbol('pin_numbers'), Symbol('hide')]) @@ -315,52 +311,129 @@ class QR_LibOptions(BaseOptions): f.write(dumps(lib)) f.write('\n') - def update_footprint(self, name, qr): - logger.debug('Updating QR footprint: '+name) + def update_footprint(self, name, sexp, qr): + logger.debug('- Updating QR footprint: '+name) # Compute the size - # TODO: don't repeat - qrc = qr._code_pcb - size = qrc.get_size() - if qr.pcb_negative: - size += 2 - full_size = qr.size_pcb * (1 if qr.size_units == 'millimeters' else 25.4) - center = round(full_size/2, 2) - size_rect = round(full_size/size, 2) - # Replace any instance - name = name.lower() - for m in GS.get_modules(): - id = m.GetFPID() - m_name = ('{}:{}'.format(id.GetLibNickname(), id.GetLibItemName())).lower() - if name == m_name: - ref = m.GetReference() - logger.debug('- Updating '+ref) - # Remove all the drawings - for gi in m.GraphicalItems(): - if gi.GetClass() == 'MGRAPHIC': - m.Remove(gi) - # Add the updated version - self.qr_draw_fp_memory(m, size, size_rect, center, qrc, qr.pcb_negative, GS.board.GetLayerID(qr.layer)) + qrc, size, full_size, center, size_rect = compute_size(qr, is_sch=False) + # Remove old drawing + 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)) - def load_k6_sheet(self, fname): + def update_footprints(self, known_qrs): + # Replace known QRs in the PCB + updated = False + pcb = self.load_sexp_file(GS.pcb_file) + for iter in [sexp_iter(pcb, 'kicad_pcb/module'), sexp_iter(pcb, 'kicad_pcb/footprint')]: + for s in iter: + if len(s) < 2: + continue + if isinstance(s[1], Symbol): + name = s[1].value().lower() + else: + name = s[1].lower() + if name in known_qrs: + updated = True + self.update_footprint(name, s, known_qrs[name]) + # Save the resulting PCB + if updated: + # Make it readable + separated = make_separated(pcb[0]) + # Save it to a temporal + with NamedTemporaryFile(mode='wt', suffix='.kicad_pcb', delete=False) as f: + logger.debug('- Saving updated PCB to: '+f.name) + f.write(dumps(separated)) + f.write('\n') + tmp_pcb = f.name + # Reload it + GS.board = None + logger.debug('- Loading the temporal PCB') + load_board(tmp_pcb) + # Create a back-up and save it in the original place + logger.debug('- Replacing the old PCB') + os.remove(tmp_pcb) + bkp = GS.pcb_file+'-bak' + if os.path.isfile(bkp): + os.remove(bkp) + os.rename(GS.pcb_file, bkp) + prl = None + if GS.ki6(): + # KiCad 6 is destroying the PRL ... + prl_name = GS.pcb_no_ext+'.kicad_prl' + if os.path.isfile(prl_name): + with open(prl_name, 'rt') as f: + prl = f.read() + GS.board.Save(GS.pcb_file) + if prl: + with open(prl_name, 'wt') as f: + f.write(prl) + + def update_symbol(self, name, c_name, sexp, qr): + logger.debug('- Updating QR symbol: '+name) + # Compute the size + qrc, size, full_size, center, size_rect = compute_size(qr) + # Create the new drawings + sub_unit_name = c_name+"_1_1" + sub_unit_sexp = [Symbol('symbol'), sub_unit_name] + sub_unit_sexp.extend(self.qr_draw_sym(size, size_rect, center, qrc, do_sep=False)) + # Replace the old one + 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) + + def update_symbols(self, fname, sexp, known_qrs): + # Replace known QRs in the Schematic + updated = False + for s in sexp_iter(sexp, 'kicad_sch/lib_symbols/symbol'): + if len(s) < 2 or not isinstance(s[1], str): + continue + name = s[1].lower() + c_name = s[1].split(':')[1] + if name in known_qrs: + updated = True + self.update_symbol(name, c_name, s, known_qrs[name]) + # Save the resulting Schematic + if updated: + # Make it readable + separated = make_separated(sexp[0]) + # Create a back-up and save it in the original place + logger.debug('- Replacing the old SCH') + bkp = fname+'-bak' + if os.path.isfile(bkp): + os.remove(bkp) + os.rename(fname, bkp) + with open(fname, 'wt') as f: + f.write(dumps(separated)) + f.write('\n') + + def load_sexp_file(self, fname): with open(fname, 'rt') as fh: error = None try: - sch = load(fh) + ki_file = load(fh) except SExpData as e: error = str(e) if error: raise KiPlotConfigurationError(error) - return sch + return ki_file def load_k6_sheets(self, fname, sheets={}): - assert GS.sch_file is not None - sheet = self.load_k6_sheet(fname) + logger.debug('- Loading '+fname) + sheet = self.load_sexp_file(fname) sheets[fname] = sheet - if not isinstance(sheet, list) or sheet[0].value() != 'kicad_sch': + if not is_symbol('kicad_sch', sheet[0]): raise KiPlotConfigurationError('No kicad_sch signature in '+fname) - for e in sheet[1:]: - if isinstance(e, list) and isinstance(e[0], Symbol) and e[0].value == 'sheet': - logger.error(e) + path = os.path.dirname(fname) + for s in sexp_iter(sheet, 'kicad_sch/sheet'): + sub_name = None + for prop in sexp_iter(s, 'property'): + if len(prop) > 2 and isinstance(prop[1], str) and isinstance(prop[2], str) and prop[1] == 'Sheet file': + sub_name = prop[2] + if sub_name is not None: + sub_name = os.path.abspath(os.path.join(path, sub_name)) + if sub_name not in sheets: + self.load_k6_sheets(os.path.join(path, sub_name), sheets) + return sheets def run(self, output): if self.use_sch_dir: @@ -389,28 +462,34 @@ class QR_LibOptions(BaseOptions): self.footprint(dir_pretty, qr) # Update the files if self._parent._update_mode: - # PCB - assert GS.board is not None + logger.debug('Updating the PCB and schematic') + # Create a dict with the known QRs + known_qrs = {} for qr in self.qrs: - self.update_footprint(self.lib+':'+qr.name, qr) - bkp = GS.pcb_file+'-bak' - if os.path.isfile(bkp): - os.remove(bkp) - os.rename(GS.pcb_file, bkp) - GS.board.Save(GS.pcb_file) + name = self.lib+':'+qr.name + known_qrs[name.lower()] = qr + # TODO: Update fields + # PCB + self.update_footprints(known_qrs) # Schematic if GS.ki6(): # KiCad 5 reads the lib, but KiCad 6 is more like the PCB - # sheets = self.load_k6_sheets(GS.sch_file) - pass - # TODO: KiCad 6 is crashing when we delete the graphics + assert GS.sch_file is not None + sheets = self.load_k6_sheets(GS.sch_file) + for k, v in sheets.items(): + self.update_symbols(k, v, known_qrs) @output_class class QR_Lib(BaseOutput): # noqa: F821 """ QR_Lib Generates a QR code symbol and footprint. - This output creates a library containing a symbol and footprint for a QR code. """ + This output creates a library containing a symbol and footprint for a QR code. + To refresh the generated symbols and footprints use the `update_qr` preflight. + The workflow is as follows: + - Create the symbol and footprints using this output. + - Use them in your schematic and PCB. + - To keep them updated add the `update_qr` preflight """ def __init__(self): super().__init__() with document: diff --git a/tests/board_samples/kicad_5/qr_test/qr.kicad_sym b/tests/board_samples/kicad_5/qr_test/qr.kicad_sym deleted file mode 100644 index 1555575f..00000000 --- a/tests/board_samples/kicad_5/qr_test/qr.kicad_sym +++ /dev/null @@ -1,3770 +0,0 @@ -(kicad_symbol_lib (version 20211014) (generator kibot) - (symbol "QR" (pin_numbers hide) (pin_names hide) (in_bom no) (on_board yes) - (property "Reference" "#QR" (id 0) (at 0 13.95 0) - ) - (property "Value" "QR" (id 1) (at 0 -13.95 0) - ) - (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" "2,3" (id 6) (at 0 -22.45 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (property "qr_mask" "7" (id 7) (at 0 -24.15 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (property "qr_text" "QR Test A" (id 8) (at 0 -25.85 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (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) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -10.29) (end -11.49 -11.5) - (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) - (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) - (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 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 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 -12.7 -11.5) (end -11.49 -12.71) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -11.49 -11.5) (end -10.28 -12.71) - (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 -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 -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 -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 -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) - (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) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.82 -11.5) (end 3.03 -12.71) - (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 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 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) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - ) - (symbol "QR2" (pin_numbers hide) (pin_names hide) (in_bom no) (on_board yes) - (property "Reference" "#QR" (id 0) (at 0 8.75 0) - ) - (property "Value" "QR2" (id 1) (at 0 -8.75 0) - ) - (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" "5" (id 4) (at 0 -13.85 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (property "qr_size" "37" (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" "5" (id 7) (at 0 -18.95 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (property "qr_text" "https://github.com/INTI-CMNB/KiBot/" (id 8) (at 0 -20.65 0) - (effects (font (size 1.27 1.27)) hide) - - ) - (rectangle (start -7.5 7.5) (end -7.09 7.09) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (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) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - ) -) 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 9b971b3b..18021f88 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 @@ -5,6 +5,11 @@ ) (paper "A4") + (title_block + (title "QR PCB") + (rev "B") + ) + (layers (0 "F.Cu" signal) (1 "In1.Cu" signal) @@ -73,7 +78,7 @@ (tedit 0) (tstamp 00000000-0000-0000-0000-000061d26c5c) (at 65.8 96.9) (attr through_hole) - (fp_text reference "QR***" (at 0 26.65) (layer "F.Cu") + (fp_text reference "QR1" (at 0 26.65) (layer "F.Cu") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2) ) @@ -81,1105 +86,1099 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp e8314017-7be6-4011-9179-37449a29b311) ) - (fp_text user "qr_size: 21" (at 0 -30.05) (layer "F.Cu") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1) - ) - (fp_text user "qr_version: 1" (at 0 -28.35) (layer "F.Cu") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 55e740a3-0735-4744-896e-2bf5437093b9) - ) (fp_text user "qr_ecc: 1,0" (at 0 -31.75) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e) + (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019) ) - (fp_text user "qr_mask: 6" (at 0 -33.45) (layer "F.Cu") hide + (fp_text user "qr_size: 21" (at 0 -30.05) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 746ba970-8279-4e7b-aed3-f28687777c21) + (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb) ) (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 e10b5627-3247-4c86-b9f6-ef474ca11543) + (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296) + ) + (fp_text user "qr_mask: 6" (at 0 -33.45) (layer "F.Cu") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec) + ) + (fp_text user "qr_version: 1" (at 0 -28.35) (layer "F.Cu") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151) ) - (fp_poly (pts - (xy -1.2 -8.46) - (xy -1.2 -6.04) - (xy 1.22 -6.04) - (xy 1.22 -8.46) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768)) - (fp_poly (pts - (xy -3.62 8.48) - (xy -3.62 10.9) - (xy -1.2 10.9) - (xy -1.2 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)) - (fp_poly (pts - (xy 18.16 -6.04) - (xy 18.16 -3.62) - (xy 20.58 -3.62) - (xy 20.58 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)) - (fp_poly (pts - (xy 10.9 18.16) - (xy 10.9 20.58) - (xy 13.32 20.58) - (xy 13.32 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc)) - (fp_poly (pts - (xy 15.74 -18.14) - (xy 15.74 -15.72) - (xy 18.16 -15.72) - (xy 18.16 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb)) - (fp_poly (pts - (xy -22.98 3.64) - (xy -22.98 6.06) - (xy -20.56 6.06) - (xy -20.56 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)) - (fp_poly (pts - (xy 20.58 6.06) - (xy 20.58 8.48) - (xy 23 8.48) - (xy 23 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)) - (fp_poly (pts - (xy 15.74 -10.88) - (xy 15.74 -8.46) - (xy 18.16 -8.46) - (xy 18.16 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)) - (fp_poly (pts - (xy 6.06 20.58) - (xy 6.06 23) - (xy 8.48 23) - (xy 8.48 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 097edb1b-8998-4e70-b670-bba125982348)) - (fp_poly (pts - (xy 20.58 20.58) - (xy 20.58 23) - (xy 23 23) - (xy 23 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)) - (fp_poly (pts - (xy -1.2 -18.14) - (xy -1.2 -15.72) - (xy 1.22 -15.72) - (xy 1.22 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136)) - (fp_poly (pts - (xy 15.74 8.48) - (xy 15.74 10.9) - (xy 18.16 10.9) - (xy 18.16 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb)) - (fp_poly (pts - (xy 23 18.16) - (xy 23 20.58) - (xy 25.42 20.58) - (xy 25.42 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)) - (fp_poly (pts - (xy 15.74 -20.56) - (xy 15.74 -18.14) - (xy 18.16 -18.14) - (xy 18.16 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)) - (fp_poly (pts - (xy -15.72 -18.14) - (xy -15.72 -15.72) - (xy -13.3 -15.72) - (xy -13.3 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55)) - (fp_poly (pts - (xy -25.4 -10.88) - (xy -25.4 -8.46) - (xy -22.98 -8.46) - (xy -22.98 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)) - (fp_poly (pts - (xy -8.46 3.64) - (xy -8.46 6.06) - (xy -6.04 6.06) - (xy -6.04 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) - (fp_poly (pts - (xy -25.4 -1.2) - (xy -25.4 1.22) - (xy -22.98 1.22) - (xy -22.98 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)) - (fp_poly (pts - (xy -6.04 -20.56) - (xy -6.04 -18.14) - (xy -3.62 -18.14) - (xy -3.62 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e)) - (fp_poly (pts - (xy 10.9 3.64) - (xy 10.9 6.06) - (xy 13.32 6.06) - (xy 13.32 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d)) - (fp_poly (pts - (xy -18.14 15.74) - (xy -18.14 18.16) - (xy -15.72 18.16) - (xy -15.72 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa)) - (fp_poly (pts - (xy -25.4 20.58) - (xy -25.4 23) - (xy -22.98 23) - (xy -22.98 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)) - (fp_poly (pts - (xy 15.74 10.9) - (xy 15.74 13.32) - (xy 18.16 13.32) - (xy 18.16 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)) - (fp_poly (pts - (xy -13.3 8.48) - (xy -13.3 10.9) - (xy -10.88 10.9) - (xy -10.88 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)) - (fp_poly (pts - (xy 18.16 -20.56) - (xy 18.16 -18.14) - (xy 20.58 -18.14) - (xy 20.58 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)) - (fp_poly (pts - (xy -10.88 13.32) - (xy -10.88 15.74) - (xy -8.46 15.74) - (xy -8.46 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36)) - (fp_poly (pts - (xy -18.14 -18.14) - (xy -18.14 -15.72) - (xy -15.72 -15.72) - (xy -15.72 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)) - (fp_poly (pts - (xy -15.72 15.74) - (xy -15.72 18.16) - (xy -13.3 18.16) - (xy -13.3 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)) - (fp_poly (pts - (xy 18.16 -15.72) - (xy 18.16 -13.3) - (xy 20.58 -13.3) - (xy 20.58 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)) - (fp_poly (pts - (xy 8.48 -3.62) - (xy 8.48 -1.2) - (xy 10.9 -1.2) - (xy 10.9 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f)) - (fp_poly (pts - (xy -10.88 -13.3) - (xy -10.88 -10.88) - (xy -8.46 -10.88) - (xy -8.46 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)) - (fp_poly (pts - (xy -25.4 -3.62) - (xy -25.4 -1.2) - (xy -22.98 -1.2) - (xy -22.98 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)) - (fp_poly (pts - (xy 15.74 -25.4) - (xy 15.74 -22.98) - (xy 18.16 -22.98) - (xy 18.16 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268)) - (fp_poly (pts - (xy -18.14 23) - (xy -18.14 25.42) - (xy -15.72 25.42) - (xy -15.72 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)) - (fp_poly (pts - (xy -15.72 1.22) - (xy -15.72 3.64) - (xy -13.3 3.64) - (xy -13.3 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)) - (fp_poly (pts - (xy -10.88 3.64) - (xy -10.88 6.06) - (xy -8.46 6.06) - (xy -8.46 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)) - (fp_poly (pts - (xy -10.88 15.74) - (xy -10.88 18.16) - (xy -8.46 18.16) - (xy -8.46 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)) - (fp_poly (pts - (xy -3.62 -8.46) - (xy -3.62 -6.04) - (xy -1.2 -6.04) - (xy -1.2 -8.46) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)) - (fp_poly (pts - (xy 13.32 18.16) - (xy 13.32 20.58) - (xy 15.74 20.58) - (xy 15.74 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0)) - (fp_poly (pts - (xy -20.56 -3.62) - (xy -20.56 -1.2) - (xy -18.14 -1.2) - (xy -18.14 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)) - (fp_poly (pts - (xy -18.14 1.22) - (xy -18.14 3.64) - (xy -15.72 3.64) - (xy -15.72 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)) - (fp_poly (pts - (xy -18.14 18.16) - (xy -18.14 20.58) - (xy -15.72 20.58) - (xy -15.72 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)) - (fp_poly (pts - (xy 23 -18.14) - (xy 23 -15.72) - (xy 25.42 -15.72) - (xy 25.42 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)) - (fp_poly (pts - (xy -10.88 -15.72) - (xy -10.88 -13.3) - (xy -8.46 -13.3) - (xy -8.46 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3)) - (fp_poly (pts - (xy -10.88 20.58) - (xy -10.88 23) - (xy -8.46 23) - (xy -8.46 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d67a417-188f-4014-9282-000265d80009)) - (fp_poly (pts - (xy 3.64 -10.88) - (xy 3.64 -8.46) - (xy 6.06 -8.46) - (xy 6.06 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)) - (fp_poly (pts - (xy -3.62 13.32) - (xy -3.62 15.74) - (xy -1.2 15.74) - (xy -1.2 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)) - (fp_poly (pts - (xy -25.4 -22.98) - (xy -25.4 -20.56) - (xy -22.98 -20.56) - (xy -22.98 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)) - (fp_poly (pts - (xy 1.22 -6.04) - (xy 1.22 -3.62) - (xy 3.64 -3.62) - (xy 3.64 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)) - (fp_poly (pts - (xy 20.58 -25.4) - (xy 20.58 -22.98) - (xy 23 -22.98) - (xy 23 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)) - (fp_poly (pts - (xy -13.3 -10.88) - (xy -13.3 -8.46) - (xy -10.88 -8.46) - (xy -10.88 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)) - (fp_poly (pts - (xy -25.4 23) - (xy -25.4 25.42) - (xy -22.98 25.42) - (xy -22.98 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)) - (fp_poly (pts - (xy -1.2 3.64) - (xy -1.2 6.06) - (xy 1.22 6.06) - (xy 1.22 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)) - (fp_poly (pts - (xy 1.22 18.16) - (xy 1.22 20.58) - (xy 3.64 20.58) - (xy 3.64 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059)) - (fp_poly (pts - (xy -10.88 23) - (xy -10.88 25.42) - (xy -8.46 25.42) - (xy -8.46 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7)) - (fp_poly (pts - (xy -22.98 -3.62) - (xy -22.98 -1.2) - (xy -20.56 -1.2) - (xy -20.56 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)) - (fp_poly (pts - (xy -3.62 -13.3) - (xy -3.62 -10.88) - (xy -1.2 -10.88) - (xy -1.2 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)) - (fp_poly (pts - (xy 10.9 -25.4) - (xy 10.9 -22.98) - (xy 13.32 -22.98) - (xy 13.32 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)) - (fp_poly (pts - (xy 8.48 -18.14) - (xy 8.48 -15.72) - (xy 10.9 -15.72) - (xy 10.9 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68)) - (fp_poly (pts - (xy -15.72 -3.62) - (xy -15.72 -1.2) - (xy -13.3 -1.2) - (xy -13.3 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)) - (fp_poly (pts - (xy -10.88 -1.2) - (xy -10.88 1.22) - (xy -8.46 1.22) - (xy -8.46 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)) - (fp_poly (pts - (xy 1.22 1.22) - (xy 1.22 3.64) - (xy 3.64 3.64) - (xy 3.64 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b)) - (fp_poly (pts - (xy -13.3 23) - (xy -13.3 25.42) - (xy -10.88 25.42) - (xy -10.88 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504)) - (fp_poly (pts - (xy 23 -15.72) - (xy 23 -13.3) - (xy 25.42 -13.3) - (xy 25.42 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)) - (fp_poly (pts - (xy -6.04 -25.4) - (xy -6.04 -22.98) - (xy -3.62 -22.98) - (xy -3.62 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)) - (fp_poly (pts - (xy -1.2 -3.62) - (xy -1.2 -1.2) - (xy 1.22 -1.2) - (xy 1.22 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf)) - (fp_poly (pts - (xy 1.22 20.58) - (xy 1.22 23) - (xy 3.64 23) - (xy 3.64 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)) - (fp_poly (pts - (xy -6.04 -1.2) - (xy -6.04 1.22) - (xy -3.62 1.22) - (xy -3.62 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4780a290-d25c-4459-9579-eba3f7678762)) - (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) (fill solid) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)) - (fp_poly (pts - (xy -1.2 -20.56) - (xy -1.2 -18.14) - (xy 1.22 -18.14) - (xy 1.22 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11)) - (fp_poly (pts - (xy -25.4 8.48) - (xy -25.4 10.9) - (xy -22.98 10.9) - (xy -22.98 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)) - (fp_poly (pts - (xy 18.16 -10.88) - (xy 18.16 -8.46) - (xy 20.58 -8.46) - (xy 20.58 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)) - (fp_poly (pts - (xy -20.56 -15.72) - (xy -20.56 -13.3) - (xy -18.14 -13.3) - (xy -18.14 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)) - (fp_poly (pts - (xy -6.04 8.48) - (xy -6.04 10.9) - (xy -3.62 10.9) - (xy -3.62 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)) - (fp_poly (pts - (xy -13.3 -25.4) - (xy -13.3 -22.98) - (xy -10.88 -22.98) - (xy -10.88 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72)) - (fp_poly (pts - (xy 18.16 6.06) - (xy 18.16 8.48) - (xy 20.58 8.48) - (xy 20.58 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb21471-41be-4be8-9687-66030f97befc)) - (fp_poly (pts - (xy -10.88 -22.98) - (xy -10.88 -20.56) - (xy -8.46 -20.56) - (xy -8.46 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)) - (fp_poly (pts - (xy -6.04 13.32) - (xy -6.04 15.74) - (xy -3.62 15.74) - (xy -3.62 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)) - (fp_poly (pts - (xy -3.62 -22.98) - (xy -3.62 -20.56) - (xy -1.2 -20.56) - (xy -1.2 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 54365317-1355-4216-bb75-829375abc4ec)) - (fp_poly (pts - (xy 10.9 -10.88) - (xy 10.9 -8.46) - (xy 13.32 -8.46) - (xy 13.32 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475)) - (fp_poly (pts - (xy -25.4 18.16) - (xy -25.4 20.58) - (xy -22.98 20.58) - (xy -22.98 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313)) - (fp_poly (pts - (xy 10.9 13.32) - (xy 10.9 15.74) - (xy 13.32 15.74) - (xy 13.32 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2)) - (fp_poly (pts - (xy -20.56 18.16) - (xy -20.56 20.58) - (xy -18.14 20.58) - (xy -18.14 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)) - (fp_poly (pts - (xy -25.4 -20.56) - (xy -25.4 -18.14) - (xy -22.98 -18.14) - (xy -22.98 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)) - (fp_poly (pts - (xy -20.56 8.48) - (xy -20.56 10.9) - (xy -18.14 10.9) - (xy -18.14 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)) - (fp_poly (pts - (xy -6.04 -6.04) - (xy -6.04 -3.62) - (xy -3.62 -3.62) - (xy -3.62 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)) - (fp_poly (pts - (xy 13.32 20.58) - (xy 13.32 23) - (xy 15.74 23) - (xy 15.74 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077)) - (fp_poly (pts - (xy 23 1.22) - (xy 23 3.64) - (xy 25.42 3.64) - (xy 25.42 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454)) - (fp_poly (pts - (xy -10.88 -6.04) - (xy -10.88 -3.62) - (xy -8.46 -3.62) - (xy -8.46 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)) - (fp_poly (pts - (xy -15.72 -10.88) - (xy -15.72 -8.46) - (xy -13.3 -8.46) - (xy -13.3 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6)) - (fp_poly (pts - (xy -15.72 23) - (xy -15.72 25.42) - (xy -13.3 25.42) - (xy -13.3 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9)) - (fp_poly (pts - (xy -8.46 -3.62) - (xy -8.46 -1.2) - (xy -6.04 -1.2) - (xy -6.04 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)) - (fp_poly (pts - (xy 10.9 23) - (xy 10.9 25.42) - (xy 13.32 25.42) - (xy 13.32 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019)) - (fp_poly (pts - (xy 3.64 10.9) - (xy 3.64 13.32) - (xy 6.06 13.32) - (xy 6.06 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)) - (fp_poly (pts - (xy -1.2 -10.88) - (xy -1.2 -8.46) - (xy 1.22 -8.46) - (xy 1.22 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66043bca-a260-4915-9fce-8a51d324c687)) - (fp_poly (pts - (xy 3.64 -25.4) - (xy 3.64 -22.98) - (xy 6.06 -22.98) - (xy 6.06 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66116376-6967-4178-9f23-a26cdeafc400)) - (fp_poly (pts - (xy 3.64 -15.72) - (xy 3.64 -13.3) - (xy 6.06 -13.3) - (xy 6.06 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b)) - (fp_poly (pts - (xy 3.64 18.16) - (xy 3.64 20.58) - (xy 6.06 20.58) - (xy 6.06 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)) - (fp_poly (pts - (xy 10.9 20.58) - (xy 10.9 23) - (xy 13.32 23) - (xy 13.32 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)) - (fp_poly (pts - (xy -6.04 6.06) - (xy -6.04 8.48) - (xy -3.62 8.48) - (xy -3.62 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 68877d35-b796-44db-9124-b8e744e7412e)) - (fp_poly (pts - (xy -18.14 -20.56) - (xy -18.14 -18.14) - (xy -15.72 -18.14) - (xy -15.72 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)) - (fp_poly (pts - (xy 23 -6.04) - (xy 23 -3.62) - (xy 25.42 -3.62) - (xy 25.42 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)) - (fp_poly (pts - (xy 1.22 13.32) - (xy 1.22 15.74) - (xy 3.64 15.74) - (xy 3.64 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6)) - (fp_poly (pts - (xy 1.22 -15.72) - (xy 1.22 -13.3) - (xy 3.64 -13.3) - (xy 3.64 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)) - (fp_poly (pts - (xy -15.72 18.16) - (xy -15.72 20.58) - (xy -13.3 20.58) - (xy -13.3 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848)) - (fp_poly (pts - (xy -20.56 -20.56) - (xy -20.56 -18.14) - (xy -18.14 -18.14) - (xy -18.14 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)) - (fp_poly (pts - (xy 6.06 6.06) - (xy 6.06 8.48) - (xy 8.48 8.48) - (xy 8.48 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047)) - (fp_poly (pts - (xy -25.4 15.74) - (xy -25.4 18.16) - (xy -22.98 18.16) - (xy -22.98 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)) - (fp_poly (pts - (xy 13.32 -20.56) - (xy 13.32 -18.14) - (xy 15.74 -18.14) - (xy 15.74 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)) - (fp_poly (pts - (xy 10.9 6.06) - (xy 10.9 8.48) - (xy 13.32 8.48) - (xy 13.32 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6)) - (fp_poly (pts - (xy -10.88 -20.56) - (xy -10.88 -18.14) - (xy -8.46 -18.14) - (xy -8.46 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811)) - (fp_poly (pts - (xy 10.9 8.48) - (xy 10.9 10.9) - (xy 13.32 10.9) - (xy 13.32 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)) - (fp_poly (pts - (xy 8.48 -25.4) - (xy 8.48 -22.98) - (xy 10.9 -22.98) - (xy 10.9 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)) - (fp_poly (pts - (xy 15.74 6.06) - (xy 15.74 8.48) - (xy 18.16 8.48) - (xy 18.16 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7599133e-c681-4202-85d9-c20dac196c64)) - (fp_poly (pts - (xy -13.3 -3.62) - (xy -13.3 -1.2) - (xy -10.88 -1.2) - (xy -10.88 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)) - (fp_poly (pts - (xy 13.32 10.9) - (xy 13.32 13.32) - (xy 15.74 13.32) - (xy 15.74 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5)) - (fp_poly (pts - (xy -18.14 -25.4) - (xy -18.14 -22.98) - (xy -15.72 -22.98) - (xy -15.72 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)) - (fp_poly (pts - (xy 23 10.9) - (xy 23 13.32) - (xy 25.42 13.32) - (xy 25.42 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)) - (fp_poly (pts - (xy 15.74 -15.72) - (xy 15.74 -13.3) - (xy 18.16 -13.3) - (xy 18.16 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827)) - (fp_poly (pts - (xy 8.48 -10.88) - (xy 8.48 -8.46) - (xy 10.9 -8.46) - (xy 10.9 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743)) - (fp_poly (pts - (xy 1.22 15.74) - (xy 1.22 18.16) - (xy 3.64 18.16) - (xy 3.64 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)) - (fp_poly (pts - (xy 15.74 -3.62) - (xy 15.74 -1.2) - (xy 18.16 -1.2) - (xy 18.16 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)) - (fp_poly (pts - (xy 6.06 8.48) - (xy 6.06 10.9) - (xy 8.48 10.9) - (xy 8.48 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)) - (fp_poly (pts - (xy 8.48 -15.72) - (xy 8.48 -13.3) - (xy 10.9 -13.3) - (xy 10.9 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)) - (fp_poly (pts - (xy -8.46 -1.2) - (xy -8.46 1.22) - (xy -6.04 1.22) - (xy -6.04 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)) - (fp_poly (pts - (xy 13.32 -10.88) - (xy 13.32 -8.46) - (xy 15.74 -8.46) - (xy 15.74 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)) - (fp_poly (pts - (xy 13.32 23) - (xy 13.32 25.42) - (xy 15.74 25.42) - (xy 15.74 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb)) - (fp_poly (pts - (xy -22.98 -10.88) - (xy -22.98 -8.46) - (xy -20.56 -8.46) - (xy -20.56 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)) - (fp_poly (pts - (xy 3.64 23) - (xy 3.64 25.42) - (xy 6.06 25.42) - (xy 6.06 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296)) - (fp_poly (pts - (xy 8.48 -20.56) - (xy 8.48 -18.14) - (xy 10.9 -18.14) - (xy 10.9 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)) - (fp_poly (pts - (xy 15.74 3.64) - (xy 15.74 6.06) - (xy 18.16 6.06) - (xy 18.16 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff)) - (fp_poly (pts - (xy -1.2 20.58) - (xy -1.2 23) - (xy 1.22 23) - (xy 1.22 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)) - (fp_poly (pts - (xy -6.04 -10.88) - (xy -6.04 -8.46) - (xy -3.62 -8.46) - (xy -3.62 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 852dabbf-de45-4470-8176-59d37a754407)) - (fp_poly (pts - (xy 18.16 15.74) - (xy 18.16 18.16) - (xy 20.58 18.16) - (xy 20.58 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5)) - (fp_poly (pts - (xy -15.72 8.48) - (xy -15.72 10.9) - (xy -13.3 10.9) - (xy -13.3 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76)) - (fp_poly (pts - (xy 23 -25.4) - (xy 23 -22.98) - (xy 25.42 -22.98) - (xy 25.42 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87371631-aa02-498a-998a-09bdb74784c1)) - (fp_poly (pts - (xy 23 20.58) - (xy 23 23) - (xy 25.42 23) - (xy 25.42 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87d7448e-e139-4209-ae0b-372f805267da)) - (fp_poly (pts - (xy 8.48 8.48) - (xy 8.48 10.9) - (xy 10.9 10.9) - (xy 10.9 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)) - (fp_poly (pts - (xy -1.2 1.22) - (xy -1.2 3.64) - (xy 1.22 3.64) - (xy 1.22 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)) - (fp_poly (pts - (xy -6.04 -3.62) - (xy -6.04 -1.2) - (xy -3.62 -1.2) - (xy -3.62 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)) - (fp_poly (pts - (xy -25.4 3.64) - (xy -25.4 6.06) - (xy -22.98 6.06) - (xy -22.98 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) - (fp_poly (pts - (xy 6.06 18.16) - (xy 6.06 20.58) - (xy 8.48 20.58) - (xy 8.48 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7)) - (fp_poly (pts - (xy 6.06 -6.04) - (xy 6.06 -3.62) - (xy 8.48 -3.62) - (xy 8.48 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)) - (fp_poly (pts - (xy -20.56 -1.2) - (xy -20.56 1.22) - (xy -18.14 1.22) - (xy -18.14 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)) (fp_poly (pts (xy 1.22 6.06) (xy 1.22 8.48) (xy 3.64 8.48) (xy 3.64 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768)) (fp_poly (pts - (xy 13.32 -15.72) - (xy 13.32 -13.3) - (xy 15.74 -13.3) - (xy 15.74 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)) + (xy -20.56 -10.88) + (xy -20.56 -8.46) + (xy -18.14 -8.46) + (xy -18.14 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)) (fp_poly (pts - (xy 23 -13.3) - (xy 23 -10.88) - (xy 25.42 -10.88) - (xy 25.42 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)) + (xy -8.46 3.64) + (xy -8.46 6.06) + (xy -6.04 6.06) + (xy -6.04 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)) (fp_poly (pts - (xy -20.56 -18.14) - (xy -20.56 -15.72) - (xy -18.14 -15.72) - (xy -18.14 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3)) + (xy 23 -22.98) + (xy 23 -20.56) + (xy 25.42 -20.56) + (xy 25.42 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc)) (fp_poly (pts - (xy -25.4 -15.72) - (xy -25.4 -13.3) - (xy -22.98 -13.3) - (xy -22.98 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)) + (xy 1.22 13.32) + (xy 1.22 15.74) + (xy 3.64 15.74) + (xy 3.64 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb)) (fp_poly (pts - (xy -25.4 10.9) - (xy -25.4 13.32) - (xy -22.98 13.32) - (xy -22.98 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 965308c8-e014-459a-b9db-b8493a601c62)) + (xy 23 -6.04) + (xy 23 -3.62) + (xy 25.42 -3.62) + (xy 25.42 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)) (fp_poly (pts - (xy 8.48 -13.3) - (xy 8.48 -10.88) (xy 10.9 -10.88) - (xy 10.9 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)) + (xy 10.9 -8.46) + (xy 13.32 -8.46) + (xy 13.32 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)) + (fp_poly (pts + (xy 15.74 6.06) + (xy 15.74 8.48) + (xy 18.16 8.48) + (xy 18.16 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)) + (fp_poly (pts + (xy 20.58 -25.4) + (xy 20.58 -22.98) + (xy 23 -22.98) + (xy 23 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 097edb1b-8998-4e70-b670-bba125982348)) + (fp_poly (pts + (xy 3.64 -25.4) + (xy 3.64 -22.98) + (xy 6.06 -22.98) + (xy 6.06 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)) + (fp_poly (pts + (xy 20.58 13.32) + (xy 20.58 15.74) + (xy 23 15.74) + (xy 23 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136)) + (fp_poly (pts + (xy -3.62 -13.3) + (xy -3.62 -10.88) + (xy -1.2 -10.88) + (xy -1.2 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb)) + (fp_poly (pts + (xy -3.62 -22.98) + (xy -3.62 -20.56) + (xy -1.2 -20.56) + (xy -1.2 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)) + (fp_poly (pts + (xy 1.22 15.74) + (xy 1.22 18.16) + (xy 3.64 18.16) + (xy 3.64 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)) + (fp_poly (pts + (xy -20.56 15.74) + (xy -20.56 18.16) + (xy -18.14 18.16) + (xy -18.14 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55)) + (fp_poly (pts + (xy 6.06 8.48) + (xy 6.06 10.9) + (xy 8.48 10.9) + (xy 8.48 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)) + (fp_poly (pts + (xy 18.16 -6.04) + (xy 18.16 -3.62) + (xy 20.58 -3.62) + (xy 20.58 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) (fp_poly (pts (xy 8.48 23) (xy 8.48 25.42) (xy 10.9 25.42) (xy 10.9 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1)) (fp_poly (pts - (xy 8.48 20.58) - (xy 8.48 23) - (xy 10.9 23) - (xy 10.9 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e)) - (fp_poly (pts - (xy -18.14 -6.04) - (xy -18.14 -3.62) - (xy -15.72 -3.62) - (xy -15.72 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949)) - (fp_poly (pts - (xy -15.72 -15.72) - (xy -15.72 -13.3) - (xy -13.3 -13.3) - (xy -13.3 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d)) - (fp_poly (pts - (xy -3.62 15.74) - (xy -3.62 18.16) - (xy -1.2 18.16) - (xy -1.2 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)) - (fp_poly (pts - (xy -13.3 -6.04) - (xy -13.3 -3.62) - (xy -10.88 -3.62) - (xy -10.88 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)) - (fp_poly (pts - (xy -1.2 6.06) - (xy -1.2 8.48) - (xy 1.22 8.48) - (xy 1.22 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940)) - (fp_poly (pts - (xy 18.16 20.58) - (xy 18.16 23) - (xy 20.58 23) - (xy 20.58 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)) - (fp_poly (pts - (xy 13.32 1.22) - (xy 13.32 3.64) - (xy 15.74 3.64) - (xy 15.74 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a15a7506-eae4-4933-84da-9ad754258706)) - (fp_poly (pts - (xy -18.14 13.32) - (xy -18.14 15.74) - (xy -15.72 15.74) - (xy -15.72 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a17904b9-135e-4dae-ae20-401c7787de72)) - (fp_poly (pts - (xy 18.16 -18.14) - (xy 18.16 -15.72) - (xy 20.58 -15.72) - (xy 20.58 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)) - (fp_poly (pts - (xy 3.64 3.64) - (xy 3.64 6.06) - (xy 6.06 6.06) - (xy 6.06 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)) - (fp_poly (pts - (xy 1.22 -22.98) - (xy 1.22 -20.56) - (xy 3.64 -20.56) - (xy 3.64 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)) - (fp_poly (pts - (xy 3.64 -3.62) - (xy 3.64 -1.2) - (xy 6.06 -1.2) - (xy 6.06 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b)) - (fp_poly (pts - (xy -10.88 8.48) - (xy -10.88 10.9) - (xy -8.46 10.9) - (xy -8.46 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222)) - (fp_poly (pts - (xy 3.64 -22.98) - (xy 3.64 -20.56) - (xy 6.06 -20.56) - (xy 6.06 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3)) - (fp_poly (pts - (xy 15.74 23) - (xy 15.74 25.42) - (xy 18.16 25.42) - (xy 18.16 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151)) - (fp_poly (pts - (xy -18.14 -15.72) - (xy -18.14 -13.3) - (xy -15.72 -13.3) - (xy -15.72 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d)) - (fp_poly (pts - (xy 18.16 18.16) - (xy 18.16 20.58) - (xy 20.58 20.58) - (xy 20.58 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)) - (fp_poly (pts - (xy 13.32 8.48) - (xy 13.32 10.9) - (xy 15.74 10.9) - (xy 15.74 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)) - (fp_poly (pts - (xy -6.04 -22.98) - (xy -6.04 -20.56) - (xy -3.62 -20.56) - (xy -3.62 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497)) - (fp_poly (pts - (xy 20.58 -1.2) - (xy 20.58 1.22) - (xy 23 1.22) - (xy 23 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)) - (fp_poly (pts - (xy -15.72 -20.56) - (xy -15.72 -18.14) - (xy -13.3 -18.14) - (xy -13.3 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9)) - (fp_poly (pts - (xy -10.88 10.9) - (xy -10.88 13.32) - (xy -8.46 13.32) - (xy -8.46 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e)) + (xy -18.14 1.22) + (xy -18.14 3.64) + (xy -15.72 3.64) + (xy -15.72 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)) (fp_poly (pts (xy -10.88 18.16) (xy -10.88 20.58) (xy -8.46 20.58) (xy -8.46 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e)) (fp_poly (pts - (xy -10.88 -10.88) + (xy 1.22 -6.04) + (xy 1.22 -3.62) + (xy 3.64 -3.62) + (xy 3.64 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d)) + (fp_poly (pts + (xy -18.14 -18.14) + (xy -18.14 -15.72) + (xy -15.72 -15.72) + (xy -15.72 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa)) + (fp_poly (pts + (xy -6.04 -22.98) + (xy -6.04 -20.56) + (xy -3.62 -20.56) + (xy -3.62 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)) + (fp_poly (pts + (xy 8.48 -15.72) + (xy 8.48 -13.3) + (xy 10.9 -13.3) + (xy 10.9 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)) + (fp_poly (pts + (xy -13.3 -10.88) + (xy -13.3 -8.46) (xy -10.88 -8.46) - (xy -8.46 -8.46) - (xy -8.46 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3)) + (xy -10.88 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)) + (fp_poly (pts + (xy -3.62 15.74) + (xy -3.62 18.16) + (xy -1.2 18.16) + (xy -1.2 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)) + (fp_poly (pts + (xy -25.4 -15.72) + (xy -25.4 -13.3) + (xy -22.98 -13.3) + (xy -22.98 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36)) + (fp_poly (pts + (xy -18.14 15.74) + (xy -18.14 18.16) + (xy -15.72 18.16) + (xy -15.72 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)) + (fp_poly (pts + (xy -20.56 -18.14) + (xy -20.56 -15.72) + (xy -18.14 -15.72) + (xy -18.14 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)) + (fp_poly (pts + (xy 3.64 10.9) + (xy 3.64 13.32) + (xy 6.06 13.32) + (xy 6.06 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)) + (fp_poly (pts + (xy -8.46 1.22) + (xy -8.46 3.64) + (xy -6.04 3.64) + (xy -6.04 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f)) + (fp_poly (pts + (xy -25.4 10.9) + (xy -25.4 13.32) + (xy -22.98 13.32) + (xy -22.98 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)) + (fp_poly (pts + (xy -25.4 3.64) + (xy -25.4 6.06) + (xy -22.98 6.06) + (xy -22.98 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)) + (fp_poly (pts + (xy 10.9 20.58) + (xy 10.9 23) + (xy 13.32 23) + (xy 13.32 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268)) + (fp_poly (pts + (xy -15.72 -25.4) + (xy -15.72 -22.98) + (xy -13.3 -22.98) + (xy -13.3 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)) + (fp_poly (pts + (xy 15.74 -3.62) + (xy 15.74 -1.2) + (xy 18.16 -1.2) + (xy 18.16 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)) + (fp_poly (pts + (xy 20.58 -6.04) + (xy 20.58 -3.62) + (xy 23 -3.62) + (xy 23 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)) + (fp_poly (pts + (xy -25.4 -18.14) + (xy -25.4 -15.72) + (xy -22.98 -15.72) + (xy -22.98 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)) + (fp_poly (pts + (xy 6.06 6.06) + (xy 6.06 8.48) + (xy 8.48 8.48) + (xy 8.48 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)) + (fp_poly (pts + (xy 8.48 -22.98) + (xy 8.48 -20.56) + (xy 10.9 -20.56) + (xy 10.9 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0)) + (fp_poly (pts + (xy 18.16 1.22) + (xy 18.16 3.64) + (xy 20.58 3.64) + (xy 20.58 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)) + (fp_poly (pts + (xy -25.4 -1.2) + (xy -25.4 1.22) + (xy -22.98 1.22) + (xy -22.98 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)) + (fp_poly (pts + (xy 1.22 -20.56) + (xy 1.22 -18.14) + (xy 3.64 -18.14) + (xy 3.64 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)) + (fp_poly (pts + (xy -6.04 13.32) + (xy -6.04 15.74) + (xy -3.62 15.74) + (xy -3.62 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)) + (fp_poly (pts + (xy -25.4 13.32) + (xy -25.4 15.74) + (xy -22.98 15.74) + (xy -22.98 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3)) + (fp_poly (pts + (xy -10.88 -22.98) + (xy -10.88 -20.56) + (xy -8.46 -20.56) + (xy -8.46 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d67a417-188f-4014-9282-000265d80009)) + (fp_poly (pts + (xy -22.98 8.48) + (xy -22.98 10.9) + (xy -20.56 10.9) + (xy -20.56 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)) + (fp_poly (pts + (xy 18.16 -18.14) + (xy 18.16 -15.72) + (xy 20.58 -15.72) + (xy 20.58 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)) + (fp_poly (pts + (xy -1.2 20.58) + (xy -1.2 23) + (xy 1.22 23) + (xy 1.22 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)) + (fp_poly (pts + (xy 10.9 3.64) + (xy 10.9 6.06) + (xy 13.32 6.06) + (xy 13.32 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)) + (fp_poly (pts + (xy 6.06 20.58) + (xy 6.06 23) + (xy 8.48 23) + (xy 8.48 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)) + (fp_poly (pts + (xy -13.3 8.48) + (xy -13.3 10.9) + (xy -10.88 10.9) + (xy -10.88 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)) + (fp_poly (pts + (xy -6.04 -25.4) + (xy -6.04 -22.98) + (xy -3.62 -22.98) + (xy -3.62 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)) + (fp_poly (pts + (xy 13.32 -6.04) + (xy 13.32 -3.62) + (xy 15.74 -3.62) + (xy 15.74 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)) + (fp_poly (pts + (xy -15.72 -20.56) + (xy -15.72 -18.14) + (xy -13.3 -18.14) + (xy -13.3 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059)) + (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) (fill solid) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7)) + (fp_poly (pts + (xy 23 1.22) + (xy 23 3.64) + (xy 25.42 3.64) + (xy 25.42 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)) + (fp_poly (pts + (xy 15.74 8.48) + (xy 15.74 10.9) + (xy 18.16 10.9) + (xy 18.16 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)) + (fp_poly (pts + (xy 15.74 20.58) + (xy 15.74 23) + (xy 18.16 23) + (xy 18.16 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)) + (fp_poly (pts + (xy 10.9 13.32) + (xy 10.9 15.74) + (xy 13.32 15.74) + (xy 13.32 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68)) + (fp_poly (pts + (xy 13.32 1.22) + (xy 13.32 3.64) + (xy 15.74 3.64) + (xy 15.74 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)) + (fp_poly (pts + (xy 23 -1.2) + (xy 23 1.22) + (xy 25.42 1.22) + (xy 25.42 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)) + (fp_poly (pts + (xy -6.04 -3.62) + (xy -6.04 -1.2) + (xy -3.62 -1.2) + (xy -3.62 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b)) + (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) (fill solid) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504)) + (fp_poly (pts + (xy -6.04 10.9) + (xy -6.04 13.32) + (xy -3.62 13.32) + (xy -3.62 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)) + (fp_poly (pts + (xy -25.4 23) + (xy -25.4 25.42) + (xy -22.98 25.42) + (xy -22.98 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)) + (fp_poly (pts + (xy -1.2 1.22) + (xy -1.2 3.64) + (xy 1.22 3.64) + (xy 1.22 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf)) + (fp_poly (pts + (xy 23 -25.4) + (xy 23 -22.98) + (xy 25.42 -22.98) + (xy 25.42 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)) + (fp_poly (pts + (xy 10.9 -1.2) + (xy 10.9 1.22) + (xy 13.32 1.22) + (xy 13.32 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4780a290-d25c-4459-9579-eba3f7678762)) + (fp_poly (pts + (xy -13.3 23) + (xy -13.3 25.42) + (xy -10.88 25.42) + (xy -10.88 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)) + (fp_poly (pts + (xy -15.72 18.16) + (xy -15.72 20.58) + (xy -13.3 20.58) + (xy -13.3 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11)) + (fp_poly (pts + (xy 8.48 -10.88) + (xy 8.48 -8.46) + (xy 10.9 -8.46) + (xy 10.9 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)) + (fp_poly (pts + (xy 13.32 6.06) + (xy 13.32 8.48) + (xy 15.74 8.48) + (xy 15.74 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)) + (fp_poly (pts + (xy -15.72 13.32) + (xy -15.72 15.74) + (xy -13.3 15.74) + (xy -13.3 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)) + (fp_poly (pts + (xy -18.14 -10.88) + (xy -18.14 -8.46) + (xy -15.72 -8.46) + (xy -15.72 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)) + (fp_poly (pts + (xy -20.56 23) + (xy -20.56 25.42) + (xy -18.14 25.42) + (xy -18.14 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72)) + (fp_poly (pts + (xy 13.32 -10.88) + (xy 13.32 -8.46) + (xy 15.74 -8.46) + (xy 15.74 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb21471-41be-4be8-9687-66030f97befc)) + (fp_poly (pts + (xy -10.88 20.58) + (xy -10.88 23) + (xy -8.46 23) + (xy -8.46 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)) + (fp_poly (pts + (xy 23 -18.14) + (xy 23 -15.72) + (xy 25.42 -15.72) + (xy 25.42 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)) + (fp_poly (pts + (xy 23 18.16) + (xy 23 20.58) + (xy 25.42 20.58) + (xy 25.42 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 54365317-1355-4216-bb75-829375abc4ec)) + (fp_poly (pts + (xy 20.58 6.06) + (xy 20.58 8.48) + (xy 23 8.48) + (xy 23 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475)) + (fp_poly (pts + (xy 3.64 23) + (xy 3.64 25.42) + (xy 6.06 25.42) + (xy 6.06 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9)) + (fp_poly (pts + (xy 8.48 -20.56) + (xy 8.48 -18.14) + (xy 10.9 -18.14) + (xy 10.9 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313)) + (fp_poly (pts + (xy 8.48 -18.14) + (xy 8.48 -15.72) + (xy 10.9 -15.72) + (xy 10.9 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2)) + (fp_poly (pts + (xy 3.64 -20.56) + (xy 3.64 -18.14) + (xy 6.06 -18.14) + (xy 6.06 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)) + (fp_poly (pts + (xy 8.48 18.16) + (xy 8.48 20.58) + (xy 10.9 20.58) + (xy 10.9 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)) + (fp_poly (pts + (xy -1.2 -10.88) + (xy -1.2 -8.46) + (xy 1.22 -8.46) + (xy 1.22 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)) + (fp_poly (pts + (xy 13.32 3.64) + (xy 13.32 6.06) + (xy 15.74 6.06) + (xy 15.74 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)) + (fp_poly (pts + (xy 13.32 -25.4) + (xy 13.32 -22.98) + (xy 15.74 -22.98) + (xy 15.74 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077)) + (fp_poly (pts + (xy -22.98 -3.62) + (xy -22.98 -1.2) + (xy -20.56 -1.2) + (xy -20.56 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454)) + (fp_poly (pts + (xy 20.58 3.64) + (xy 20.58 6.06) + (xy 23 6.06) + (xy 23 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)) + (fp_poly (pts + (xy -10.88 8.48) + (xy -10.88 10.9) + (xy -8.46 10.9) + (xy -8.46 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6)) + (fp_poly (pts + (xy -18.14 -25.4) + (xy -18.14 -22.98) + (xy -15.72 -22.98) + (xy -15.72 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9)) + (fp_poly (pts + (xy 3.64 1.22) + (xy 3.64 3.64) + (xy 6.06 3.64) + (xy 6.06 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)) + (fp_poly (pts + (xy 18.16 -15.72) + (xy 18.16 -13.3) + (xy 20.58 -13.3) + (xy 20.58 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)) + (fp_poly (pts + (xy -20.56 8.48) + (xy -20.56 10.9) + (xy -18.14 10.9) + (xy -18.14 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66043bca-a260-4915-9fce-8a51d324c687)) + (fp_poly (pts + (xy 20.58 20.58) + (xy 20.58 23) + (xy 23 23) + (xy 23 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66116376-6967-4178-9f23-a26cdeafc400)) + (fp_poly (pts + (xy 18.16 10.9) + (xy 18.16 13.32) + (xy 20.58 13.32) + (xy 20.58 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b)) + (fp_poly (pts + (xy -18.14 -20.56) + (xy -18.14 -18.14) + (xy -15.72 -18.14) + (xy -15.72 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)) + (fp_poly (pts + (xy 15.74 -25.4) + (xy 15.74 -22.98) + (xy 18.16 -22.98) + (xy 18.16 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)) + (fp_poly (pts + (xy -15.72 -6.04) + (xy -15.72 -3.62) + (xy -13.3 -3.62) + (xy -13.3 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 68877d35-b796-44db-9124-b8e744e7412e)) + (fp_poly (pts + (xy 3.64 18.16) + (xy 3.64 20.58) + (xy 6.06 20.58) + (xy 6.06 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)) + (fp_poly (pts + (xy -22.98 3.64) + (xy -22.98 6.06) + (xy -20.56 6.06) + (xy -20.56 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)) + (fp_poly (pts + (xy 15.74 -18.14) + (xy 15.74 -15.72) + (xy 18.16 -15.72) + (xy 18.16 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6)) + (fp_poly (pts + (xy 20.58 10.9) + (xy 20.58 13.32) + (xy 23 13.32) + (xy 23 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)) + (fp_poly (pts + (xy -1.2 -20.56) + (xy -1.2 -18.14) + (xy 1.22 -18.14) + (xy 1.22 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848)) + (fp_poly (pts + (xy 6.06 18.16) + (xy 6.06 20.58) + (xy 8.48 20.58) + (xy 8.48 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)) + (fp_poly (pts + (xy -3.62 -8.46) + (xy -3.62 -6.04) + (xy -1.2 -6.04) + (xy -1.2 -8.46) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047)) + (fp_poly (pts + (xy -10.88 -18.14) + (xy -10.88 -15.72) + (xy -8.46 -15.72) + (xy -8.46 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)) + (fp_poly (pts + (xy 18.16 15.74) + (xy 18.16 18.16) + (xy 20.58 18.16) + (xy 20.58 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)) + (fp_poly (pts + (xy 20.58 -10.88) + (xy 20.58 -8.46) + (xy 23 -8.46) + (xy 23 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6)) + (fp_poly (pts + (xy -1.2 18.16) + (xy -1.2 20.58) + (xy 1.22 20.58) + (xy 1.22 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811)) + (fp_poly (pts + (xy 10.9 23) + (xy 10.9 25.42) + (xy 13.32 25.42) + (xy 13.32 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e)) + (fp_poly (pts + (xy 8.48 -13.3) + (xy 8.48 -10.88) + (xy 10.9 -10.88) + (xy 10.9 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)) + (fp_poly (pts + (xy 13.32 23) + (xy 13.32 25.42) + (xy 15.74 25.42) + (xy 15.74 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21)) + (fp_poly (pts + (xy 18.16 20.58) + (xy 18.16 23) + (xy 20.58 23) + (xy 20.58 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)) + (fp_poly (pts + (xy 15.74 -10.88) + (xy 15.74 -8.46) + (xy 18.16 -8.46) + (xy 18.16 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7599133e-c681-4202-85d9-c20dac196c64)) + (fp_poly (pts + (xy 10.9 1.22) + (xy 10.9 3.64) + (xy 13.32 3.64) + (xy 13.32 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)) + (fp_poly (pts + (xy 13.32 -15.72) + (xy 13.32 -13.3) + (xy 15.74 -13.3) + (xy 15.74 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5)) + (fp_poly (pts + (xy -15.72 23) + (xy -15.72 25.42) + (xy -13.3 25.42) + (xy -13.3 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)) + (fp_poly (pts + (xy -6.04 -15.72) + (xy -6.04 -13.3) + (xy -3.62 -13.3) + (xy -3.62 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)) (fp_poly (pts (xy 8.48 10.9) (xy 8.48 13.32) (xy 10.9 13.32) (xy 10.9 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827)) + (fp_poly (pts + (xy -25.4 8.48) + (xy -25.4 10.9) + (xy -22.98 10.9) + (xy -22.98 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743)) + (fp_poly (pts + (xy 15.74 -20.56) + (xy 15.74 -18.14) + (xy 18.16 -18.14) + (xy 18.16 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)) + (fp_poly (pts + (xy -15.72 1.22) + (xy -15.72 3.64) + (xy -13.3 3.64) + (xy -13.3 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)) + (fp_poly (pts + (xy -25.4 -10.88) + (xy -25.4 -8.46) + (xy -22.98 -8.46) + (xy -22.98 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)) + (fp_poly (pts + (xy 15.74 10.9) + (xy 15.74 13.32) + (xy 18.16 13.32) + (xy 18.16 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)) + (fp_poly (pts + (xy 20.58 -1.2) + (xy 20.58 1.22) + (xy 23 1.22) + (xy 23 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)) + (fp_poly (pts + (xy 18.16 6.06) + (xy 18.16 8.48) + (xy 20.58 8.48) + (xy 20.58 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)) + (fp_poly (pts + (xy 3.64 8.48) + (xy 3.64 10.9) + (xy 6.06 10.9) + (xy 6.06 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)) + (fp_poly (pts + (xy -25.4 18.16) + (xy -25.4 20.58) + (xy -22.98 20.58) + (xy -22.98 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)) (fp_poly (pts (xy -8.46 -6.04) (xy -8.46 -3.62) (xy -6.04 -3.62) (xy -6.04 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff)) + (fp_poly (pts + (xy -25.4 -22.98) + (xy -25.4 -20.56) + (xy -22.98 -20.56) + (xy -22.98 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)) + (fp_poly (pts + (xy -18.14 8.48) + (xy -18.14 10.9) + (xy -15.72 10.9) + (xy -15.72 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 852dabbf-de45-4470-8176-59d37a754407)) + (fp_poly (pts + (xy 13.32 -20.56) + (xy 13.32 -18.14) + (xy 15.74 -18.14) + (xy 15.74 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5)) + (fp_poly (pts + (xy -10.88 -10.88) + (xy -10.88 -8.46) + (xy -8.46 -8.46) + (xy -8.46 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76)) + (fp_poly (pts + (xy 1.22 20.58) + (xy 1.22 23) + (xy 3.64 23) + (xy 3.64 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87371631-aa02-498a-998a-09bdb74784c1)) + (fp_poly (pts + (xy -1.2 -25.4) + (xy -1.2 -22.98) + (xy 1.22 -22.98) + (xy 1.22 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87d7448e-e139-4209-ae0b-372f805267da)) + (fp_poly (pts + (xy 23 -13.3) + (xy 23 -10.88) + (xy 25.42 -10.88) + (xy 25.42 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)) + (fp_poly (pts + (xy -1.2 -3.62) + (xy -1.2 -1.2) + (xy 1.22 -1.2) + (xy 1.22 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)) + (fp_poly (pts + (xy 1.22 1.22) + (xy 1.22 3.64) + (xy 3.64 3.64) + (xy 3.64 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)) + (fp_poly (pts + (xy -25.4 -3.62) + (xy -25.4 -1.2) + (xy -22.98 -1.2) + (xy -22.98 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) + (fp_poly (pts + (xy -20.56 -20.56) + (xy -20.56 -18.14) + (xy -18.14 -18.14) + (xy -18.14 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7)) + (fp_poly (pts + (xy 3.64 3.64) + (xy 3.64 6.06) + (xy 6.06 6.06) + (xy 6.06 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)) + (fp_poly (pts + (xy -20.56 1.22) + (xy -20.56 3.64) + (xy -18.14 3.64) + (xy -18.14 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)) + (fp_poly (pts + (xy -1.2 -8.46) + (xy -1.2 -6.04) + (xy 1.22 -6.04) + (xy 1.22 -8.46) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17)) + (fp_poly (pts + (xy 13.32 10.9) + (xy 13.32 13.32) + (xy 15.74 13.32) + (xy 15.74 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)) + (fp_poly (pts + (xy 8.48 8.48) + (xy 8.48 10.9) + (xy 10.9 10.9) + (xy 10.9 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)) + (fp_poly (pts + (xy -15.72 15.74) + (xy -15.72 18.16) + (xy -13.3 18.16) + (xy -13.3 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3)) + (fp_poly (pts + (xy -10.88 13.32) + (xy -10.88 15.74) + (xy -8.46 15.74) + (xy -8.46 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)) + (fp_poly (pts + (xy -10.88 -13.3) + (xy -10.88 -10.88) + (xy -8.46 -10.88) + (xy -8.46 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 965308c8-e014-459a-b9db-b8493a601c62)) + (fp_poly (pts + (xy 10.9 8.48) + (xy 10.9 10.9) + (xy 13.32 10.9) + (xy 13.32 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)) + (fp_poly (pts + (xy 18.16 -25.4) + (xy 18.16 -22.98) + (xy 20.58 -22.98) + (xy 20.58 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e)) (fp_poly (pts (xy -3.62 6.06) (xy -3.62 8.48) (xy -1.2 8.48) (xy -1.2 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949)) + (fp_poly (pts + (xy -20.56 13.32) + (xy -20.56 15.74) + (xy -18.14 15.74) + (xy -18.14 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d)) + (fp_poly (pts + (xy 18.16 -20.56) + (xy 18.16 -18.14) + (xy 20.58 -18.14) + (xy 20.58 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)) + (fp_poly (pts + (xy 23 3.64) + (xy 23 6.06) + (xy 25.42 6.06) + (xy 25.42 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)) + (fp_poly (pts + (xy -25.4 -6.04) + (xy -25.4 -3.62) + (xy -22.98 -3.62) + (xy -22.98 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940)) + (fp_poly (pts + (xy 8.48 -25.4) + (xy 8.48 -22.98) + (xy 10.9 -22.98) + (xy 10.9 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)) + (fp_poly (pts + (xy -15.72 -3.62) + (xy -15.72 -1.2) + (xy -13.3 -1.2) + (xy -13.3 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a15a7506-eae4-4933-84da-9ad754258706)) + (fp_poly (pts + (xy -18.14 -15.72) + (xy -18.14 -13.3) + (xy -15.72 -13.3) + (xy -15.72 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a17904b9-135e-4dae-ae20-401c7787de72)) + (fp_poly (pts + (xy -3.62 13.32) + (xy -3.62 15.74) + (xy -1.2 15.74) + (xy -1.2 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)) + (fp_poly (pts + (xy 6.06 -6.04) + (xy 6.06 -3.62) + (xy 8.48 -3.62) + (xy 8.48 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)) + (fp_poly (pts + (xy 20.58 18.16) + (xy 20.58 20.58) + (xy 23 20.58) + (xy 23 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)) + (fp_poly (pts + (xy -3.62 1.22) + (xy -3.62 3.64) + (xy -1.2 3.64) + (xy -1.2 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b)) + (fp_poly (pts + (xy -15.72 -10.88) + (xy -15.72 -8.46) + (xy -13.3 -8.46) + (xy -13.3 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222)) + (fp_poly (pts + (xy 18.16 18.16) + (xy 18.16 20.58) + (xy 20.58 20.58) + (xy 20.58 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3)) + (fp_poly (pts + (xy -18.14 13.32) + (xy -18.14 15.74) + (xy -15.72 15.74) + (xy -15.72 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d)) + (fp_poly (pts + (xy 3.64 -22.98) + (xy 3.64 -20.56) + (xy 6.06 -20.56) + (xy 6.06 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)) + (fp_poly (pts + (xy -1.2 -13.3) + (xy -1.2 -10.88) + (xy 1.22 -10.88) + (xy 1.22 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)) + (fp_poly (pts + (xy -25.4 20.58) + (xy -25.4 23) + (xy -22.98 23) + (xy -22.98 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497)) + (fp_poly (pts + (xy -8.46 -1.2) + (xy -8.46 1.22) + (xy -6.04 1.22) + (xy -6.04 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)) + (fp_poly (pts + (xy 1.22 18.16) + (xy 1.22 20.58) + (xy 3.64 20.58) + (xy 3.64 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9)) + (fp_poly (pts + (xy -25.4 -13.3) + (xy -25.4 -10.88) + (xy -22.98 -10.88) + (xy -22.98 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e)) + (fp_poly (pts + (xy -6.04 -20.56) + (xy -6.04 -18.14) + (xy -3.62 -18.14) + (xy -3.62 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)) + (fp_poly (pts + (xy -15.72 8.48) + (xy -15.72 10.9) + (xy -13.3 10.9) + (xy -13.3 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3)) + (fp_poly (pts + (xy 15.74 -15.72) + (xy 15.74 -13.3) + (xy 18.16 -13.3) + (xy 18.16 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)) + (fp_poly (pts + (xy 15.74 3.64) + (xy 15.74 6.06) + (xy 18.16 6.06) + (xy 18.16 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996)) + (fp_poly (pts + (xy -18.14 -6.04) + (xy -18.14 -3.62) + (xy -15.72 -3.62) + (xy -15.72 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e)) (fp_poly (pts (xy 3.64 -1.2) @@ -1188,370 +1187,376 @@ (xy 6.06 -1.2) ) (layer "F.Cu") (width 0) (fill solid) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)) (fp_poly (pts - (xy 20.58 13.32) - (xy 20.58 15.74) - (xy 23 15.74) - (xy 23 13.32) + (xy -1.2 -18.14) + (xy -1.2 -15.72) + (xy 1.22 -15.72) + (xy 1.22 -18.14) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7)) (fp_poly (pts - (xy 13.32 -6.04) - (xy 13.32 -3.62) - (xy 15.74 -3.62) - (xy 15.74 -6.04) + (xy -1.2 3.64) + (xy -1.2 6.06) + (xy 1.22 6.06) + (xy 1.22 3.64) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)) (fp_poly (pts - (xy -1.2 -13.3) - (xy -1.2 -10.88) - (xy 1.22 -10.88) - (xy 1.22 -13.3) + (xy 13.32 8.48) + (xy 13.32 10.9) + (xy 15.74 10.9) + (xy 15.74 8.48) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1)) (fp_poly (pts - (xy -18.14 -10.88) - (xy -18.14 -8.46) - (xy -15.72 -8.46) - (xy -15.72 -10.88) + (xy -6.04 8.48) + (xy -6.04 10.9) + (xy -3.62 10.9) + (xy -3.62 8.48) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78)) (fp_poly (pts - (xy -15.72 -6.04) - (xy -15.72 -3.62) - (xy -13.3 -3.62) - (xy -13.3 -6.04) + (xy -6.04 6.06) + (xy -6.04 8.48) + (xy -3.62 8.48) + (xy -3.62 6.06) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)) (fp_poly (pts - (xy -22.98 -25.4) - (xy -22.98 -22.98) - (xy -20.56 -22.98) - (xy -20.56 -25.4) + (xy -10.88 23) + (xy -10.88 25.42) + (xy -8.46 25.42) + (xy -8.46 23) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d)) (fp_poly (pts - (xy -25.4 -13.3) - (xy -25.4 -10.88) - (xy -22.98 -10.88) - (xy -22.98 -13.3) + (xy -10.88 10.9) + (xy -10.88 13.32) + (xy -8.46 13.32) + (xy -8.46 10.9) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9)) (fp_poly (pts - (xy 20.58 -6.04) - (xy 20.58 -3.62) - (xy 23 -3.62) - (xy 23 -6.04) + (xy -10.88 3.64) + (xy -10.88 6.06) + (xy -8.46 6.06) + (xy -8.46 3.64) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed)) (fp_poly (pts - (xy 8.48 -22.98) - (xy 8.48 -20.56) - (xy 10.9 -20.56) - (xy 10.9 -22.98) + (xy 13.32 18.16) + (xy 13.32 20.58) + (xy 15.74 20.58) + (xy 15.74 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102)) (fp_poly (pts - (xy -3.62 1.22) - (xy -3.62 3.64) - (xy -1.2 3.64) - (xy -1.2 1.22) + (xy 3.64 -3.62) + (xy 3.64 -1.2) + (xy 6.06 -1.2) + (xy 6.06 -3.62) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8)) (fp_poly (pts - (xy 23 3.64) - (xy 23 6.06) - (xy 25.42 6.06) - (xy 25.42 3.64) + (xy -13.3 -6.04) + (xy -13.3 -3.62) + (xy -10.88 -3.62) + (xy -10.88 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b)) (fp_poly (pts - (xy -25.4 -18.14) - (xy -25.4 -15.72) - (xy -22.98 -15.72) - (xy -22.98 -18.14) + (xy -10.88 15.74) + (xy -10.88 18.16) + (xy -8.46 18.16) + (xy -8.46 15.74) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032)) (fp_poly (pts - (xy 23 -1.2) - (xy 23 1.22) - (xy 25.42 1.22) - (xy 25.42 -1.2) + (xy -10.88 -1.2) + (xy -10.88 1.22) + (xy -8.46 1.22) + (xy -8.46 -1.2) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065)) (fp_poly (pts - (xy -18.14 8.48) - (xy -18.14 10.9) - (xy -15.72 10.9) - (xy -15.72 8.48) + (xy -6.04 -10.88) + (xy -6.04 -8.46) + (xy -3.62 -8.46) + (xy -3.62 -10.88) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)) - (fp_poly (pts - (xy -6.04 15.74) - (xy -6.04 18.16) - (xy -3.62 18.16) - (xy -3.62 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)) - (fp_poly (pts - (xy -20.56 1.22) - (xy -20.56 3.64) - (xy -18.14 3.64) - (xy -18.14 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)) - (fp_poly (pts - (xy 10.9 1.22) - (xy 10.9 3.64) - (xy 13.32 3.64) - (xy 13.32 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)) - (fp_poly (pts - (xy 15.74 20.58) - (xy 15.74 23) - (xy 18.16 23) - (xy 18.16 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656)) - (fp_poly (pts - (xy 3.64 8.48) - (xy 3.64 10.9) - (xy 6.06 10.9) - (xy 6.06 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)) - (fp_poly (pts - (xy 3.64 13.32) - (xy 3.64 15.74) - (xy 6.06 15.74) - (xy 6.06 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cb24efdd-07c6-4317-9277-131625b065ac)) - (fp_poly (pts - (xy 20.58 -10.88) - (xy 20.58 -8.46) - (xy 23 -8.46) - (xy 23 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)) - (fp_poly (pts - (xy 13.32 -25.4) - (xy 13.32 -22.98) - (xy 15.74 -22.98) - (xy 15.74 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce)) - (fp_poly (pts - (xy -20.56 13.32) - (xy -20.56 15.74) - (xy -18.14 15.74) - (xy -18.14 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039)) (fp_poly (pts (xy 23 -20.56) (xy 23 -18.14) (xy 25.42 -18.14) (xy 25.42 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)) (fp_poly (pts - (xy -1.2 18.16) - (xy -1.2 20.58) - (xy 1.22 20.58) - (xy 1.22 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)) + (xy -20.56 -1.2) + (xy -20.56 1.22) + (xy -18.14 1.22) + (xy -18.14 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)) (fp_poly (pts - (xy -22.98 23) - (xy -22.98 25.42) - (xy -20.56 25.42) - (xy -20.56 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)) + (xy -13.3 -3.62) + (xy -13.3 -1.2) + (xy -10.88 -1.2) + (xy -10.88 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)) (fp_poly (pts - (xy 18.16 1.22) - (xy 18.16 3.64) - (xy 20.58 3.64) - (xy 20.58 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)) + (xy 10.9 -25.4) + (xy 10.9 -22.98) + (xy 13.32 -22.98) + (xy 13.32 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656)) (fp_poly (pts - (xy 8.48 6.06) - (xy 8.48 8.48) - (xy 10.9 8.48) - (xy 10.9 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)) - (fp_poly (pts - (xy -20.56 -10.88) + (xy -22.98 -10.88) + (xy -22.98 -8.46) (xy -20.56 -8.46) - (xy -18.14 -8.46) - (xy -18.14 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0)) - (fp_poly (pts - (xy -8.46 1.22) - (xy -8.46 3.64) - (xy -6.04 3.64) - (xy -6.04 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)) + (xy -20.56 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)) (fp_poly (pts (xy 13.32 -18.14) (xy 13.32 -15.72) (xy 15.74 -15.72) (xy 15.74 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cb24efdd-07c6-4317-9277-131625b065ac)) (fp_poly (pts - (xy 10.9 -1.2) - (xy 10.9 1.22) - (xy 13.32 1.22) - (xy 13.32 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)) - (fp_poly (pts - (xy 18.16 -25.4) - (xy 18.16 -22.98) - (xy 20.58 -22.98) - (xy 20.58 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a)) - (fp_poly (pts - (xy 18.16 10.9) - (xy 18.16 13.32) - (xy 20.58 13.32) - (xy 20.58 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)) - (fp_poly (pts - (xy 13.32 6.06) + (xy 10.9 6.06) + (xy 10.9 8.48) (xy 13.32 8.48) - (xy 15.74 8.48) - (xy 15.74 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531)) + (xy 13.32 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)) (fp_poly (pts - (xy 20.58 3.64) - (xy 20.58 6.06) - (xy 23 6.06) - (xy 23 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp df32840e-2912-4088-b54c-9a85f64c0265)) + (xy 13.32 20.58) + (xy 13.32 23) + (xy 15.74 23) + (xy 15.74 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce)) (fp_poly (pts - (xy 1.22 -1.2) - (xy 1.22 1.22) - (xy 3.64 1.22) - (xy 3.64 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)) + (xy -15.72 -15.72) + (xy -15.72 -13.3) + (xy -13.3 -13.3) + (xy -13.3 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039)) (fp_poly (pts - (xy 3.64 1.22) - (xy 3.64 3.64) - (xy 6.06 3.64) - (xy 6.06 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) + (xy -6.04 15.74) + (xy -6.04 18.16) + (xy -3.62 18.16) + (xy -3.62 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931)) (fp_poly (pts - (xy -20.56 15.74) - (xy -20.56 18.16) - (xy -18.14 18.16) - (xy -18.14 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415)) - (fp_poly (pts - (xy 8.48 18.16) - (xy 8.48 20.58) - (xy 10.9 20.58) - (xy 10.9 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d)) - (fp_poly (pts - (xy 20.58 10.9) - (xy 20.58 13.32) - (xy 23 13.32) - (xy 23 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)) - (fp_poly (pts - (xy -15.72 -25.4) - (xy -15.72 -22.98) - (xy -13.3 -22.98) - (xy -13.3 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)) - (fp_poly (pts - (xy -25.4 13.32) - (xy -25.4 15.74) - (xy -22.98 15.74) - (xy -22.98 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa)) - (fp_poly (pts - (xy -6.04 -15.72) - (xy -6.04 -13.3) - (xy -3.62 -13.3) - (xy -3.62 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)) - (fp_poly (pts - (xy 8.48 -1.2) - (xy 8.48 1.22) - (xy 10.9 1.22) - (xy 10.9 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)) - (fp_poly (pts - (xy -1.2 -25.4) - (xy -1.2 -22.98) - (xy 1.22 -22.98) - (xy 1.22 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)) - (fp_poly (pts - (xy -22.98 8.48) - (xy -22.98 10.9) - (xy -20.56 10.9) - (xy -20.56 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)) - (fp_poly (pts - (xy -25.4 -6.04) - (xy -25.4 -3.62) - (xy -22.98 -3.62) - (xy -22.98 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)) - (fp_poly (pts - (xy -20.56 23) - (xy -20.56 25.42) - (xy -18.14 25.42) - (xy -18.14 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)) + (xy -10.88 -20.56) + (xy -10.88 -18.14) + (xy -8.46 -18.14) + (xy -8.46 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)) (fp_poly (pts (xy -10.88 -25.4) (xy -10.88 -22.98) (xy -8.46 -22.98) (xy -8.46 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)) (fp_poly (pts - (xy 23 -22.98) - (xy 23 -20.56) - (xy 25.42 -20.56) - (xy 25.42 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506)) - (fp_poly (pts - (xy -15.72 13.32) - (xy -15.72 15.74) - (xy -13.3 15.74) - (xy -13.3 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8)) + (xy -20.56 -3.62) + (xy -20.56 -1.2) + (xy -18.14 -1.2) + (xy -18.14 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)) (fp_poly (pts (xy 23 -10.88) (xy 23 -8.46) (xy 25.42 -8.46) (xy 25.42 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)) + (fp_poly (pts + (xy -3.62 8.48) + (xy -3.62 10.9) + (xy -1.2 10.9) + (xy -1.2 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0)) + (fp_poly (pts + (xy 8.48 -3.62) + (xy 8.48 -1.2) + (xy 10.9 -1.2) + (xy 10.9 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)) + (fp_poly (pts + (xy 3.64 13.32) + (xy 3.64 15.74) + (xy 6.06 15.74) + (xy 6.06 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)) + (fp_poly (pts + (xy -6.04 -1.2) + (xy -6.04 1.22) + (xy -3.62 1.22) + (xy -3.62 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)) + (fp_poly (pts + (xy 8.48 20.58) + (xy 8.48 23) + (xy 10.9 23) + (xy 10.9 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a)) + (fp_poly (pts + (xy 3.64 -15.72) + (xy 3.64 -13.3) + (xy 6.06 -13.3) + (xy 6.06 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)) + (fp_poly (pts + (xy 18.16 -10.88) + (xy 18.16 -8.46) + (xy 20.58 -8.46) + (xy 20.58 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531)) + (fp_poly (pts + (xy -10.88 -6.04) + (xy -10.88 -3.62) + (xy -8.46 -3.62) + (xy -8.46 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp df32840e-2912-4088-b54c-9a85f64c0265)) + (fp_poly (pts + (xy 8.48 -1.2) + (xy 8.48 1.22) + (xy 10.9 1.22) + (xy 10.9 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)) + (fp_poly (pts + (xy 15.74 23) + (xy 15.74 25.42) + (xy 18.16 25.42) + (xy 18.16 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543)) + (fp_poly (pts + (xy -8.46 -3.62) + (xy -8.46 -1.2) + (xy -6.04 -1.2) + (xy -6.04 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) + (fp_poly (pts + (xy -15.72 -18.14) + (xy -15.72 -15.72) + (xy -13.3 -15.72) + (xy -13.3 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415)) + (fp_poly (pts + (xy -25.4 -20.56) + (xy -25.4 -18.14) + (xy -22.98 -18.14) + (xy -22.98 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d)) + (fp_poly (pts + (xy 1.22 -15.72) + (xy 1.22 -13.3) + (xy 3.64 -13.3) + (xy 3.64 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)) + (fp_poly (pts + (xy -18.14 23) + (xy -18.14 25.42) + (xy -15.72 25.42) + (xy -15.72 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)) + (fp_poly (pts + (xy -10.88 -15.72) + (xy -10.88 -13.3) + (xy -8.46 -13.3) + (xy -8.46 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa)) + (fp_poly (pts + (xy 23 10.9) + (xy 23 13.32) + (xy 25.42 13.32) + (xy 25.42 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)) + (fp_poly (pts + (xy 1.22 -1.2) + (xy 1.22 1.22) + (xy 3.64 1.22) + (xy 3.64 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)) + (fp_poly (pts + (xy 23 20.58) + (xy 23 23) + (xy 25.42 23) + (xy 25.42 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)) + (fp_poly (pts + (xy 3.64 -10.88) + (xy 3.64 -8.46) + (xy 6.06 -8.46) + (xy 6.06 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)) + (fp_poly (pts + (xy -1.2 6.06) + (xy -1.2 8.48) + (xy 1.22 8.48) + (xy 1.22 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)) + (fp_poly (pts + (xy -13.3 -25.4) + (xy -13.3 -22.98) + (xy -10.88 -22.98) + (xy -10.88 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)) + (fp_poly (pts + (xy -22.98 23) + (xy -22.98 25.42) + (xy -20.56 25.42) + (xy -20.56 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)) + (fp_poly (pts + (xy 10.9 18.16) + (xy 10.9 20.58) + (xy 13.32 20.58) + (xy 13.32 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506)) + (fp_poly (pts + (xy -20.56 -15.72) + (xy -20.56 -13.3) + (xy -18.14 -13.3) + (xy -18.14 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8)) + (fp_poly (pts + (xy 8.48 6.06) + (xy 8.48 8.48) + (xy 10.9 8.48) + (xy 10.9 6.06) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24)) (fp_poly (pts - (xy -6.04 10.9) - (xy -6.04 13.32) - (xy -3.62 13.32) - (xy -3.62 10.9) + (xy 23 -15.72) + (xy 23 -13.3) + (xy 25.42 -13.3) + (xy 25.42 -15.72) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f3628265-0155-43e2-a467-c40ff783e265)) (fp_poly (pts - (xy 20.58 18.16) - (xy 20.58 20.58) - (xy 23 20.58) - (xy 23 18.16) + (xy 1.22 -22.98) + (xy 1.22 -20.56) + (xy 3.64 -20.56) + (xy 3.64 -22.98) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba)) - (fp_poly (pts - (xy -6.04 23) - (xy -6.04 25.42) - (xy -3.62 25.42) - (xy -3.62 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba)) (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) (fill solid) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba)) + (fp_poly (pts + (xy -6.04 23) + (xy -6.04 25.42) + (xy -3.62 25.42) + (xy -3.62 23) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779)) (fp_poly (pts - (xy 1.22 -20.56) - (xy 1.22 -18.14) - (xy 3.64 -18.14) - (xy 3.64 -20.56) + (xy -18.14 18.16) + (xy -18.14 20.58) + (xy -15.72 20.58) + (xy -15.72 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f)) (fp_poly (pts - (xy 3.64 -20.56) - (xy 3.64 -18.14) - (xy 6.06 -18.14) - (xy 6.06 -20.56) + (xy -20.56 18.16) + (xy -20.56 20.58) + (xy -18.14 20.58) + (xy -18.14 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144)) (fp_poly (pts - (xy -10.88 -18.14) - (xy -10.88 -15.72) - (xy -8.46 -15.72) - (xy -8.46 -18.14) + (xy -25.4 15.74) + (xy -25.4 18.16) + (xy -22.98 18.16) + (xy -22.98 15.74) ) (layer "F.Cu") (width 0) (fill solid) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d)) (fp_poly (pts - (xy 13.32 3.64) - (xy 13.32 6.06) - (xy 15.74 6.06) - (xy 15.74 3.64) + (xy -6.04 -6.04) + (xy -6.04 -3.62) + (xy -3.62 -3.62) + (xy -3.62 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b)) ) @@ -1559,7 +1564,7 @@ (tedit 0) (tstamp 00000000-0000-0000-0000-000061d27619) (at 101.1 79) (attr through_hole) - (fp_text reference "QR***" (at 0 8.75) (layer "F.SilkS") + (fp_text reference "QR2" (at 0 8.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372) ) @@ -1588,1948 +1593,1948 @@ (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce) ) (fp_poly (pts - (xy 2.1 3.3) - (xy 2.1 3.9) - (xy 2.7 3.9) - (xy 2.7 3.3) + (xy -4.5 -3.9) + (xy -4.5 -3.3) + (xy -3.9 -3.3) + (xy -3.9 -3.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583)) (fp_poly (pts - (xy -5.1 -2.7) - (xy -5.1 -2.1) - (xy -4.5 -2.1) - (xy -4.5 -2.7) + (xy 3.9 2.1) + (xy 3.9 2.7) + (xy 4.5 2.7) + (xy 4.5 2.1) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18)) + (fp_poly (pts + (xy 0.3 0.9) + (xy 0.3 1.5) + (xy 0.9 1.5) + (xy 0.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00e38d63-5436-49db-81f5-697421f168fc)) + (fp_poly (pts + (xy 3.3 2.1) + (xy 3.3 2.7) + (xy 3.9 2.7) + (xy 3.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)) + (fp_poly (pts + (xy -0.3 -0.3) + (xy -0.3 0.3) + (xy 0.3 0.3) + (xy 0.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778)) + (fp_poly (pts + (xy -7.5 -5.7) + (xy -7.5 -5.1) + (xy -6.9 -5.1) + (xy -6.9 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)) (fp_poly (pts (xy -3.9 -1.5) (xy -3.9 -0.9) (xy -3.3 -0.9) (xy -3.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00e38d63-5436-49db-81f5-697421f168fc)) - (fp_poly (pts - (xy -3.9 -2.7) - (xy -3.9 -2.1) - (xy -3.3 -2.1) - (xy -3.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)) - (fp_poly (pts - (xy -6.9 -0.3) - (xy -6.9 0.3) - (xy -6.3 0.3) - (xy -6.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778)) - (fp_poly (pts - (xy 3.3 5.1) - (xy 3.3 5.7) - (xy 3.9 5.7) - (xy 3.9 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)) - (fp_poly (pts - (xy 0.3 0.9) - (xy 0.3 1.5) - (xy 0.9 1.5) - (xy 0.9 0.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8)) - (fp_poly (pts - (xy 0.3 -2.7) - (xy 0.3 -2.1) - (xy 0.9 -2.1) - (xy 0.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69)) - (fp_poly (pts - (xy 5.1 5.1) - (xy 5.1 5.7) - (xy 5.7 5.7) - (xy 5.7 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)) - (fp_poly (pts - (xy 4.5 2.7) - (xy 4.5 3.3) - (xy 5.1 3.3) - (xy 5.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)) - (fp_poly (pts - (xy 4.5 3.9) - (xy 4.5 4.5) - (xy 5.1 4.5) - (xy 5.1 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)) - (fp_poly (pts - (xy 4.5 -5.1) - (xy 4.5 -4.5) - (xy 5.1 -4.5) - (xy 5.1 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277)) - (fp_poly (pts - (xy -6.9 -0.9) - (xy -6.9 -0.3) - (xy -6.3 -0.3) - (xy -6.3 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957)) - (fp_poly (pts - (xy -0.9 -7.5) - (xy -0.9 -6.9) - (xy -0.3 -6.9) - (xy -0.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)) - (fp_poly (pts - (xy -3.3 0.9) - (xy -3.3 1.5) - (xy -2.7 1.5) - (xy -2.7 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac)) - (fp_poly (pts - (xy -6.3 -0.3) - (xy -6.3 0.3) - (xy -5.7 0.3) - (xy -5.7 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db)) - (fp_poly (pts - (xy 0.3 1.5) - (xy 0.3 2.1) - (xy 0.9 2.1) - (xy 0.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916)) - (fp_poly (pts - (xy -3.9 6.3) - (xy -3.9 6.9) - (xy -3.3 6.9) - (xy -3.3 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5)) - (fp_poly (pts - (xy -0.9 6.3) - (xy -0.9 6.9) - (xy -0.3 6.9) - (xy -0.3 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)) - (fp_poly (pts - (xy 3.3 2.1) - (xy 3.3 2.7) - (xy 3.9 2.7) - (xy 3.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)) - (fp_poly (pts - (xy 2.7 0.3) - (xy 2.7 0.9) - (xy 3.3 0.9) - (xy 3.3 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)) - (fp_poly (pts - (xy -3.9 -6.3) - (xy -3.9 -5.7) - (xy -3.3 -5.7) - (xy -3.3 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7)) - (fp_poly (pts - (xy -2.7 0.9) - (xy -2.7 1.5) - (xy -2.1 1.5) - (xy -2.1 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)) - (fp_poly (pts - (xy -5.7 2.1) - (xy -5.7 2.7) - (xy -5.1 2.7) - (xy -5.1 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 109caac1-5036-4f23-9a66-f569d871501b)) - (fp_poly (pts - (xy 3.3 -5.1) - (xy 3.3 -4.5) - (xy 3.9 -4.5) - (xy 3.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3)) - (fp_poly (pts - (xy 4.5 -3.9) - (xy 4.5 -3.3) - (xy 5.1 -3.3) - (xy 5.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9)) - (fp_poly (pts - (xy 3.9 -2.7) - (xy 3.9 -2.1) - (xy 4.5 -2.1) - (xy 4.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)) - (fp_poly (pts - (xy -1.5 -1.5) - (xy -1.5 -0.9) - (xy -0.9 -0.9) - (xy -0.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)) - (fp_poly (pts - (xy 3.3 6.9) - (xy 3.3 7.5) - (xy 3.9 7.5) - (xy 3.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)) - (fp_poly (pts - (xy 6.9 -4.5) - (xy 6.9 -3.9) - (xy 7.5 -3.9) - (xy 7.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771)) - (fp_poly (pts - (xy -6.3 5.7) - (xy -6.3 6.3) - (xy -5.7 6.3) - (xy -5.7 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)) - (fp_poly (pts - (xy -7.5 -5.1) - (xy -7.5 -4.5) - (xy -6.9 -4.5) - (xy -6.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0)) - (fp_poly (pts - (xy 3.9 2.1) - (xy 3.9 2.7) - (xy 4.5 2.7) - (xy 4.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)) - (fp_poly (pts - (xy 5.7 -5.1) - (xy 5.7 -4.5) - (xy 6.3 -4.5) - (xy 6.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)) - (fp_poly (pts - (xy -3.9 2.1) - (xy -3.9 2.7) - (xy -3.3 2.7) - (xy -3.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)) - (fp_poly (pts - (xy 2.1 0.3) - (xy 2.1 0.9) - (xy 2.7 0.9) - (xy 2.7 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1c68b844-c861-46b7-b734-0242168a4220)) - (fp_poly (pts - (xy -4.5 1.5) - (xy -4.5 2.1) - (xy -3.9 2.1) - (xy -3.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)) - (fp_poly (pts - (xy -7.5 -6.9) - (xy -7.5 -6.3) - (xy -6.9 -6.3) - (xy -6.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746)) - (fp_poly (pts - (xy -0.9 -1.5) - (xy -0.9 -0.9) - (xy -0.3 -0.9) - (xy -0.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9)) - (fp_poly (pts - (xy -3.9 -5.1) - (xy -3.9 -4.5) - (xy -3.3 -4.5) - (xy -3.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d)) - (fp_poly (pts - (xy -5.1 6.9) - (xy -5.1 7.5) - (xy -4.5 7.5) - (xy -4.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e)) - (fp_poly (pts - (xy -1.5 4.5) - (xy -1.5 5.1) - (xy -0.9 5.1) - (xy -0.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)) - (fp_poly (pts - (xy -5.7 -2.7) - (xy -5.7 -2.1) - (xy -5.1 -2.1) - (xy -5.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273)) - (fp_poly (pts - (xy -7.5 0.3) - (xy -7.5 0.9) - (xy -6.9 0.9) - (xy -6.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3)) - (fp_poly (pts - (xy 5.7 4.5) - (xy 5.7 5.1) - (xy 6.3 5.1) - (xy 6.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25)) - (fp_poly (pts - (xy 2.1 4.5) - (xy 2.1 5.1) - (xy 2.7 5.1) - (xy 2.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5)) - (fp_poly (pts - (xy -3.9 -4.5) - (xy -3.9 -3.9) - (xy -3.3 -3.9) - (xy -3.3 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1)) - (fp_poly (pts - (xy -6.9 3.3) - (xy -6.9 3.9) - (xy -6.3 3.9) - (xy -6.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)) - (fp_poly (pts - (xy -2.7 5.1) - (xy -2.7 5.7) - (xy -2.1 5.7) - (xy -2.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c)) - (fp_poly (pts - (xy -1.5 -0.9) - (xy -1.5 -0.3) - (xy -0.9 -0.3) - (xy -0.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765)) - (fp_poly (pts - (xy -7.5 6.9) - (xy -7.5 7.5) - (xy -6.9 7.5) - (xy -6.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)) - (fp_poly (pts - (xy 2.1 3.9) - (xy 2.1 4.5) - (xy 2.7 4.5) - (xy 2.7 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493)) - (fp_poly (pts - (xy 6.9 -2.7) - (xy 6.9 -2.1) - (xy 7.5 -2.1) - (xy 7.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c)) - (fp_poly (pts - (xy 5.7 -5.7) - (xy 5.7 -5.1) - (xy 6.3 -5.1) - (xy 6.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece)) - (fp_poly (pts - (xy -7.5 6.3) - (xy -7.5 6.9) - (xy -6.9 6.9) - (xy -6.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)) - (fp_poly (pts - (xy 0.9 -7.5) - (xy 0.9 -6.9) - (xy 1.5 -6.9) - (xy 1.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0)) - (fp_poly (pts - (xy 3.3 6.3) - (xy 3.3 6.9) - (xy 3.9 6.9) - (xy 3.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)) - (fp_poly (pts - (xy 2.7 4.5) - (xy 2.7 5.1) - (xy 3.3 5.1) - (xy 3.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43)) - (fp_poly (pts - (xy 0.3 3.3) - (xy 0.3 3.9) - (xy 0.9 3.9) - (xy 0.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)) - (fp_poly (pts - (xy -5.7 5.7) - (xy -5.7 6.3) - (xy -5.1 6.3) - (xy -5.1 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278)) - (fp_poly (pts - (xy 2.1 -6.9) - (xy 2.1 -6.3) - (xy 2.7 -6.3) - (xy 2.7 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225)) - (fp_poly (pts - (xy -3.9 5.7) - (xy -3.9 6.3) - (xy -3.3 6.3) - (xy -3.3 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)) - (fp_poly (pts - (xy -5.7 -7.5) - (xy -5.7 -6.9) - (xy -5.1 -6.9) - (xy -5.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004)) - (fp_poly (pts - (xy -6.3 2.1) - (xy -6.3 2.7) - (xy -5.7 2.7) - (xy -5.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)) - (fp_poly (pts - (xy -5.7 -5.7) - (xy -5.7 -5.1) - (xy -5.1 -5.1) - (xy -5.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7)) - (fp_poly (pts - (xy 3.3 -0.9) - (xy 3.3 -0.3) - (xy 3.9 -0.3) - (xy 3.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)) - (fp_poly (pts - (xy -0.9 -0.3) - (xy -0.9 0.3) - (xy -0.3 0.3) - (xy -0.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)) - (fp_poly (pts - (xy -0.3 -7.5) - (xy -0.3 -6.9) - (xy 0.3 -6.9) - (xy 0.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b)) - (fp_poly (pts - (xy -2.7 -0.3) - (xy -2.7 0.3) - (xy -2.1 0.3) - (xy -2.1 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)) - (fp_poly (pts - (xy 4.5 3.3) - (xy 4.5 3.9) - (xy 5.1 3.9) - (xy 5.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)) - (fp_poly (pts - (xy 0.3 6.3) - (xy 0.3 6.9) - (xy 0.9 6.9) - (xy 0.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)) - (fp_poly (pts - (xy 0.9 -2.1) - (xy 0.9 -1.5) - (xy 1.5 -1.5) - (xy 1.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9)) - (fp_poly (pts - (xy -2.7 -1.5) - (xy -2.7 -0.9) - (xy -2.1 -0.9) - (xy -2.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)) - (fp_poly (pts - (xy 3.3 -5.7) - (xy 3.3 -5.1) - (xy 3.9 -5.1) - (xy 3.9 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)) - (fp_poly (pts - (xy 3.3 -6.9) - (xy 3.3 -6.3) - (xy 3.9 -6.3) - (xy 3.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5)) - (fp_poly (pts - (xy -1.5 -3.9) - (xy -1.5 -3.3) - (xy -0.9 -3.3) - (xy -0.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49)) - (fp_poly (pts - (xy 3.9 6.3) - (xy 3.9 6.9) - (xy 4.5 6.9) - (xy 4.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)) - (fp_poly (pts - (xy 3.9 4.5) - (xy 3.9 5.1) - (xy 4.5 5.1) - (xy 4.5 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)) - (fp_poly (pts - (xy -2.1 0.9) - (xy -2.1 1.5) - (xy -1.5 1.5) - (xy -1.5 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c)) - (fp_poly (pts - (xy 1.5 -2.7) - (xy 1.5 -2.1) - (xy 2.1 -2.1) - (xy 2.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)) - (fp_poly (pts - (xy 0.9 -6.3) - (xy 0.9 -5.7) - (xy 1.5 -5.7) - (xy 1.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885)) - (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) (fill solid) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)) - (fp_poly (pts - (xy 0.9 -5.1) - (xy 0.9 -4.5) - (xy 1.5 -4.5) - (xy 1.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa)) - (fp_poly (pts - (xy -7.5 -4.5) - (xy -7.5 -3.9) - (xy -6.9 -3.9) - (xy -6.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 45884597-7014-4461-83ee-9975c42b9a53)) - (fp_poly (pts - (xy -7.5 5.7) - (xy -7.5 6.3) - (xy -6.9 6.3) - (xy -6.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)) - (fp_poly (pts - (xy 6.9 -3.9) - (xy 6.9 -3.3) - (xy 7.5 -3.3) - (xy 7.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)) - (fp_poly (pts - (xy 5.7 -3.9) - (xy 5.7 -3.3) - (xy 6.3 -3.3) - (xy 6.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59)) - (fp_poly (pts - (xy -1.5 1.5) - (xy -1.5 2.1) - (xy -0.9 2.1) - (xy -0.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3)) - (fp_poly (pts - (xy 1.5 0.3) - (xy 1.5 0.9) - (xy 2.1 0.9) - (xy 2.1 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54)) - (fp_poly (pts - (xy 2.1 -3.3) - (xy 2.1 -2.7) - (xy 2.7 -2.7) - (xy 2.7 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)) - (fp_poly (pts - (xy 4.5 -7.5) - (xy 4.5 -6.9) - (xy 5.1 -6.9) - (xy 5.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)) - (fp_poly (pts - (xy -6.3 -5.7) - (xy -6.3 -5.1) - (xy -5.7 -5.1) - (xy -5.7 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)) - (fp_poly (pts - (xy -2.7 -3.3) - (xy -2.7 -2.7) - (xy -2.1 -2.7) - (xy -2.1 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126)) - (fp_poly (pts - (xy -6.9 -3.9) - (xy -6.9 -3.3) - (xy -6.3 -3.3) - (xy -6.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b)) - (fp_poly (pts - (xy 5.1 3.9) - (xy 5.1 4.5) - (xy 5.7 4.5) - (xy 5.7 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)) - (fp_poly (pts - (xy -5.1 -5.7) - (xy -5.1 -5.1) - (xy -4.5 -5.1) - (xy -4.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6)) - (fp_poly (pts - (xy 0.3 -1.5) - (xy 0.3 -0.9) - (xy 0.9 -0.9) - (xy 0.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)) - (fp_poly (pts - (xy 1.5 3.9) - (xy 1.5 4.5) - (xy 2.1 4.5) - (xy 2.1 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a)) - (fp_poly (pts - (xy 1.5 4.5) - (xy 1.5 5.1) - (xy 2.1 5.1) - (xy 2.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)) - (fp_poly (pts - (xy -6.3 -5.1) - (xy -6.3 -4.5) - (xy -5.7 -4.5) - (xy -5.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 54212c01-b363-47b8-a145-45c40df316f4)) - (fp_poly (pts - (xy -2.7 4.5) - (xy -2.7 5.1) - (xy -2.1 5.1) - (xy -2.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)) - (fp_poly (pts - (xy -3.9 -7.5) - (xy -3.9 -6.9) - (xy -3.3 -6.9) - (xy -3.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c)) - (fp_poly (pts - (xy -0.3 5.1) - (xy -0.3 5.7) - (xy 0.3 5.7) - (xy 0.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)) - (fp_poly (pts - (xy -0.3 4.5) - (xy -0.3 5.1) - (xy 0.3 5.1) - (xy 0.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)) - (fp_poly (pts - (xy -5.7 4.5) - (xy -5.7 5.1) - (xy -5.1 5.1) - (xy -5.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367)) - (fp_poly (pts - (xy -7.5 4.5) - (xy -7.5 5.1) - (xy -6.9 5.1) - (xy -6.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f)) - (fp_poly (pts - (xy -5.1 -7.5) - (xy -5.1 -6.9) - (xy -4.5 -6.9) - (xy -4.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615)) - (fp_poly (pts - (xy 6.9 -7.5) - (xy 6.9 -6.9) - (xy 7.5 -6.9) - (xy 7.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)) - (fp_poly (pts - (xy 2.1 6.3) - (xy 2.1 6.9) - (xy 2.7 6.9) - (xy 2.7 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)) - (fp_poly (pts - (xy -0.9 -5.7) - (xy -0.9 -5.1) - (xy -0.3 -5.1) - (xy -0.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)) - (fp_poly (pts - (xy -5.7 5.1) - (xy -5.7 5.7) - (xy -5.1 5.7) - (xy -5.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573)) - (fp_poly (pts - (xy 4.5 2.1) - (xy 4.5 2.7) - (xy 5.1 2.7) - (xy 5.1 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)) - (fp_poly (pts - (xy -4.5 3.3) - (xy -4.5 3.9) - (xy -3.9 3.9) - (xy -3.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)) - (fp_poly (pts - (xy 1.5 -3.3) - (xy 1.5 -2.7) - (xy 2.1 -2.7) - (xy 2.1 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)) - (fp_poly (pts - (xy -1.5 -2.1) - (xy -1.5 -1.5) - (xy -0.9 -1.5) - (xy -0.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d)) - (fp_poly (pts - (xy 4.5 4.5) - (xy 4.5 5.1) - (xy 5.1 5.1) - (xy 5.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)) - (fp_poly (pts - (xy -2.7 -2.1) - (xy -2.7 -1.5) - (xy -2.1 -1.5) - (xy -2.1 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)) - (fp_poly (pts - (xy 6.3 3.9) - (xy 6.3 4.5) - (xy 6.9 4.5) - (xy 6.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f)) - (fp_poly (pts - (xy -0.9 1.5) - (xy -0.9 2.1) - (xy -0.3 2.1) - (xy -0.3 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd)) - (fp_poly (pts - (xy 2.1 -4.5) - (xy 2.1 -3.9) - (xy 2.7 -3.9) - (xy 2.7 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f)) - (fp_poly (pts - (xy -6.3 3.3) - (xy -6.3 3.9) - (xy -5.7 3.9) - (xy -5.7 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)) - (fp_poly (pts - (xy -0.9 2.7) - (xy -0.9 3.3) - (xy -0.3 3.3) - (xy -0.3 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)) - (fp_poly (pts - (xy 5.7 -1.5) - (xy 5.7 -0.9) - (xy 6.3 -0.9) - (xy 6.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff)) - (fp_poly (pts - (xy 5.1 4.5) - (xy 5.1 5.1) - (xy 5.7 5.1) - (xy 5.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)) - (fp_poly (pts - (xy 4.5 -1.5) - (xy 4.5 -0.9) - (xy 5.1 -0.9) - (xy 5.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8)) - (fp_poly (pts - (xy -4.5 -0.9) - (xy -4.5 -0.3) - (xy -3.9 -0.3) - (xy -3.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8)) - (fp_poly (pts - (xy 5.1 6.3) - (xy 5.1 6.9) - (xy 5.7 6.9) - (xy 5.7 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311)) - (fp_poly (pts - (xy 5.1 -7.5) - (xy 5.1 -6.9) - (xy 5.7 -6.9) - (xy 5.7 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a)) - (fp_poly (pts - (xy -5.1 1.5) - (xy -5.1 2.1) - (xy -4.5 2.1) - (xy -4.5 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)) - (fp_poly (pts - (xy 2.1 -2.1) - (xy 2.1 -1.5) - (xy 2.7 -1.5) - (xy 2.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)) - (fp_poly (pts - (xy -1.5 3.3) - (xy -1.5 3.9) - (xy -0.9 3.9) - (xy -0.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47)) - (fp_poly (pts - (xy -7.5 -0.9) - (xy -7.5 -0.3) - (xy -6.9 -0.3) - (xy -6.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71989e06-8659-4605-b2da-4f729cc41263)) - (fp_poly (pts - (xy 4.5 -6.3) - (xy 4.5 -5.7) - (xy 5.1 -5.7) - (xy 5.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3)) - (fp_poly (pts - (xy 5.7 -2.7) - (xy 5.7 -2.1) - (xy 6.3 -2.1) - (xy 6.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769)) - (fp_poly (pts - (xy -5.1 5.1) - (xy -5.1 5.7) - (xy -4.5 5.7) - (xy -4.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9)) - (fp_poly (pts - (xy 3.9 -7.5) - (xy 3.9 -6.9) - (xy 4.5 -6.9) - (xy 4.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae)) - (fp_poly (pts - (xy -1.5 0.3) - (xy -1.5 0.9) - (xy -0.9 0.9) - (xy -0.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)) - (fp_poly (pts - (xy 3.3 -2.7) - (xy 3.3 -2.1) - (xy 3.9 -2.1) - (xy 3.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)) - (fp_poly (pts - (xy -0.9 -5.1) - (xy -0.9 -4.5) - (xy -0.3 -4.5) - (xy -0.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a)) - (fp_poly (pts - (xy -7.5 1.5) - (xy -7.5 2.1) - (xy -6.9 2.1) - (xy -6.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b)) - (fp_poly (pts - (xy -4.5 6.9) - (xy -4.5 7.5) - (xy -3.9 7.5) - (xy -3.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64)) - (fp_poly (pts - (xy -3.9 3.3) - (xy -3.9 3.9) - (xy -3.3 3.9) - (xy -3.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae)) - (fp_poly (pts - (xy 1.5 5.1) - (xy 1.5 5.7) - (xy 2.1 5.7) - (xy 2.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)) - (fp_poly (pts - (xy -5.1 -5.1) - (xy -5.1 -4.5) - (xy -4.5 -4.5) - (xy -4.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041)) - (fp_poly (pts - (xy 0.3 2.1) - (xy 0.3 2.7) - (xy 0.9 2.7) - (xy 0.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92)) - (fp_poly (pts - (xy -5.7 6.9) - (xy -5.7 7.5) - (xy -5.1 7.5) - (xy -5.1 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636)) - (fp_poly (pts - (xy 1.5 6.9) - (xy 1.5 7.5) - (xy 2.1 7.5) - (xy 2.1 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)) - (fp_poly (pts - (xy -5.7 0.9) - (xy -5.7 1.5) - (xy -5.1 1.5) - (xy -5.1 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)) - (fp_poly (pts - (xy -7.5 5.1) - (xy -7.5 5.7) - (xy -6.9 5.7) - (xy -6.9 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 81a15393-727e-448b-a777-b18773023d89)) - (fp_poly (pts - (xy 0.3 6.9) - (xy 0.3 7.5) - (xy 0.9 7.5) - (xy 0.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)) - (fp_poly (pts - (xy -7.5 -5.7) - (xy -7.5 -5.1) - (xy -6.9 -5.1) - (xy -6.9 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9)) - (fp_poly (pts - (xy -3.9 -0.3) - (xy -3.9 0.3) - (xy -3.3 0.3) - (xy -3.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)) - (fp_poly (pts - (xy 5.1 -5.7) - (xy 5.1 -5.1) - (xy 5.7 -5.1) - (xy 5.7 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759)) - (fp_poly (pts - (xy 5.7 3.3) - (xy 5.7 3.9) - (xy 6.3 3.9) - (xy 6.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)) - (fp_poly (pts - (xy -2.7 -6.9) - (xy -2.7 -6.3) - (xy -2.1 -6.3) - (xy -2.1 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)) - (fp_poly (pts - (xy 3.3 -0.3) - (xy 3.3 0.3) - (xy 3.9 0.3) - (xy 3.9 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)) - (fp_poly (pts - (xy 4.5 -0.3) - (xy 4.5 0.3) - (xy 5.1 0.3) - (xy 5.1 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)) - (fp_poly (pts - (xy -0.9 5.1) - (xy -0.9 5.7) - (xy -0.3 5.7) - (xy -0.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49)) - (fp_poly (pts - (xy -0.9 3.9) - (xy -0.9 4.5) - (xy -0.3 4.5) - (xy -0.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)) - (fp_poly (pts - (xy -5.1 5.7) - (xy -5.1 6.3) - (xy -4.5 6.3) - (xy -4.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)) - (fp_poly (pts - (xy -7.5 2.1) - (xy -7.5 2.7) - (xy -6.9 2.7) - (xy -6.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23)) - (fp_poly (pts - (xy 6.9 6.3) - (xy 6.9 6.9) - (xy 7.5 6.9) - (xy 7.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42)) - (fp_poly (pts - (xy 6.9 -6.3) - (xy 6.9 -5.7) - (xy 7.5 -5.7) - (xy 7.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)) - (fp_poly (pts - (xy 0.9 -1.5) - (xy 0.9 -0.9) - (xy 1.5 -0.9) - (xy 1.5 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380)) - (fp_poly (pts - (xy 2.7 -2.7) - (xy 2.7 -2.1) - (xy 3.3 -2.1) - (xy 3.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953)) - (fp_poly (pts - (xy -5.1 -3.9) - (xy -5.1 -3.3) - (xy -4.5 -3.3) - (xy -4.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)) - (fp_poly (pts - (xy 1.5 -1.5) - (xy 1.5 -0.9) - (xy 2.1 -0.9) - (xy 2.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)) - (fp_poly (pts - (xy -2.7 -3.9) - (xy -2.7 -3.3) - (xy -2.1 -3.3) - (xy -2.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8)) - (fp_poly (pts - (xy -0.3 -3.3) - (xy -0.3 -2.7) - (xy 0.3 -2.7) - (xy 0.3 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908)) - (fp_poly (pts - (xy -6.9 6.9) - (xy -6.9 7.5) - (xy -6.3 7.5) - (xy -6.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)) - (fp_poly (pts - (xy 3.3 3.3) - (xy 3.3 3.9) - (xy 3.9 3.9) - (xy 3.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)) - (fp_poly (pts - (xy -3.9 -5.7) - (xy -3.9 -5.1) - (xy -3.3 -5.1) - (xy -3.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)) - (fp_poly (pts - (xy -6.3 4.5) - (xy -6.3 5.1) - (xy -5.7 5.1) - (xy -5.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d)) - (fp_poly (pts - (xy 5.7 -6.3) - (xy 5.7 -5.7) - (xy 6.3 -5.7) - (xy 6.3 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935057d5-6882-4c15-9a35-54677912ba12)) - (fp_poly (pts - (xy 4.5 5.1) - (xy 4.5 5.7) - (xy 5.1 5.7) - (xy 5.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)) - (fp_poly (pts - (xy 1.5 2.7) - (xy 1.5 3.3) - (xy 2.1 3.3) - (xy 2.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)) - (fp_poly (pts - (xy 0.9 -4.5) - (xy 0.9 -3.9) - (xy 1.5 -3.9) - (xy 1.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)) - (fp_poly (pts - (xy 4.5 -5.7) - (xy 4.5 -5.1) - (xy 5.1 -5.1) - (xy 5.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145)) - (fp_poly (pts - (xy 0.9 -3.9) - (xy 0.9 -3.3) - (xy 1.5 -3.3) - (xy 1.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)) - (fp_poly (pts - (xy -1.5 -5.1) - (xy -1.5 -4.5) - (xy -0.9 -4.5) - (xy -0.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c)) - (fp_poly (pts - (xy 3.9 -3.9) - (xy 3.9 -3.3) - (xy 4.5 -3.3) - (xy 4.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790)) - (fp_poly (pts - (xy 2.7 2.1) - (xy 2.7 2.7) - (xy 3.3 2.7) - (xy 3.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)) - (fp_poly (pts - (xy -5.7 -5.1) - (xy -5.7 -4.5) - (xy -5.1 -4.5) - (xy -5.1 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656)) - (fp_poly (pts - (xy 6.9 -1.5) - (xy 6.9 -0.9) - (xy 7.5 -0.9) - (xy 7.5 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422)) - (fp_poly (pts - (xy 6.3 -7.5) - (xy 6.3 -6.9) - (xy 6.9 -6.9) - (xy 6.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b)) - (fp_poly (pts - (xy -6.3 -3.9) - (xy -6.3 -3.3) - (xy -5.7 -3.3) - (xy -5.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b)) - (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) (fill solid) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)) - (fp_poly (pts - (xy -7.5 -2.1) - (xy -7.5 -1.5) - (xy -6.9 -1.5) - (xy -6.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68)) - (fp_poly (pts - (xy -0.3 3.9) - (xy -0.3 4.5) - (xy 0.3 4.5) - (xy 0.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)) - (fp_poly (pts - (xy 1.5 -5.7) - (xy 1.5 -5.1) - (xy 2.1 -5.1) - (xy 2.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)) - (fp_poly (pts - (xy -5.1 0.3) - (xy -5.1 0.9) - (xy -4.5 0.9) - (xy -4.5 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8)) - (fp_poly (pts - (xy -0.3 -3.9) - (xy -0.3 -3.3) - (xy 0.3 -3.3) - (xy 0.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)) - (fp_poly (pts - (xy -7.5 3.3) - (xy -7.5 3.9) - (xy -6.9 3.9) - (xy -6.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)) - (fp_poly (pts - (xy -3.9 4.5) - (xy -3.9 5.1) - (xy -3.3 5.1) - (xy -3.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)) - (fp_poly (pts - (xy 6.3 4.5) - (xy 6.3 5.1) - (xy 6.9 5.1) - (xy 6.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114)) - (fp_poly (pts - (xy 5.7 2.1) - (xy 5.7 2.7) - (xy 6.3 2.7) - (xy 6.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)) - (fp_poly (pts - (xy -2.1 5.1) - (xy -2.1 5.7) - (xy -1.5 5.7) - (xy -1.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269)) - (fp_poly (pts - (xy -2.1 6.9) - (xy -2.1 7.5) - (xy -1.5 7.5) - (xy -1.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)) - (fp_poly (pts - (xy 5.1 2.7) - (xy 5.1 3.3) - (xy 5.7 3.3) - (xy 5.7 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)) - (fp_poly (pts - (xy 0.9 -0.3) - (xy 0.9 0.3) - (xy 1.5 0.3) - (xy 1.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6)) - (fp_poly (pts - (xy -2.7 -6.3) - (xy -2.7 -5.7) - (xy -2.1 -5.7) - (xy -2.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)) - (fp_poly (pts - (xy -3.9 6.9) - (xy -3.9 7.5) - (xy -3.3 7.5) - (xy -3.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)) - (fp_poly (pts - (xy 0.3 -3.3) - (xy 0.3 -2.7) - (xy 0.9 -2.7) - (xy 0.9 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83)) - (fp_poly (pts - (xy -0.3 -0.9) - (xy -0.3 -0.3) - (xy 0.3 -0.3) - (xy 0.3 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75)) - (fp_poly (pts - (xy -2.7 -4.5) - (xy -2.7 -3.9) - (xy -2.1 -3.9) - (xy -2.1 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd)) - (fp_poly (pts - (xy -5.1 -2.1) - (xy -5.1 -1.5) - (xy -4.5 -1.5) - (xy -4.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp af347946-e3da-4427-87ab-77b747929f50)) - (fp_poly (pts - (xy 3.3 -3.9) - (xy 3.3 -3.3) - (xy 3.9 -3.3) - (xy 3.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe)) - (fp_poly (pts - (xy 5.1 -5.1) - (xy 5.1 -4.5) - (xy 5.7 -4.5) - (xy 5.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)) - (fp_poly (pts - (xy -2.1 6.3) - (xy -2.1 6.9) - (xy -1.5 6.9) - (xy -1.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)) - (fp_poly (pts - (xy 6.3 -3.9) - (xy 6.3 -3.3) - (xy 6.9 -3.3) - (xy 6.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca)) - (fp_poly (pts - (xy -1.5 3.9) - (xy -1.5 4.5) - (xy -0.9 4.5) - (xy -0.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)) - (fp_poly (pts - (xy -6.3 1.5) - (xy -6.3 2.1) - (xy -5.7 2.1) - (xy -5.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc)) - (fp_poly (pts - (xy 3.3 -6.3) - (xy 3.3 -5.7) - (xy 3.9 -5.7) - (xy 3.9 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)) - (fp_poly (pts - (xy 0.9 0.3) - (xy 0.9 0.9) - (xy 1.5 0.9) - (xy 1.5 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b5071759-a4d7-4769-be02-251f23cd4454)) - (fp_poly (pts - (xy -6.3 -2.7) - (xy -6.3 -2.1) - (xy -5.7 -2.1) - (xy -5.7 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)) - (fp_poly (pts - (xy 0.9 2.7) - (xy 0.9 3.3) - (xy 1.5 3.3) - (xy 1.5 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1)) - (fp_poly (pts - (xy -4.5 -2.1) - (xy -4.5 -1.5) - (xy -3.9 -1.5) - (xy -3.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6cd701f-4223-4e72-a305-466869ccb250)) - (fp_poly (pts - (xy -5.7 3.3) - (xy -5.7 3.9) - (xy -5.1 3.9) - (xy -5.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91)) - (fp_poly (pts - (xy 3.3 0.9) - (xy 3.3 1.5) - (xy 3.9 1.5) - (xy 3.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120)) - (fp_poly (pts - (xy -1.5 0.9) - (xy -1.5 1.5) - (xy -0.9 1.5) - (xy -0.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)) - (fp_poly (pts - (xy -2.1 -0.3) - (xy -2.1 0.3) - (xy -1.5 0.3) - (xy -1.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)) - (fp_poly (pts - (xy -2.7 -2.7) - (xy -2.7 -2.1) - (xy -2.1 -2.1) - (xy -2.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)) - (fp_poly (pts - (xy -2.7 5.7) - (xy -2.7 6.3) - (xy -2.1 6.3) - (xy -2.1 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3)) - (fp_poly (pts - (xy -2.7 -7.5) - (xy -2.7 -6.9) - (xy -2.1 -6.9) - (xy -2.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b)) - (fp_poly (pts - (xy -2.1 5.7) - (xy -2.1 6.3) - (xy -1.5 6.3) - (xy -1.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb)) - (fp_poly (pts - (xy -0.3 0.9) - (xy -0.3 1.5) - (xy 0.3 1.5) - (xy 0.3 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb)) - (fp_poly (pts - (xy -5.1 -6.3) - (xy -5.1 -5.7) - (xy -4.5 -5.7) - (xy -4.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa)) - (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) (fill solid) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a)) - (fp_poly (pts - (xy 3.3 4.5) - (xy 3.3 5.1) - (xy 3.9 5.1) - (xy 3.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c09938fd-06b9-4771-9f63-2311626243b3)) - (fp_poly (pts - (xy 0.3 -2.1) - (xy 0.3 -1.5) - (xy 0.9 -1.5) - (xy 0.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)) - (fp_poly (pts - (xy 6.9 3.3) - (xy 6.9 3.9) - (xy 7.5 3.9) - (xy 7.5 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b)) - (fp_poly (pts - (xy -3.9 5.1) - (xy -3.9 5.7) - (xy -3.3 5.7) - (xy -3.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee)) - (fp_poly (pts - (xy 6.3 3.3) - (xy 6.3 3.9) - (xy 6.9 3.9) - (xy 6.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865)) - (fp_poly (pts - (xy -6.3 -7.5) - (xy -6.3 -6.9) - (xy -5.7 -6.9) - (xy -5.7 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)) - (fp_poly (pts - (xy -2.1 -4.5) - (xy -2.1 -3.9) - (xy -1.5 -3.9) - (xy -1.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9)) - (fp_poly (pts - (xy 1.5 -0.9) - (xy 1.5 -0.3) - (xy 2.1 -0.3) - (xy 2.1 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9)) - (fp_poly (pts - (xy 5.7 -7.5) - (xy 5.7 -6.9) - (xy 6.3 -6.9) - (xy 6.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)) - (fp_poly (pts - (xy 6.9 -5.1) - (xy 6.9 -4.5) - (xy 7.5 -4.5) - (xy 7.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2)) - (fp_poly (pts - (xy 6.9 0.9) - (xy 6.9 1.5) - (xy 7.5 1.5) - (xy 7.5 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb)) - (fp_poly (pts - (xy 0.3 -0.9) - (xy 0.3 -0.3) - (xy 0.9 -0.3) - (xy 0.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995)) - (fp_poly (pts - (xy -2.1 -5.7) - (xy -2.1 -5.1) - (xy -1.5 -5.1) - (xy -1.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604)) - (fp_poly (pts - (xy -2.1 -2.7) - (xy -2.1 -2.1) - (xy -1.5 -2.1) - (xy -1.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f)) - (fp_poly (pts - (xy 2.1 -3.9) - (xy 2.1 -3.3) - (xy 2.7 -3.3) - (xy 2.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef)) - (fp_poly (pts - (xy 0.3 5.7) - (xy 0.3 6.3) - (xy 0.9 6.3) - (xy 0.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63)) - (fp_poly (pts - (xy -1.5 -7.5) - (xy -1.5 -6.9) - (xy -0.9 -6.9) - (xy -0.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2)) - (fp_poly (pts - (xy 0.3 0.3) - (xy 0.3 0.9) - (xy 0.9 0.9) - (xy 0.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50)) - (fp_poly (pts - (xy 6.9 5.1) - (xy 6.9 5.7) - (xy 7.5 5.7) - (xy 7.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea)) - (fp_poly (pts - (xy 0.3 -7.5) - (xy 0.3 -6.9) - (xy 0.9 -6.9) - (xy 0.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213)) - (fp_poly (pts - (xy -0.9 4.5) - (xy -0.9 5.1) - (xy -0.3 5.1) - (xy -0.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510)) - (fp_poly (pts - (xy 0.9 -6.9) - (xy 0.9 -6.3) - (xy 1.5 -6.3) - (xy 1.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7)) - (fp_poly (pts - (xy 5.1 -3.9) - (xy 5.1 -3.3) - (xy 5.7 -3.3) - (xy 5.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc15f583-a41b-43af-ba94-a75455506a96)) - (fp_poly (pts - (xy 2.1 -6.3) - (xy 2.1 -5.7) - (xy 2.7 -5.7) - (xy 2.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d)) - (fp_poly (pts - (xy 0.3 -4.5) - (xy 0.3 -3.9) - (xy 0.9 -3.9) - (xy 0.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)) - (fp_poly (pts - (xy 1.5 3.3) - (xy 1.5 3.9) - (xy 2.1 3.9) - (xy 2.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce)) - (fp_poly (pts - (xy 5.1 5.7) - (xy 5.1 6.3) - (xy 5.7 6.3) - (xy 5.7 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)) - (fp_poly (pts - (xy 3.3 -4.5) - (xy 3.3 -3.9) - (xy 3.9 -3.9) - (xy 3.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)) - (fp_poly (pts - (xy 6.9 5.7) - (xy 6.9 6.3) - (xy 7.5 6.3) - (xy 7.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)) - (fp_poly (pts - (xy 5.7 -0.3) - (xy 5.7 0.3) - (xy 6.3 0.3) - (xy 6.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)) - (fp_poly (pts - (xy -7.5 0.9) - (xy -7.5 1.5) - (xy -6.9 1.5) - (xy -6.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150)) - (fp_poly (pts - (xy 6.9 3.9) - (xy 6.9 4.5) - (xy 7.5 4.5) - (xy 7.5 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)) - (fp_poly (pts - (xy -7.5 -6.3) - (xy -7.5 -5.7) - (xy -6.9 -5.7) - (xy -6.9 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88)) - (fp_poly (pts - (xy 2.1 -5.1) - (xy 2.1 -4.5) - (xy 2.7 -4.5) - (xy 2.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6)) - (fp_poly (pts - (xy 0.3 -6.9) - (xy 0.3 -6.3) - (xy 0.9 -6.3) - (xy 0.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)) - (fp_poly (pts - (xy 0.9 5.7) - (xy 0.9 6.3) - (xy 1.5 6.3) - (xy 1.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504)) - (fp_poly (pts - (xy 3.3 -1.5) - (xy 3.3 -0.9) - (xy 3.9 -0.9) - (xy 3.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)) - (fp_poly (pts - (xy -6.3 6.9) - (xy -6.3 7.5) - (xy -5.7 7.5) - (xy -5.7 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b)) - (fp_poly (pts - (xy -3.3 -2.1) - (xy -3.3 -1.5) - (xy -2.7 -1.5) - (xy -2.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86)) - (fp_poly (pts - (xy -1.5 6.9) - (xy -1.5 7.5) - (xy -0.9 7.5) - (xy -0.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)) - (fp_poly (pts - (xy 6.3 -0.9) - (xy 6.3 -0.3) - (xy 6.9 -0.3) - (xy 6.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)) - (fp_poly (pts - (xy -0.3 -5.7) - (xy -0.3 -5.1) - (xy 0.3 -5.1) - (xy 0.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba)) - (fp_poly (pts - (xy 2.1 2.7) - (xy 2.1 3.3) - (xy 2.7 3.3) - (xy 2.7 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df)) - (fp_poly (pts - (xy 5.1 -6.3) - (xy 5.1 -5.7) - (xy 5.7 -5.7) - (xy 5.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e091e263-c616-48ef-a460-465c70218987)) - (fp_poly (pts - (xy -3.9 0.9) - (xy -3.9 1.5) - (xy -3.3 1.5) - (xy -3.3 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35)) - (fp_poly (pts - (xy -0.3 6.9) - (xy -0.3 7.5) - (xy 0.3 7.5) - (xy 0.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1535036-5d36-405f-bb86-3819621c4f23)) - (fp_poly (pts - (xy 0.3 -5.1) - (xy 0.3 -4.5) - (xy 0.9 -4.5) - (xy 0.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)) - (fp_poly (pts - (xy 3.9 -0.3) - (xy 3.9 0.3) - (xy 4.5 0.3) - (xy 4.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)) - (fp_poly (pts - (xy -5.1 -0.3) - (xy -5.1 0.3) - (xy -4.5 0.3) - (xy -4.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)) - (fp_poly (pts - (xy -5.1 4.5) - (xy -5.1 5.1) - (xy -4.5 5.1) - (xy -4.5 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e)) - (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) (fill solid) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469)) - (fp_poly (pts - (xy -2.7 2.7) - (xy -2.7 3.3) - (xy -2.1 3.3) - (xy -2.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391)) - (fp_poly (pts - (xy 2.1 2.1) - (xy 2.1 2.7) - (xy 2.7 2.7) - (xy 2.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)) - (fp_poly (pts - (xy -0.3 -5.1) - (xy -0.3 -4.5) - (xy 0.3 -4.5) - (xy 0.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4e20505-1208-4100-a4aa-676f50844c06)) (fp_poly (pts (xy 0.9 2.1) (xy 0.9 2.7) (xy 1.5 2.7) (xy 1.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69)) (fp_poly (pts - (xy -3.3 1.5) - (xy -3.3 2.1) - (xy -2.7 2.1) - (xy -2.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5203297-b913-4288-a576-12a92185cb52)) + (xy 5.7 -6.3) + (xy 5.7 -5.7) + (xy 6.3 -5.7) + (xy 6.3 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)) (fp_poly (pts - (xy -4.5 -7.5) - (xy -4.5 -6.9) - (xy -3.9 -6.9) - (xy -3.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b)) + (xy 6.9 -3.9) + (xy 6.9 -3.3) + (xy 7.5 -3.3) + (xy 7.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)) (fp_poly (pts - (xy -5.1 3.3) - (xy -5.1 3.9) - (xy -4.5 3.9) - (xy -4.5 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)) + (xy -2.7 -4.5) + (xy -2.7 -3.9) + (xy -2.1 -3.9) + (xy -2.1 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)) (fp_poly (pts - (xy -2.1 -2.1) - (xy -2.1 -1.5) - (xy -1.5 -1.5) - (xy -1.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)) + (xy -5.7 4.5) + (xy -5.7 5.1) + (xy -5.1 5.1) + (xy -5.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277)) (fp_poly (pts - (xy -3.9 -6.9) - (xy -3.9 -6.3) - (xy -3.3 -6.3) - (xy -3.3 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6)) + (xy 0.3 0.3) + (xy 0.3 0.9) + (xy 0.9 0.9) + (xy 0.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957)) (fp_poly (pts - (xy 0.9 6.9) - (xy 0.9 7.5) - (xy 1.5 7.5) - (xy 1.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)) + (xy -2.1 6.9) + (xy -2.1 7.5) + (xy -1.5 7.5) + (xy -1.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)) (fp_poly (pts - (xy -3.3 2.1) - (xy -3.3 2.7) - (xy -2.7 2.7) - (xy -2.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128)) + (xy 0.3 -1.5) + (xy 0.3 -0.9) + (xy 0.9 -0.9) + (xy 0.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac)) (fp_poly (pts - (xy 0.9 -3.3) - (xy 0.9 -2.7) - (xy 1.5 -2.7) - (xy 1.5 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8)) - (fp_poly (pts - (xy -6.3 0.9) - (xy -6.3 1.5) - (xy -5.7 1.5) - (xy -5.7 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905)) + (xy -0.9 -0.3) + (xy -0.9 0.3) + (xy -0.3 0.3) + (xy -0.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db)) (fp_poly (pts (xy -6.3 -2.1) (xy -6.3 -1.5) (xy -5.7 -1.5) (xy -5.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67)) - (fp_poly (pts - (xy -7.5 -3.9) - (xy -7.5 -3.3) - (xy -6.9 -3.3) - (xy -6.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)) - (fp_poly (pts - (xy -5.7 -6.3) - (xy -5.7 -5.7) - (xy -5.1 -5.7) - (xy -5.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e)) - (fp_poly (pts - (xy 6.9 -6.9) - (xy 6.9 -6.3) - (xy 7.5 -6.3) - (xy 7.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)) - (fp_poly (pts - (xy -0.9 3.3) - (xy -0.9 3.9) - (xy -0.3 3.9) - (xy -0.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7)) - (fp_poly (pts - (xy 6.3 -1.5) - (xy 6.3 -0.9) - (xy 6.9 -0.9) - (xy 6.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)) - (fp_poly (pts - (xy 3.3 -7.5) - (xy 3.3 -6.9) - (xy 3.9 -6.9) - (xy 3.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b)) - (fp_poly (pts - (xy -1.5 5.7) - (xy -1.5 6.3) - (xy -0.9 6.3) - (xy -0.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733)) - (fp_poly (pts - (xy -6.3 5.1) - (xy -6.3 5.7) - (xy -5.7 5.7) - (xy -5.7 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a)) - (fp_poly (pts - (xy -3.9 3.9) - (xy -3.9 4.5) - (xy -3.3 4.5) - (xy -3.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)) - (fp_poly (pts - (xy 2.7 1.5) - (xy 2.7 2.1) - (xy 3.3 2.1) - (xy 3.3 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c)) - (fp_poly (pts - (xy -3.9 -3.9) - (xy -3.9 -3.3) - (xy -3.3 -3.3) - (xy -3.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)) - (fp_poly (pts - (xy -7.5 3.9) - (xy -7.5 4.5) - (xy -6.9 4.5) - (xy -6.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a)) - (fp_poly (pts - (xy -6.9 -7.5) - (xy -6.9 -6.9) - (xy -6.3 -6.9) - (xy -6.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a)) - (fp_poly (pts - (xy -5.7 -0.9) - (xy -5.7 -0.3) - (xy -5.1 -0.3) - (xy -5.1 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)) - (fp_poly (pts - (xy 2.1 1.5) - (xy 2.1 2.1) - (xy 2.7 2.1) - (xy 2.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd)) - (fp_poly (pts - (xy -6.3 -6.3) - (xy -6.3 -5.7) - (xy -5.7 -5.7) - (xy -5.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f)) - (fp_poly (pts - (xy 6.3 0.9) - (xy 6.3 1.5) - (xy 6.9 1.5) - (xy 6.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f7667b23-296e-4362-a7e3-949632c8954b)) - (fp_poly (pts - (xy -2.1 -0.9) - (xy -2.1 -0.3) - (xy -1.5 -0.3) - (xy -1.5 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f)) - (fp_poly (pts - (xy 6.9 -5.7) - (xy 6.9 -5.1) - (xy 7.5 -5.1) - (xy 7.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242)) - (fp_poly (pts - (xy -0.3 -0.3) - (xy -0.3 0.3) - (xy 0.3 0.3) - (xy 0.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)) - (fp_poly (pts - (xy 6.9 2.1) - (xy 6.9 2.7) - (xy 7.5 2.7) - (xy 7.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916)) (fp_poly (pts (xy 1.5 -6.9) (xy 1.5 -6.3) (xy 2.1 -6.3) (xy 2.1 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f959907b-1cef-4760-b043-4260a660a2ae)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5)) + (fp_poly (pts + (xy 0.3 -6.9) + (xy 0.3 -6.3) + (xy 0.9 -6.3) + (xy 0.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)) + (fp_poly (pts + (xy -3.9 -2.7) + (xy -3.9 -2.1) + (xy -3.3 -2.1) + (xy -3.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)) + (fp_poly (pts + (xy 5.7 -1.5) + (xy 5.7 -0.9) + (xy 6.3 -0.9) + (xy 6.3 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)) + (fp_poly (pts + (xy -2.7 5.7) + (xy -2.7 6.3) + (xy -2.1 6.3) + (xy -2.1 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7)) (fp_poly (pts - (xy -0.9 -2.1) (xy -0.9 -1.5) + (xy -0.9 -0.9) + (xy -0.3 -0.9) (xy -0.3 -1.5) - (xy -0.3 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)) (fp_poly (pts - (xy -5.7 -3.9) - (xy -5.7 -3.3) - (xy -5.1 -3.3) - (xy -5.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e)) + (xy 3.9 -2.7) + (xy 3.9 -2.1) + (xy 4.5 -2.1) + (xy 4.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 109caac1-5036-4f23-9a66-f569d871501b)) (fp_poly (pts - (xy -2.1 -6.9) - (xy -2.1 -6.3) - (xy -1.5 -6.3) - (xy -1.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)) + (xy -5.1 4.5) + (xy -5.1 5.1) + (xy -4.5 5.1) + (xy -4.5 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3)) (fp_poly (pts - (xy -1.5 -4.5) - (xy -1.5 -3.9) - (xy -0.9 -3.9) - (xy -0.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)) + (xy -6.3 3.3) + (xy -6.3 3.9) + (xy -5.7 3.9) + (xy -5.7 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9)) (fp_poly (pts - (xy -3.3 -1.5) - (xy -3.3 -0.9) - (xy -2.7 -0.9) + (xy -5.7 2.1) + (xy -5.7 2.7) + (xy -5.1 2.7) + (xy -5.1 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)) + (fp_poly (pts + (xy -2.1 0.9) + (xy -2.1 1.5) + (xy -1.5 1.5) + (xy -1.5 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)) + (fp_poly (pts + (xy -5.7 -7.5) + (xy -5.7 -6.9) + (xy -5.1 -6.9) + (xy -5.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)) + (fp_poly (pts + (xy -7.5 3.9) + (xy -7.5 4.5) + (xy -6.9 4.5) + (xy -6.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771)) + (fp_poly (pts + (xy 3.3 -6.3) + (xy 3.3 -5.7) + (xy 3.9 -5.7) + (xy 3.9 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)) + (fp_poly (pts + (xy 4.5 4.5) + (xy 4.5 5.1) + (xy 5.1 5.1) + (xy 5.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0)) + (fp_poly (pts + (xy -5.1 -2.7) + (xy -5.1 -2.1) + (xy -4.5 -2.1) + (xy -4.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)) + (fp_poly (pts + (xy -7.5 4.5) + (xy -7.5 5.1) + (xy -6.9 5.1) + (xy -6.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)) + (fp_poly (pts + (xy 3.3 -2.7) + (xy 3.3 -2.1) + (xy 3.9 -2.1) + (xy 3.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)) + (fp_poly (pts + (xy 6.3 -1.5) + (xy 6.3 -0.9) + (xy 6.9 -0.9) + (xy 6.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1c68b844-c861-46b7-b734-0242168a4220)) + (fp_poly (pts + (xy -2.7 -2.1) (xy -2.7 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)) + (xy -2.1 -1.5) + (xy -2.1 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)) (fp_poly (pts - (xy 6.3 -2.7) - (xy 6.3 -2.1) - (xy 6.9 -2.1) - (xy 6.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde)) + (xy 3.3 6.3) + (xy 3.3 6.9) + (xy 3.9 6.9) + (xy 3.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746)) (fp_poly (pts - (xy -4.5 -3.9) - (xy -4.5 -3.3) - (xy -3.9 -3.3) - (xy -3.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)) + (xy -2.7 0.9) + (xy -2.7 1.5) + (xy -2.1 1.5) + (xy -2.1 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9)) (fp_poly (pts - (xy 0.9 6.3) - (xy 0.9 6.9) - (xy 1.5 6.9) - (xy 1.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)) + (xy 2.1 4.5) + (xy 2.1 5.1) + (xy 2.7 5.1) + (xy 2.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d)) + (fp_poly (pts + (xy 0.9 -7.5) + (xy 0.9 -6.9) + (xy 1.5 -6.9) + (xy 1.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e)) + (fp_poly (pts + (xy 0.3 -5.1) + (xy 0.3 -4.5) + (xy 0.9 -4.5) + (xy 0.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)) + (fp_poly (pts + (xy 4.5 2.1) + (xy 4.5 2.7) + (xy 5.1 2.7) + (xy 5.1 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273)) + (fp_poly (pts + (xy -2.1 -0.9) + (xy -2.1 -0.3) + (xy -1.5 -0.3) + (xy -1.5 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3)) + (fp_poly (pts + (xy 5.7 -5.7) + (xy 5.7 -5.1) + (xy 6.3 -5.1) + (xy 6.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25)) + (fp_poly (pts + (xy -3.9 -5.1) + (xy -3.9 -4.5) + (xy -3.3 -4.5) + (xy -3.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5)) + (fp_poly (pts + (xy 5.1 3.9) + (xy 5.1 4.5) + (xy 5.7 4.5) + (xy 5.7 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1)) + (fp_poly (pts + (xy 5.1 -3.9) + (xy 5.1 -3.3) + (xy 5.7 -3.3) + (xy 5.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)) + (fp_poly (pts + (xy -2.1 -5.7) + (xy -2.1 -5.1) + (xy -1.5 -5.1) + (xy -1.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c)) (fp_poly (pts (xy 6.3 -0.3) (xy 6.3 0.3) (xy 6.9 0.3) (xy 6.9 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765)) + (fp_poly (pts + (xy 5.1 -7.5) + (xy 5.1 -6.9) + (xy 5.7 -6.9) + (xy 5.7 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)) + (fp_poly (pts + (xy -2.1 -4.5) + (xy -2.1 -3.9) + (xy -1.5 -3.9) + (xy -1.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493)) + (fp_poly (pts + (xy 2.7 1.5) + (xy 2.7 2.1) + (xy 3.3 2.1) + (xy 3.3 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c)) + (fp_poly (pts + (xy 5.7 4.5) + (xy 5.7 5.1) + (xy 6.3 5.1) + (xy 6.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece)) + (fp_poly (pts + (xy 2.1 -6.9) + (xy 2.1 -6.3) + (xy 2.7 -6.3) + (xy 2.7 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)) + (fp_poly (pts + (xy -5.1 6.9) + (xy -5.1 7.5) + (xy -4.5 7.5) + (xy -4.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0)) + (fp_poly (pts + (xy -7.5 -6.9) + (xy -7.5 -6.3) + (xy -6.9 -6.3) + (xy -6.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)) + (fp_poly (pts + (xy -5.1 -5.1) + (xy -5.1 -4.5) + (xy -4.5 -4.5) + (xy -4.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43)) + (fp_poly (pts + (xy -2.7 -3.9) + (xy -2.7 -3.3) + (xy -2.1 -3.3) + (xy -2.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)) + (fp_poly (pts + (xy 2.1 -6.3) + (xy 2.1 -5.7) + (xy 2.7 -5.7) + (xy 2.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278)) + (fp_poly (pts + (xy -7.5 6.3) + (xy -7.5 6.9) + (xy -6.9 6.9) + (xy -6.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225)) + (fp_poly (pts + (xy -2.7 -6.3) + (xy -2.7 -5.7) + (xy -2.1 -5.7) + (xy -2.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)) + (fp_poly (pts + (xy 3.3 6.9) + (xy 3.3 7.5) + (xy 3.9 7.5) + (xy 3.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004)) + (fp_poly (pts + (xy 5.7 -2.7) + (xy 5.7 -2.1) + (xy 6.3 -2.1) + (xy 6.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)) + (fp_poly (pts + (xy -0.3 5.1) + (xy -0.3 5.7) + (xy 0.3 5.7) + (xy 0.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7)) + (fp_poly (pts + (xy 3.3 -0.3) + (xy 3.3 0.3) + (xy 3.9 0.3) + (xy 3.9 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)) + (fp_poly (pts + (xy -6.3 -0.3) + (xy -6.3 0.3) + (xy -5.7 0.3) + (xy -5.7 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)) + (fp_poly (pts + (xy -3.9 6.9) + (xy -3.9 7.5) + (xy -3.3 7.5) + (xy -3.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b)) + (fp_poly (pts + (xy -3.9 -0.3) + (xy -3.9 0.3) + (xy -3.3 0.3) + (xy -3.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)) + (fp_poly (pts + (xy -5.7 -3.9) + (xy -5.7 -3.3) + (xy -5.1 -3.3) + (xy -5.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)) + (fp_poly (pts + (xy -2.1 -6.9) + (xy -2.1 -6.3) + (xy -1.5 -6.3) + (xy -1.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)) + (fp_poly (pts + (xy 6.3 0.9) + (xy 6.3 1.5) + (xy 6.9 1.5) + (xy 6.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9)) + (fp_poly (pts + (xy -1.5 0.9) + (xy -1.5 1.5) + (xy -0.9 1.5) + (xy -0.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)) + (fp_poly (pts + (xy -6.3 5.1) + (xy -6.3 5.7) + (xy -5.7 5.7) + (xy -5.7 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)) + (fp_poly (pts + (xy 6.9 5.7) + (xy 6.9 6.3) + (xy 7.5 6.3) + (xy 7.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5)) + (fp_poly (pts + (xy -0.9 3.3) + (xy -0.9 3.9) + (xy -0.3 3.9) + (xy -0.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49)) + (fp_poly (pts + (xy 6.9 -7.5) + (xy 6.9 -6.9) + (xy 7.5 -6.9) + (xy 7.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)) + (fp_poly (pts + (xy -6.3 -5.1) + (xy -6.3 -4.5) + (xy -5.7 -4.5) + (xy -5.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)) + (fp_poly (pts + (xy -1.5 -1.5) + (xy -1.5 -0.9) + (xy -0.9 -0.9) + (xy -0.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c)) + (fp_poly (pts + (xy 0.3 2.1) + (xy 0.3 2.7) + (xy 0.9 2.7) + (xy 0.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)) + (fp_poly (pts + (xy -5.1 5.7) + (xy -5.1 6.3) + (xy -4.5 6.3) + (xy -4.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885)) + (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) (fill solid) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)) + (fp_poly (pts + (xy -2.7 4.5) + (xy -2.7 5.1) + (xy -2.1 5.1) + (xy -2.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa)) + (fp_poly (pts + (xy 6.3 3.9) + (xy 6.3 4.5) + (xy 6.9 4.5) + (xy 6.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 45884597-7014-4461-83ee-9975c42b9a53)) + (fp_poly (pts + (xy 4.5 -6.3) + (xy 4.5 -5.7) + (xy 5.1 -5.7) + (xy 5.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)) + (fp_poly (pts + (xy 4.5 2.7) + (xy 4.5 3.3) + (xy 5.1 3.3) + (xy 5.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)) + (fp_poly (pts + (xy -7.5 3.3) + (xy -7.5 3.9) + (xy -6.9 3.9) + (xy -6.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59)) + (fp_poly (pts + (xy -4.5 -2.1) + (xy -4.5 -1.5) + (xy -3.9 -1.5) + (xy -3.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3)) + (fp_poly (pts + (xy 6.9 -1.5) + (xy 6.9 -0.9) + (xy 7.5 -0.9) + (xy 7.5 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54)) + (fp_poly (pts + (xy 6.9 2.1) + (xy 6.9 2.7) + (xy 7.5 2.7) + (xy 7.5 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)) + (fp_poly (pts + (xy -6.9 6.9) + (xy -6.9 7.5) + (xy -6.3 7.5) + (xy -6.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)) + (fp_poly (pts + (xy 1.5 5.1) + (xy 1.5 5.7) + (xy 2.1 5.7) + (xy 2.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)) + (fp_poly (pts + (xy 2.1 2.7) + (xy 2.1 3.3) + (xy 2.7 3.3) + (xy 2.7 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126)) + (fp_poly (pts + (xy 6.3 3.3) + (xy 6.3 3.9) + (xy 6.9 3.9) + (xy 6.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b)) + (fp_poly (pts + (xy -3.9 -4.5) + (xy -3.9 -3.9) + (xy -3.3 -3.9) + (xy -3.3 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)) + (fp_poly (pts + (xy -0.9 5.1) + (xy -0.9 5.7) + (xy -0.3 5.7) + (xy -0.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6)) + (fp_poly (pts + (xy -3.3 0.9) + (xy -3.3 1.5) + (xy -2.7 1.5) + (xy -2.7 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)) + (fp_poly (pts + (xy -1.5 -4.5) + (xy -1.5 -3.9) + (xy -0.9 -3.9) + (xy -0.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a)) + (fp_poly (pts + (xy -1.5 -5.1) + (xy -1.5 -4.5) + (xy -0.9 -4.5) + (xy -0.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)) + (fp_poly (pts + (xy 3.9 4.5) + (xy 3.9 5.1) + (xy 4.5 5.1) + (xy 4.5 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 54212c01-b363-47b8-a145-45c40df316f4)) + (fp_poly (pts + (xy 0.9 -5.1) + (xy 0.9 -4.5) + (xy 1.5 -4.5) + (xy 1.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)) + (fp_poly (pts + (xy 0.3 6.9) + (xy 0.3 7.5) + (xy 0.9 7.5) + (xy 0.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c)) + (fp_poly (pts + (xy -5.7 -5.7) + (xy -5.7 -5.1) + (xy -5.1 -5.1) + (xy -5.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)) + (fp_poly (pts + (xy -0.9 -5.1) + (xy -0.9 -4.5) + (xy -0.3 -4.5) + (xy -0.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)) + (fp_poly (pts + (xy 4.5 -5.1) + (xy 4.5 -4.5) + (xy 5.1 -4.5) + (xy 5.1 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367)) + (fp_poly (pts + (xy 5.7 -5.1) + (xy 5.7 -4.5) + (xy 6.3 -4.5) + (xy 6.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f)) + (fp_poly (pts + (xy 1.5 6.9) + (xy 1.5 7.5) + (xy 2.1 7.5) + (xy 2.1 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615)) + (fp_poly (pts + (xy 3.9 6.3) + (xy 3.9 6.9) + (xy 4.5 6.9) + (xy 4.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)) + (fp_poly (pts + (xy -3.9 -6.9) + (xy -3.9 -6.3) + (xy -3.3 -6.3) + (xy -3.3 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)) + (fp_poly (pts + (xy -3.9 5.1) + (xy -3.9 5.7) + (xy -3.3 5.7) + (xy -3.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)) + (fp_poly (pts + (xy 1.5 -5.7) + (xy 1.5 -5.1) + (xy 2.1 -5.1) + (xy 2.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573)) + (fp_poly (pts + (xy -5.7 -2.7) + (xy -5.7 -2.1) + (xy -5.1 -2.1) + (xy -5.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)) + (fp_poly (pts + (xy 2.1 -3.9) + (xy 2.1 -3.3) + (xy 2.7 -3.3) + (xy 2.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)) + (fp_poly (pts + (xy -2.7 2.7) + (xy -2.7 3.3) + (xy -2.1 3.3) + (xy -2.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)) + (fp_poly (pts + (xy -6.3 1.5) + (xy -6.3 2.1) + (xy -5.7 2.1) + (xy -5.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d)) + (fp_poly (pts + (xy -7.5 -5.1) + (xy -7.5 -4.5) + (xy -6.9 -4.5) + (xy -6.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)) + (fp_poly (pts + (xy -4.5 1.5) + (xy -4.5 2.1) + (xy -3.9 2.1) + (xy -3.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)) + (fp_poly (pts + (xy -7.5 -4.5) + (xy -7.5 -3.9) + (xy -6.9 -3.9) + (xy -6.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f)) + (fp_poly (pts + (xy -5.1 -2.1) + (xy -5.1 -1.5) + (xy -4.5 -1.5) + (xy -4.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd)) + (fp_poly (pts + (xy -1.5 3.9) + (xy -1.5 4.5) + (xy -0.9 4.5) + (xy -0.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f)) + (fp_poly (pts + (xy 4.5 -3.9) + (xy 4.5 -3.3) + (xy 5.1 -3.3) + (xy 5.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)) + (fp_poly (pts + (xy 0.9 -3.3) + (xy 0.9 -2.7) + (xy 1.5 -2.7) + (xy 1.5 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)) + (fp_poly (pts + (xy 2.7 0.3) + (xy 2.7 0.9) + (xy 3.3 0.9) + (xy 3.3 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff)) + (fp_poly (pts + (xy 6.9 -5.7) + (xy 6.9 -5.1) + (xy 7.5 -5.1) + (xy 7.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)) + (fp_poly (pts + (xy -7.5 0.9) + (xy -7.5 1.5) + (xy -6.9 1.5) + (xy -6.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8)) + (fp_poly (pts + (xy -5.1 0.3) + (xy -5.1 0.9) + (xy -4.5 0.9) + (xy -4.5 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8)) + (fp_poly (pts + (xy 6.3 -7.5) + (xy 6.3 -6.9) + (xy 6.9 -6.9) + (xy 6.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311)) + (fp_poly (pts + (xy -7.5 6.9) + (xy -7.5 7.5) + (xy -6.9 7.5) + (xy -6.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a)) + (fp_poly (pts + (xy -2.1 -2.1) + (xy -2.1 -1.5) + (xy -1.5 -1.5) + (xy -1.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)) + (fp_poly (pts + (xy 3.3 0.9) + (xy 3.3 1.5) + (xy 3.9 1.5) + (xy 3.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)) + (fp_poly (pts + (xy -0.3 -3.9) + (xy -0.3 -3.3) + (xy 0.3 -3.3) + (xy 0.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47)) + (fp_poly (pts + (xy 0.9 0.3) + (xy 0.9 0.9) + (xy 1.5 0.9) + (xy 1.5 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71989e06-8659-4605-b2da-4f729cc41263)) + (fp_poly (pts + (xy -7.5 5.7) + (xy -7.5 6.3) + (xy -6.9 6.3) + (xy -6.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3)) + (fp_poly (pts + (xy -6.3 2.1) + (xy -6.3 2.7) + (xy -5.7 2.7) + (xy -5.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769)) + (fp_poly (pts + (xy -0.3 -5.7) + (xy -0.3 -5.1) + (xy 0.3 -5.1) + (xy 0.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9)) + (fp_poly (pts + (xy -6.3 6.9) + (xy -6.3 7.5) + (xy -5.7 7.5) + (xy -5.7 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae)) + (fp_poly (pts + (xy -5.7 -0.9) + (xy -5.7 -0.3) + (xy -5.1 -0.3) + (xy -5.1 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)) + (fp_poly (pts + (xy -3.9 2.1) + (xy -3.9 2.7) + (xy -3.3 2.7) + (xy -3.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)) + (fp_poly (pts + (xy -0.3 4.5) + (xy -0.3 5.1) + (xy 0.3 5.1) + (xy 0.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a)) + (fp_poly (pts + (xy -0.9 -2.1) + (xy -0.9 -1.5) + (xy -0.3 -1.5) + (xy -0.3 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b)) + (fp_poly (pts + (xy 0.3 -7.5) + (xy 0.3 -6.9) + (xy 0.9 -6.9) + (xy 0.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64)) + (fp_poly (pts + (xy 0.9 -3.9) + (xy 0.9 -3.3) + (xy 1.5 -3.3) + (xy 1.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae)) + (fp_poly (pts + (xy -6.3 -5.7) + (xy -6.3 -5.1) + (xy -5.7 -5.1) + (xy -5.7 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)) + (fp_poly (pts + (xy 2.7 4.5) + (xy 2.7 5.1) + (xy 3.3 5.1) + (xy 3.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041)) + (fp_poly (pts + (xy 1.5 -2.7) + (xy 1.5 -2.1) + (xy 2.1 -2.1) + (xy 2.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92)) + (fp_poly (pts + (xy 3.3 -7.5) + (xy 3.3 -6.9) + (xy 3.9 -6.9) + (xy 3.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636)) + (fp_poly (pts + (xy -5.1 -7.5) + (xy -5.1 -6.9) + (xy -4.5 -6.9) + (xy -4.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)) + (fp_poly (pts + (xy 1.5 -1.5) + (xy 1.5 -0.9) + (xy 2.1 -0.9) + (xy 2.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)) + (fp_poly (pts + (xy 4.5 -5.7) + (xy 4.5 -5.1) + (xy 5.1 -5.1) + (xy 5.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 81a15393-727e-448b-a777-b18773023d89)) + (fp_poly (pts + (xy -3.9 -7.5) + (xy -3.9 -6.9) + (xy -3.3 -6.9) + (xy -3.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)) + (fp_poly (pts + (xy 3.3 5.1) + (xy 3.3 5.7) + (xy 3.9 5.7) + (xy 3.9 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9)) + (fp_poly (pts + (xy -2.7 -0.3) + (xy -2.7 0.3) + (xy -2.1 0.3) + (xy -2.1 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)) + (fp_poly (pts + (xy 6.3 4.5) + (xy 6.3 5.1) + (xy 6.9 5.1) + (xy 6.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759)) + (fp_poly (pts + (xy -6.3 -3.9) + (xy -6.3 -3.3) + (xy -5.7 -3.3) + (xy -5.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)) + (fp_poly (pts + (xy 0.9 6.3) + (xy 0.9 6.9) + (xy 1.5 6.9) + (xy 1.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)) + (fp_poly (pts + (xy 3.3 -0.9) + (xy 3.3 -0.3) + (xy 3.9 -0.3) + (xy 3.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)) + (fp_poly (pts + (xy 0.3 -0.9) + (xy 0.3 -0.3) + (xy 0.9 -0.3) + (xy 0.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)) + (fp_poly (pts + (xy -5.1 -5.7) + (xy -5.1 -5.1) + (xy -4.5 -5.1) + (xy -4.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49)) + (fp_poly (pts + (xy 0.9 -4.5) + (xy 0.9 -3.9) + (xy 1.5 -3.9) + (xy 1.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)) + (fp_poly (pts + (xy 0.9 -6.3) + (xy 0.9 -5.7) + (xy 1.5 -5.7) + (xy 1.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)) + (fp_poly (pts + (xy 6.3 -2.7) + (xy 6.3 -2.1) + (xy 6.9 -2.1) + (xy 6.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23)) + (fp_poly (pts + (xy 5.7 -7.5) + (xy 5.7 -6.9) + (xy 6.3 -6.9) + (xy 6.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42)) + (fp_poly (pts + (xy 4.5 5.1) + (xy 4.5 5.7) + (xy 5.1 5.7) + (xy 5.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)) + (fp_poly (pts + (xy -3.9 0.9) + (xy -3.9 1.5) + (xy -3.3 1.5) + (xy -3.3 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380)) + (fp_poly (pts + (xy -3.3 2.1) + (xy -3.3 2.7) + (xy -2.7 2.7) + (xy -2.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953)) + (fp_poly (pts + (xy 3.3 3.3) + (xy 3.3 3.9) + (xy 3.9 3.9) + (xy 3.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)) + (fp_poly (pts + (xy -5.7 0.9) + (xy -5.7 1.5) + (xy -5.1 1.5) + (xy -5.1 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)) + (fp_poly (pts + (xy 0.3 3.3) + (xy 0.3 3.9) + (xy 0.9 3.9) + (xy 0.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8)) + (fp_poly (pts + (xy 1.5 2.7) + (xy 1.5 3.3) + (xy 2.1 3.3) + (xy 2.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908)) + (fp_poly (pts + (xy 4.5 -7.5) + (xy 4.5 -6.9) + (xy 5.1 -6.9) + (xy 5.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)) + (fp_poly (pts + (xy -5.1 -3.9) + (xy -5.1 -3.3) + (xy -4.5 -3.3) + (xy -4.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)) + (fp_poly (pts + (xy -2.1 5.1) + (xy -2.1 5.7) + (xy -1.5 5.7) + (xy -1.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)) + (fp_poly (pts + (xy 5.1 -5.1) + (xy 5.1 -4.5) + (xy 5.7 -4.5) + (xy 5.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d)) + (fp_poly (pts + (xy 5.1 5.1) + (xy 5.1 5.7) + (xy 5.7 5.7) + (xy 5.7 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935057d5-6882-4c15-9a35-54677912ba12)) + (fp_poly (pts + (xy 6.9 -6.3) + (xy 6.9 -5.7) + (xy 7.5 -5.7) + (xy 7.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)) + (fp_poly (pts + (xy -0.3 -3.3) + (xy -0.3 -2.7) + (xy 0.3 -2.7) + (xy 0.3 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)) + (fp_poly (pts + (xy -0.9 3.9) + (xy -0.9 4.5) + (xy -0.3 4.5) + (xy -0.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)) + (fp_poly (pts + (xy -7.5 5.1) + (xy -7.5 5.7) + (xy -6.9 5.7) + (xy -6.9 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145)) + (fp_poly (pts + (xy -3.9 3.3) + (xy -3.9 3.9) + (xy -3.3 3.9) + (xy -3.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)) + (fp_poly (pts + (xy 1.5 4.5) + (xy 1.5 5.1) + (xy 2.1 5.1) + (xy 2.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c)) + (fp_poly (pts + (xy -5.7 3.3) + (xy -5.7 3.9) + (xy -5.1 3.9) + (xy -5.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790)) + (fp_poly (pts + (xy -2.7 -2.7) + (xy -2.7 -2.1) + (xy -2.1 -2.1) + (xy -2.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)) + (fp_poly (pts + (xy 3.3 4.5) + (xy 3.3 5.1) + (xy 3.9 5.1) + (xy 3.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656)) + (fp_poly (pts + (xy 1.5 0.3) + (xy 1.5 0.9) + (xy 2.1 0.9) + (xy 2.1 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422)) + (fp_poly (pts + (xy 5.1 6.3) + (xy 5.1 6.9) + (xy 5.7 6.9) + (xy 5.7 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b)) + (fp_poly (pts + (xy 5.7 3.3) + (xy 5.7 3.9) + (xy 6.3 3.9) + (xy 6.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b)) + (fp_poly (pts + (xy -6.9 -7.5) + (xy -6.9 -6.9) + (xy -6.3 -6.9) + (xy -6.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)) + (fp_poly (pts + (xy 2.1 1.5) + (xy 2.1 2.1) + (xy 2.7 2.1) + (xy 2.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68)) + (fp_poly (pts + (xy 0.3 -4.5) + (xy 0.3 -3.9) + (xy 0.9 -3.9) + (xy 0.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)) + (fp_poly (pts + (xy -5.7 5.1) + (xy -5.7 5.7) + (xy -5.1 5.7) + (xy -5.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)) + (fp_poly (pts + (xy -4.5 -0.9) + (xy -4.5 -0.3) + (xy -3.9 -0.3) + (xy -3.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8)) + (fp_poly (pts + (xy -1.5 3.3) + (xy -1.5 3.9) + (xy -0.9 3.9) + (xy -0.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)) + (fp_poly (pts + (xy 5.7 -3.9) + (xy 5.7 -3.3) + (xy 6.3 -3.3) + (xy 6.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)) + (fp_poly (pts + (xy 2.1 -5.1) + (xy 2.1 -4.5) + (xy 2.7 -4.5) + (xy 2.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)) + (fp_poly (pts + (xy 5.1 -5.7) + (xy 5.1 -5.1) + (xy 5.7 -5.1) + (xy 5.7 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114)) + (fp_poly (pts + (xy -6.3 -2.7) + (xy -6.3 -2.1) + (xy -5.7 -2.1) + (xy -5.7 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)) + (fp_poly (pts + (xy -3.9 -5.7) + (xy -3.9 -5.1) + (xy -3.3 -5.1) + (xy -3.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269)) + (fp_poly (pts + (xy -0.9 -7.5) + (xy -0.9 -6.9) + (xy -0.3 -6.9) + (xy -0.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)) + (fp_poly (pts + (xy 6.3 -3.9) + (xy 6.3 -3.3) + (xy 6.9 -3.3) + (xy 6.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)) + (fp_poly (pts + (xy 6.3 -0.9) + (xy 6.3 -0.3) + (xy 6.9 -0.3) + (xy 6.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6)) + (fp_poly (pts + (xy -3.9 5.7) + (xy -3.9 6.3) + (xy -3.3 6.3) + (xy -3.3 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)) + (fp_poly (pts + (xy -0.3 -7.5) + (xy -0.3 -6.9) + (xy 0.3 -6.9) + (xy 0.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)) + (fp_poly (pts + (xy 0.9 2.7) + (xy 0.9 3.3) + (xy 1.5 3.3) + (xy 1.5 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83)) + (fp_poly (pts + (xy 5.7 -0.3) + (xy 5.7 0.3) + (xy 6.3 0.3) + (xy 6.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75)) + (fp_poly (pts + (xy 4.5 3.9) + (xy 4.5 4.5) + (xy 5.1 4.5) + (xy 5.1 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd)) + (fp_poly (pts + (xy -0.9 1.5) + (xy -0.9 2.1) + (xy -0.3 2.1) + (xy -0.3 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp af347946-e3da-4427-87ab-77b747929f50)) + (fp_poly (pts + (xy -5.1 3.3) + (xy -5.1 3.9) + (xy -4.5 3.9) + (xy -4.5 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe)) + (fp_poly (pts + (xy -6.3 4.5) + (xy -6.3 5.1) + (xy -5.7 5.1) + (xy -5.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)) + (fp_poly (pts + (xy 0.9 -6.9) + (xy 0.9 -6.3) + (xy 1.5 -6.3) + (xy 1.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)) + (fp_poly (pts + (xy 5.1 2.7) + (xy 5.1 3.3) + (xy 5.7 3.3) + (xy 5.7 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca)) + (fp_poly (pts + (xy 2.1 -4.5) + (xy 2.1 -3.9) + (xy 2.7 -3.9) + (xy 2.7 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)) + (fp_poly (pts + (xy -1.5 -2.1) + (xy -1.5 -1.5) + (xy -0.9 -1.5) + (xy -0.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc)) + (fp_poly (pts + (xy -6.3 5.7) + (xy -6.3 6.3) + (xy -5.7 6.3) + (xy -5.7 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)) + (fp_poly (pts + (xy -7.5 -0.9) + (xy -7.5 -0.3) + (xy -6.9 -0.3) + (xy -6.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b5071759-a4d7-4769-be02-251f23cd4454)) + (fp_poly (pts + (xy 5.7 2.1) + (xy 5.7 2.7) + (xy 6.3 2.7) + (xy 6.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)) + (fp_poly (pts + (xy 0.3 -3.3) + (xy 0.3 -2.7) + (xy 0.9 -2.7) + (xy 0.9 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1)) + (fp_poly (pts + (xy -1.5 1.5) + (xy -1.5 2.1) + (xy -0.9 2.1) + (xy -0.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6cd701f-4223-4e72-a305-466869ccb250)) + (fp_poly (pts + (xy 3.9 -3.9) + (xy 3.9 -3.3) + (xy 4.5 -3.3) + (xy 4.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91)) + (fp_poly (pts + (xy 2.1 -2.1) + (xy 2.1 -1.5) + (xy 2.7 -1.5) + (xy 2.7 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120)) + (fp_poly (pts + (xy -2.7 -1.5) + (xy -2.7 -0.9) + (xy -2.1 -0.9) + (xy -2.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)) + (fp_poly (pts + (xy -5.1 -0.3) + (xy -5.1 0.3) + (xy -4.5 0.3) + (xy -4.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)) + (fp_poly (pts + (xy 2.7 2.1) + (xy 2.7 2.7) + (xy 3.3 2.7) + (xy 3.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)) + (fp_poly (pts + (xy -3.9 -6.3) + (xy -3.9 -5.7) + (xy -3.3 -5.7) + (xy -3.3 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3)) + (fp_poly (pts + (xy -0.3 6.9) + (xy -0.3 7.5) + (xy 0.3 7.5) + (xy 0.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b)) + (fp_poly (pts + (xy -5.1 -6.3) + (xy -5.1 -5.7) + (xy -4.5 -5.7) + (xy -4.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb)) + (fp_poly (pts + (xy -3.3 -1.5) + (xy -3.3 -0.9) + (xy -2.7 -0.9) + (xy -2.7 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb)) + (fp_poly (pts + (xy -2.1 5.7) + (xy -2.1 6.3) + (xy -1.5 6.3) + (xy -1.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa)) + (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) (fill solid) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a)) + (fp_poly (pts + (xy -5.7 -5.1) + (xy -5.7 -4.5) + (xy -5.1 -4.5) + (xy -5.1 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c09938fd-06b9-4771-9f63-2311626243b3)) + (fp_poly (pts + (xy 6.9 0.9) + (xy 6.9 1.5) + (xy 7.5 1.5) + (xy 7.5 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)) + (fp_poly (pts + (xy -7.5 -3.9) + (xy -7.5 -3.3) + (xy -6.9 -3.3) + (xy -6.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b)) + (fp_poly (pts + (xy -0.9 -5.7) + (xy -0.9 -5.1) + (xy -0.3 -5.1) + (xy -0.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee)) + (fp_poly (pts + (xy -6.9 -3.9) + (xy -6.9 -3.3) + (xy -6.3 -3.3) + (xy -6.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865)) + (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) (fill solid) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)) + (fp_poly (pts + (xy 2.1 3.9) + (xy 2.1 4.5) + (xy 2.7 4.5) + (xy 2.7 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9)) + (fp_poly (pts + (xy 3.9 -0.3) + (xy 3.9 0.3) + (xy 4.5 0.3) + (xy 4.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9)) + (fp_poly (pts + (xy 6.9 6.3) + (xy 6.9 6.9) + (xy 7.5 6.9) + (xy 7.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)) + (fp_poly (pts + (xy 6.9 3.9) + (xy 6.9 4.5) + (xy 7.5 4.5) + (xy 7.5 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2)) + (fp_poly (pts + (xy 0.3 -2.1) + (xy 0.3 -1.5) + (xy 0.9 -1.5) + (xy 0.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb)) + (fp_poly (pts + (xy 4.5 -0.3) + (xy 4.5 0.3) + (xy 5.1 0.3) + (xy 5.1 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995)) + (fp_poly (pts + (xy -2.7 5.1) + (xy -2.7 5.7) + (xy -2.1 5.7) + (xy -2.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604)) + (fp_poly (pts + (xy 2.1 2.1) + (xy 2.1 2.7) + (xy 2.7 2.7) + (xy 2.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f)) + (fp_poly (pts + (xy -4.5 3.3) + (xy -4.5 3.9) + (xy -3.9 3.9) + (xy -3.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef)) + (fp_poly (pts + (xy -6.3 -6.3) + (xy -6.3 -5.7) + (xy -5.7 -5.7) + (xy -5.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63)) + (fp_poly (pts + (xy -1.5 6.9) + (xy -1.5 7.5) + (xy -0.9 7.5) + (xy -0.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2)) + (fp_poly (pts + (xy -6.9 -0.9) + (xy -6.9 -0.3) + (xy -6.3 -0.3) + (xy -6.3 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50)) + (fp_poly (pts + (xy 5.1 -6.3) + (xy 5.1 -5.7) + (xy 5.7 -5.7) + (xy 5.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea)) + (fp_poly (pts + (xy -4.5 6.9) + (xy -4.5 7.5) + (xy -3.9 7.5) + (xy -3.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213)) + (fp_poly (pts + (xy -0.3 -5.1) + (xy -0.3 -4.5) + (xy 0.3 -4.5) + (xy 0.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510)) + (fp_poly (pts + (xy -2.1 6.3) + (xy -2.1 6.9) + (xy -1.5 6.9) + (xy -1.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7)) + (fp_poly (pts + (xy -6.9 3.3) + (xy -6.9 3.9) + (xy -6.3 3.9) + (xy -6.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc15f583-a41b-43af-ba94-a75455506a96)) + (fp_poly (pts + (xy -5.7 5.7) + (xy -5.7 6.3) + (xy -5.1 6.3) + (xy -5.1 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d)) + (fp_poly (pts + (xy -0.3 3.9) + (xy -0.3 4.5) + (xy 0.3 4.5) + (xy 0.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)) + (fp_poly (pts + (xy -3.9 -3.9) + (xy -3.9 -3.3) + (xy -3.3 -3.3) + (xy -3.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce)) + (fp_poly (pts + (xy 6.9 -6.9) + (xy 6.9 -6.3) + (xy 7.5 -6.3) + (xy 7.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)) + (fp_poly (pts + (xy -3.9 3.9) + (xy -3.9 4.5) + (xy -3.3 4.5) + (xy -3.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)) + (fp_poly (pts + (xy 3.3 -6.9) + (xy 3.3 -6.3) + (xy 3.9 -6.3) + (xy 3.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)) + (fp_poly (pts + (xy -0.3 -0.9) + (xy -0.3 -0.3) + (xy 0.3 -0.3) + (xy 0.3 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)) + (fp_poly (pts + (xy 4.5 -1.5) + (xy 4.5 -0.9) + (xy 5.1 -0.9) + (xy 5.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150)) + (fp_poly (pts + (xy 6.9 -5.1) + (xy 6.9 -4.5) + (xy 7.5 -4.5) + (xy 7.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)) + (fp_poly (pts + (xy 0.9 5.7) + (xy 0.9 6.3) + (xy 1.5 6.3) + (xy 1.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88)) + (fp_poly (pts + (xy -3.9 4.5) + (xy -3.9 5.1) + (xy -3.3 5.1) + (xy -3.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6)) + (fp_poly (pts + (xy -0.9 6.3) + (xy -0.9 6.9) + (xy -0.3 6.9) + (xy -0.3 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)) + (fp_poly (pts + (xy -7.5 -6.3) + (xy -7.5 -5.7) + (xy -6.9 -5.7) + (xy -6.9 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504)) + (fp_poly (pts + (xy -6.3 0.9) + (xy -6.3 1.5) + (xy -5.7 1.5) + (xy -5.7 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)) + (fp_poly (pts + (xy 3.9 -7.5) + (xy 3.9 -6.9) + (xy 4.5 -6.9) + (xy 4.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b)) + (fp_poly (pts + (xy -3.3 1.5) + (xy -3.3 2.1) + (xy -2.7 2.1) + (xy -2.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86)) + (fp_poly (pts + (xy -1.5 -7.5) + (xy -1.5 -6.9) + (xy -0.9 -6.9) + (xy -0.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)) + (fp_poly (pts + (xy 0.9 -0.3) + (xy 0.9 0.3) + (xy 1.5 0.3) + (xy 1.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)) + (fp_poly (pts + (xy -5.1 5.1) + (xy -5.1 5.7) + (xy -4.5 5.7) + (xy -4.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba)) + (fp_poly (pts + (xy -2.7 -3.3) + (xy -2.7 -2.7) + (xy -2.1 -2.7) + (xy -2.1 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df)) + (fp_poly (pts + (xy 6.9 5.1) + (xy 6.9 5.7) + (xy 7.5 5.7) + (xy 7.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e091e263-c616-48ef-a460-465c70218987)) + (fp_poly (pts + (xy 0.9 -1.5) + (xy 0.9 -0.9) + (xy 1.5 -0.9) + (xy 1.5 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35)) + (fp_poly (pts + (xy -2.7 -7.5) + (xy -2.7 -6.9) + (xy -2.1 -6.9) + (xy -2.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1535036-5d36-405f-bb86-3819621c4f23)) + (fp_poly (pts + (xy -1.5 4.5) + (xy -1.5 5.1) + (xy -0.9 5.1) + (xy -0.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)) + (fp_poly (pts + (xy 1.5 -0.9) + (xy 1.5 -0.3) + (xy 2.1 -0.3) + (xy 2.1 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)) + (fp_poly (pts + (xy -2.1 -0.3) + (xy -2.1 0.3) + (xy -1.5 0.3) + (xy -1.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)) + (fp_poly (pts + (xy 3.3 -5.1) + (xy 3.3 -4.5) + (xy 3.9 -4.5) + (xy 3.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e)) + (fp_poly (pts + (xy -6.3 -7.5) + (xy -6.3 -6.9) + (xy -5.7 -6.9) + (xy -5.7 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469)) + (fp_poly (pts + (xy 1.5 -3.3) + (xy 1.5 -2.7) + (xy 2.1 -2.7) + (xy 2.1 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391)) + (fp_poly (pts + (xy -2.1 -2.7) + (xy -2.1 -2.1) + (xy -1.5 -2.1) + (xy -1.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)) + (fp_poly (pts + (xy -0.9 4.5) + (xy -0.9 5.1) + (xy -0.3 5.1) + (xy -0.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4e20505-1208-4100-a4aa-676f50844c06)) + (fp_poly (pts + (xy 0.3 -2.7) + (xy 0.3 -2.1) + (xy 0.9 -2.1) + (xy 0.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)) + (fp_poly (pts + (xy -3.3 -2.1) + (xy -3.3 -1.5) + (xy -2.7 -1.5) + (xy -2.7 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5203297-b913-4288-a576-12a92185cb52)) + (fp_poly (pts + (xy 0.9 6.9) + (xy 0.9 7.5) + (xy 1.5 7.5) + (xy 1.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b)) + (fp_poly (pts + (xy 3.3 -3.9) + (xy 3.3 -3.3) + (xy 3.9 -3.3) + (xy 3.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)) + (fp_poly (pts + (xy -5.1 1.5) + (xy -5.1 2.1) + (xy -4.5 2.1) + (xy -4.5 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)) + (fp_poly (pts + (xy 2.1 6.3) + (xy 2.1 6.9) + (xy 2.7 6.9) + (xy 2.7 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6)) + (fp_poly (pts + (xy -4.5 -7.5) + (xy -4.5 -6.9) + (xy -3.9 -6.9) + (xy -3.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)) + (fp_poly (pts + (xy 2.7 -2.7) + (xy 2.7 -2.1) + (xy 3.3 -2.1) + (xy 3.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128)) + (fp_poly (pts + (xy -0.9 2.7) + (xy -0.9 3.3) + (xy -0.3 3.3) + (xy -0.3 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8)) + (fp_poly (pts + (xy 3.3 -1.5) + (xy 3.3 -0.9) + (xy 3.9 -0.9) + (xy 3.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905)) + (fp_poly (pts + (xy 0.3 1.5) + (xy 0.3 2.1) + (xy 0.9 2.1) + (xy 0.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67)) + (fp_poly (pts + (xy 6.9 3.3) + (xy 6.9 3.9) + (xy 7.5 3.9) + (xy 7.5 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)) + (fp_poly (pts + (xy -1.5 5.7) + (xy -1.5 6.3) + (xy -0.9 6.3) + (xy -0.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e)) + (fp_poly (pts + (xy 5.1 5.7) + (xy 5.1 6.3) + (xy 5.7 6.3) + (xy 5.7 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)) + (fp_poly (pts + (xy -1.5 -3.9) + (xy -1.5 -3.3) + (xy -0.9 -3.3) + (xy -0.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7)) + (fp_poly (pts + (xy 2.1 0.3) + (xy 2.1 0.9) + (xy 2.7 0.9) + (xy 2.7 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)) + (fp_poly (pts + (xy -5.7 6.9) + (xy -5.7 7.5) + (xy -5.1 7.5) + (xy -5.1 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b)) + (fp_poly (pts + (xy -5.7 -6.3) + (xy -5.7 -5.7) + (xy -5.1 -5.7) + (xy -5.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733)) + (fp_poly (pts + (xy 3.3 -5.7) + (xy 3.3 -5.1) + (xy 3.9 -5.1) + (xy 3.9 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a)) + (fp_poly (pts + (xy 3.3 -4.5) + (xy 3.3 -3.9) + (xy 3.9 -3.9) + (xy 3.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)) + (fp_poly (pts + (xy 6.9 -2.7) + (xy 6.9 -2.1) + (xy 7.5 -2.1) + (xy 7.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c)) + (fp_poly (pts + (xy 1.5 3.3) + (xy 1.5 3.9) + (xy 2.1 3.9) + (xy 2.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)) + (fp_poly (pts + (xy 6.9 -4.5) + (xy 6.9 -3.9) + (xy 7.5 -3.9) + (xy 7.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a)) + (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) (fill solid) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a)) + (fp_poly (pts + (xy -1.5 0.3) + (xy -1.5 0.9) + (xy -0.9 0.9) + (xy -0.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)) + (fp_poly (pts + (xy -7.5 -2.1) + (xy -7.5 -1.5) + (xy -6.9 -1.5) + (xy -6.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd)) + (fp_poly (pts + (xy 0.3 5.7) + (xy 0.3 6.3) + (xy 0.9 6.3) + (xy 0.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f)) + (fp_poly (pts + (xy 0.9 -2.1) + (xy 0.9 -1.5) + (xy 1.5 -1.5) + (xy 1.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f7667b23-296e-4362-a7e3-949632c8954b)) + (fp_poly (pts + (xy -7.5 0.3) + (xy -7.5 0.9) + (xy -6.9 0.9) + (xy -6.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f)) + (fp_poly (pts + (xy 5.1 4.5) + (xy 5.1 5.1) + (xy 5.7 5.1) + (xy 5.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242)) + (fp_poly (pts + (xy -6.9 -0.3) + (xy -6.9 0.3) + (xy -6.3 0.3) + (xy -6.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)) + (fp_poly (pts + (xy 2.1 -3.3) + (xy 2.1 -2.7) + (xy 2.7 -2.7) + (xy 2.7 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386)) + (fp_poly (pts + (xy -3.9 6.3) + (xy -3.9 6.9) + (xy -3.3 6.9) + (xy -3.3 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f959907b-1cef-4760-b043-4260a660a2ae)) + (fp_poly (pts + (xy -7.5 1.5) + (xy -7.5 2.1) + (xy -6.9 2.1) + (xy -6.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe)) + (fp_poly (pts + (xy 4.5 3.3) + (xy 4.5 3.9) + (xy 5.1 3.9) + (xy 5.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e)) + (fp_poly (pts + (xy 0.3 6.3) + (xy 0.3 6.9) + (xy 0.9 6.9) + (xy 0.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)) + (fp_poly (pts + (xy 1.5 3.9) + (xy 1.5 4.5) + (xy 2.1 4.5) + (xy 2.1 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)) + (fp_poly (pts + (xy -0.3 0.9) + (xy -0.3 1.5) + (xy 0.3 1.5) + (xy 0.3 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)) + (fp_poly (pts + (xy -7.5 2.1) + (xy -7.5 2.7) + (xy -6.9 2.7) + (xy -6.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde)) + (fp_poly (pts + (xy 2.1 3.3) + (xy 2.1 3.9) + (xy 2.7 3.9) + (xy 2.7 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)) + (fp_poly (pts + (xy -2.7 -6.9) + (xy -2.7 -6.3) + (xy -2.1 -6.3) + (xy -2.1 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)) + (fp_poly (pts + (xy -1.5 -0.9) + (xy -1.5 -0.3) + (xy -0.9 -0.3) + (xy -0.9 -0.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a)) ) 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 9b971b3b..18021f88 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 @@ -5,6 +5,11 @@ ) (paper "A4") + (title_block + (title "QR PCB") + (rev "B") + ) + (layers (0 "F.Cu" signal) (1 "In1.Cu" signal) @@ -73,7 +78,7 @@ (tedit 0) (tstamp 00000000-0000-0000-0000-000061d26c5c) (at 65.8 96.9) (attr through_hole) - (fp_text reference "QR***" (at 0 26.65) (layer "F.Cu") + (fp_text reference "QR1" (at 0 26.65) (layer "F.Cu") (effects (font (size 1 1) (thickness 0.15))) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2) ) @@ -81,1105 +86,1099 @@ (effects (font (size 1 1) (thickness 0.15))) (tstamp e8314017-7be6-4011-9179-37449a29b311) ) - (fp_text user "qr_size: 21" (at 0 -30.05) (layer "F.Cu") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1) - ) - (fp_text user "qr_version: 1" (at 0 -28.35) (layer "F.Cu") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 55e740a3-0735-4744-896e-2bf5437093b9) - ) (fp_text user "qr_ecc: 1,0" (at 0 -31.75) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e) + (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019) ) - (fp_text user "qr_mask: 6" (at 0 -33.45) (layer "F.Cu") hide + (fp_text user "qr_size: 21" (at 0 -30.05) (layer "F.Cu") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 746ba970-8279-4e7b-aed3-f28687777c21) + (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb) ) (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 e10b5627-3247-4c86-b9f6-ef474ca11543) + (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296) + ) + (fp_text user "qr_mask: 6" (at 0 -33.45) (layer "F.Cu") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec) + ) + (fp_text user "qr_version: 1" (at 0 -28.35) (layer "F.Cu") hide + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151) ) - (fp_poly (pts - (xy -1.2 -8.46) - (xy -1.2 -6.04) - (xy 1.22 -6.04) - (xy 1.22 -8.46) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768)) - (fp_poly (pts - (xy -3.62 8.48) - (xy -3.62 10.9) - (xy -1.2 10.9) - (xy -1.2 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)) - (fp_poly (pts - (xy 18.16 -6.04) - (xy 18.16 -3.62) - (xy 20.58 -3.62) - (xy 20.58 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)) - (fp_poly (pts - (xy 10.9 18.16) - (xy 10.9 20.58) - (xy 13.32 20.58) - (xy 13.32 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc)) - (fp_poly (pts - (xy 15.74 -18.14) - (xy 15.74 -15.72) - (xy 18.16 -15.72) - (xy 18.16 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb)) - (fp_poly (pts - (xy -22.98 3.64) - (xy -22.98 6.06) - (xy -20.56 6.06) - (xy -20.56 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)) - (fp_poly (pts - (xy 20.58 6.06) - (xy 20.58 8.48) - (xy 23 8.48) - (xy 23 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)) - (fp_poly (pts - (xy 15.74 -10.88) - (xy 15.74 -8.46) - (xy 18.16 -8.46) - (xy 18.16 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)) - (fp_poly (pts - (xy 6.06 20.58) - (xy 6.06 23) - (xy 8.48 23) - (xy 8.48 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 097edb1b-8998-4e70-b670-bba125982348)) - (fp_poly (pts - (xy 20.58 20.58) - (xy 20.58 23) - (xy 23 23) - (xy 23 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)) - (fp_poly (pts - (xy -1.2 -18.14) - (xy -1.2 -15.72) - (xy 1.22 -15.72) - (xy 1.22 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136)) - (fp_poly (pts - (xy 15.74 8.48) - (xy 15.74 10.9) - (xy 18.16 10.9) - (xy 18.16 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb)) - (fp_poly (pts - (xy 23 18.16) - (xy 23 20.58) - (xy 25.42 20.58) - (xy 25.42 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)) - (fp_poly (pts - (xy 15.74 -20.56) - (xy 15.74 -18.14) - (xy 18.16 -18.14) - (xy 18.16 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)) - (fp_poly (pts - (xy -15.72 -18.14) - (xy -15.72 -15.72) - (xy -13.3 -15.72) - (xy -13.3 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55)) - (fp_poly (pts - (xy -25.4 -10.88) - (xy -25.4 -8.46) - (xy -22.98 -8.46) - (xy -22.98 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)) - (fp_poly (pts - (xy -8.46 3.64) - (xy -8.46 6.06) - (xy -6.04 6.06) - (xy -6.04 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) - (fp_poly (pts - (xy -25.4 -1.2) - (xy -25.4 1.22) - (xy -22.98 1.22) - (xy -22.98 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)) - (fp_poly (pts - (xy -6.04 -20.56) - (xy -6.04 -18.14) - (xy -3.62 -18.14) - (xy -3.62 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e)) - (fp_poly (pts - (xy 10.9 3.64) - (xy 10.9 6.06) - (xy 13.32 6.06) - (xy 13.32 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d)) - (fp_poly (pts - (xy -18.14 15.74) - (xy -18.14 18.16) - (xy -15.72 18.16) - (xy -15.72 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa)) - (fp_poly (pts - (xy -25.4 20.58) - (xy -25.4 23) - (xy -22.98 23) - (xy -22.98 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)) - (fp_poly (pts - (xy 15.74 10.9) - (xy 15.74 13.32) - (xy 18.16 13.32) - (xy 18.16 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)) - (fp_poly (pts - (xy -13.3 8.48) - (xy -13.3 10.9) - (xy -10.88 10.9) - (xy -10.88 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)) - (fp_poly (pts - (xy 18.16 -20.56) - (xy 18.16 -18.14) - (xy 20.58 -18.14) - (xy 20.58 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)) - (fp_poly (pts - (xy -10.88 13.32) - (xy -10.88 15.74) - (xy -8.46 15.74) - (xy -8.46 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36)) - (fp_poly (pts - (xy -18.14 -18.14) - (xy -18.14 -15.72) - (xy -15.72 -15.72) - (xy -15.72 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)) - (fp_poly (pts - (xy -15.72 15.74) - (xy -15.72 18.16) - (xy -13.3 18.16) - (xy -13.3 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)) - (fp_poly (pts - (xy 18.16 -15.72) - (xy 18.16 -13.3) - (xy 20.58 -13.3) - (xy 20.58 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)) - (fp_poly (pts - (xy 8.48 -3.62) - (xy 8.48 -1.2) - (xy 10.9 -1.2) - (xy 10.9 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f)) - (fp_poly (pts - (xy -10.88 -13.3) - (xy -10.88 -10.88) - (xy -8.46 -10.88) - (xy -8.46 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)) - (fp_poly (pts - (xy -25.4 -3.62) - (xy -25.4 -1.2) - (xy -22.98 -1.2) - (xy -22.98 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)) - (fp_poly (pts - (xy 15.74 -25.4) - (xy 15.74 -22.98) - (xy 18.16 -22.98) - (xy 18.16 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268)) - (fp_poly (pts - (xy -18.14 23) - (xy -18.14 25.42) - (xy -15.72 25.42) - (xy -15.72 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)) - (fp_poly (pts - (xy -15.72 1.22) - (xy -15.72 3.64) - (xy -13.3 3.64) - (xy -13.3 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)) - (fp_poly (pts - (xy -10.88 3.64) - (xy -10.88 6.06) - (xy -8.46 6.06) - (xy -8.46 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)) - (fp_poly (pts - (xy -10.88 15.74) - (xy -10.88 18.16) - (xy -8.46 18.16) - (xy -8.46 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)) - (fp_poly (pts - (xy -3.62 -8.46) - (xy -3.62 -6.04) - (xy -1.2 -6.04) - (xy -1.2 -8.46) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)) - (fp_poly (pts - (xy 13.32 18.16) - (xy 13.32 20.58) - (xy 15.74 20.58) - (xy 15.74 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0)) - (fp_poly (pts - (xy -20.56 -3.62) - (xy -20.56 -1.2) - (xy -18.14 -1.2) - (xy -18.14 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)) - (fp_poly (pts - (xy -18.14 1.22) - (xy -18.14 3.64) - (xy -15.72 3.64) - (xy -15.72 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)) - (fp_poly (pts - (xy -18.14 18.16) - (xy -18.14 20.58) - (xy -15.72 20.58) - (xy -15.72 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)) - (fp_poly (pts - (xy 23 -18.14) - (xy 23 -15.72) - (xy 25.42 -15.72) - (xy 25.42 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)) - (fp_poly (pts - (xy -10.88 -15.72) - (xy -10.88 -13.3) - (xy -8.46 -13.3) - (xy -8.46 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3)) - (fp_poly (pts - (xy -10.88 20.58) - (xy -10.88 23) - (xy -8.46 23) - (xy -8.46 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d67a417-188f-4014-9282-000265d80009)) - (fp_poly (pts - (xy 3.64 -10.88) - (xy 3.64 -8.46) - (xy 6.06 -8.46) - (xy 6.06 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)) - (fp_poly (pts - (xy -3.62 13.32) - (xy -3.62 15.74) - (xy -1.2 15.74) - (xy -1.2 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)) - (fp_poly (pts - (xy -25.4 -22.98) - (xy -25.4 -20.56) - (xy -22.98 -20.56) - (xy -22.98 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)) - (fp_poly (pts - (xy 1.22 -6.04) - (xy 1.22 -3.62) - (xy 3.64 -3.62) - (xy 3.64 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)) - (fp_poly (pts - (xy 20.58 -25.4) - (xy 20.58 -22.98) - (xy 23 -22.98) - (xy 23 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)) - (fp_poly (pts - (xy -13.3 -10.88) - (xy -13.3 -8.46) - (xy -10.88 -8.46) - (xy -10.88 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)) - (fp_poly (pts - (xy -25.4 23) - (xy -25.4 25.42) - (xy -22.98 25.42) - (xy -22.98 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)) - (fp_poly (pts - (xy -1.2 3.64) - (xy -1.2 6.06) - (xy 1.22 6.06) - (xy 1.22 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)) - (fp_poly (pts - (xy 1.22 18.16) - (xy 1.22 20.58) - (xy 3.64 20.58) - (xy 3.64 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059)) - (fp_poly (pts - (xy -10.88 23) - (xy -10.88 25.42) - (xy -8.46 25.42) - (xy -8.46 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7)) - (fp_poly (pts - (xy -22.98 -3.62) - (xy -22.98 -1.2) - (xy -20.56 -1.2) - (xy -20.56 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)) - (fp_poly (pts - (xy -3.62 -13.3) - (xy -3.62 -10.88) - (xy -1.2 -10.88) - (xy -1.2 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)) - (fp_poly (pts - (xy 10.9 -25.4) - (xy 10.9 -22.98) - (xy 13.32 -22.98) - (xy 13.32 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)) - (fp_poly (pts - (xy 8.48 -18.14) - (xy 8.48 -15.72) - (xy 10.9 -15.72) - (xy 10.9 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68)) - (fp_poly (pts - (xy -15.72 -3.62) - (xy -15.72 -1.2) - (xy -13.3 -1.2) - (xy -13.3 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)) - (fp_poly (pts - (xy -10.88 -1.2) - (xy -10.88 1.22) - (xy -8.46 1.22) - (xy -8.46 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)) - (fp_poly (pts - (xy 1.22 1.22) - (xy 1.22 3.64) - (xy 3.64 3.64) - (xy 3.64 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b)) - (fp_poly (pts - (xy -13.3 23) - (xy -13.3 25.42) - (xy -10.88 25.42) - (xy -10.88 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504)) - (fp_poly (pts - (xy 23 -15.72) - (xy 23 -13.3) - (xy 25.42 -13.3) - (xy 25.42 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)) - (fp_poly (pts - (xy -6.04 -25.4) - (xy -6.04 -22.98) - (xy -3.62 -22.98) - (xy -3.62 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)) - (fp_poly (pts - (xy -1.2 -3.62) - (xy -1.2 -1.2) - (xy 1.22 -1.2) - (xy 1.22 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf)) - (fp_poly (pts - (xy 1.22 20.58) - (xy 1.22 23) - (xy 3.64 23) - (xy 3.64 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)) - (fp_poly (pts - (xy -6.04 -1.2) - (xy -6.04 1.22) - (xy -3.62 1.22) - (xy -3.62 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4780a290-d25c-4459-9579-eba3f7678762)) - (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) (fill solid) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)) - (fp_poly (pts - (xy -1.2 -20.56) - (xy -1.2 -18.14) - (xy 1.22 -18.14) - (xy 1.22 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11)) - (fp_poly (pts - (xy -25.4 8.48) - (xy -25.4 10.9) - (xy -22.98 10.9) - (xy -22.98 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)) - (fp_poly (pts - (xy 18.16 -10.88) - (xy 18.16 -8.46) - (xy 20.58 -8.46) - (xy 20.58 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)) - (fp_poly (pts - (xy -20.56 -15.72) - (xy -20.56 -13.3) - (xy -18.14 -13.3) - (xy -18.14 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)) - (fp_poly (pts - (xy -6.04 8.48) - (xy -6.04 10.9) - (xy -3.62 10.9) - (xy -3.62 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)) - (fp_poly (pts - (xy -13.3 -25.4) - (xy -13.3 -22.98) - (xy -10.88 -22.98) - (xy -10.88 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72)) - (fp_poly (pts - (xy 18.16 6.06) - (xy 18.16 8.48) - (xy 20.58 8.48) - (xy 20.58 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb21471-41be-4be8-9687-66030f97befc)) - (fp_poly (pts - (xy -10.88 -22.98) - (xy -10.88 -20.56) - (xy -8.46 -20.56) - (xy -8.46 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)) - (fp_poly (pts - (xy -6.04 13.32) - (xy -6.04 15.74) - (xy -3.62 15.74) - (xy -3.62 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)) - (fp_poly (pts - (xy -3.62 -22.98) - (xy -3.62 -20.56) - (xy -1.2 -20.56) - (xy -1.2 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 54365317-1355-4216-bb75-829375abc4ec)) - (fp_poly (pts - (xy 10.9 -10.88) - (xy 10.9 -8.46) - (xy 13.32 -8.46) - (xy 13.32 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475)) - (fp_poly (pts - (xy -25.4 18.16) - (xy -25.4 20.58) - (xy -22.98 20.58) - (xy -22.98 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313)) - (fp_poly (pts - (xy 10.9 13.32) - (xy 10.9 15.74) - (xy 13.32 15.74) - (xy 13.32 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2)) - (fp_poly (pts - (xy -20.56 18.16) - (xy -20.56 20.58) - (xy -18.14 20.58) - (xy -18.14 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)) - (fp_poly (pts - (xy -25.4 -20.56) - (xy -25.4 -18.14) - (xy -22.98 -18.14) - (xy -22.98 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)) - (fp_poly (pts - (xy -20.56 8.48) - (xy -20.56 10.9) - (xy -18.14 10.9) - (xy -18.14 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)) - (fp_poly (pts - (xy -6.04 -6.04) - (xy -6.04 -3.62) - (xy -3.62 -3.62) - (xy -3.62 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)) - (fp_poly (pts - (xy 13.32 20.58) - (xy 13.32 23) - (xy 15.74 23) - (xy 15.74 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077)) - (fp_poly (pts - (xy 23 1.22) - (xy 23 3.64) - (xy 25.42 3.64) - (xy 25.42 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454)) - (fp_poly (pts - (xy -10.88 -6.04) - (xy -10.88 -3.62) - (xy -8.46 -3.62) - (xy -8.46 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)) - (fp_poly (pts - (xy -15.72 -10.88) - (xy -15.72 -8.46) - (xy -13.3 -8.46) - (xy -13.3 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6)) - (fp_poly (pts - (xy -15.72 23) - (xy -15.72 25.42) - (xy -13.3 25.42) - (xy -13.3 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9)) - (fp_poly (pts - (xy -8.46 -3.62) - (xy -8.46 -1.2) - (xy -6.04 -1.2) - (xy -6.04 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)) - (fp_poly (pts - (xy 10.9 23) - (xy 10.9 25.42) - (xy 13.32 25.42) - (xy 13.32 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019)) - (fp_poly (pts - (xy 3.64 10.9) - (xy 3.64 13.32) - (xy 6.06 13.32) - (xy 6.06 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)) - (fp_poly (pts - (xy -1.2 -10.88) - (xy -1.2 -8.46) - (xy 1.22 -8.46) - (xy 1.22 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66043bca-a260-4915-9fce-8a51d324c687)) - (fp_poly (pts - (xy 3.64 -25.4) - (xy 3.64 -22.98) - (xy 6.06 -22.98) - (xy 6.06 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66116376-6967-4178-9f23-a26cdeafc400)) - (fp_poly (pts - (xy 3.64 -15.72) - (xy 3.64 -13.3) - (xy 6.06 -13.3) - (xy 6.06 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b)) - (fp_poly (pts - (xy 3.64 18.16) - (xy 3.64 20.58) - (xy 6.06 20.58) - (xy 6.06 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)) - (fp_poly (pts - (xy 10.9 20.58) - (xy 10.9 23) - (xy 13.32 23) - (xy 13.32 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)) - (fp_poly (pts - (xy -6.04 6.06) - (xy -6.04 8.48) - (xy -3.62 8.48) - (xy -3.62 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 68877d35-b796-44db-9124-b8e744e7412e)) - (fp_poly (pts - (xy -18.14 -20.56) - (xy -18.14 -18.14) - (xy -15.72 -18.14) - (xy -15.72 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)) - (fp_poly (pts - (xy 23 -6.04) - (xy 23 -3.62) - (xy 25.42 -3.62) - (xy 25.42 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)) - (fp_poly (pts - (xy 1.22 13.32) - (xy 1.22 15.74) - (xy 3.64 15.74) - (xy 3.64 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6)) - (fp_poly (pts - (xy 1.22 -15.72) - (xy 1.22 -13.3) - (xy 3.64 -13.3) - (xy 3.64 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)) - (fp_poly (pts - (xy -15.72 18.16) - (xy -15.72 20.58) - (xy -13.3 20.58) - (xy -13.3 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848)) - (fp_poly (pts - (xy -20.56 -20.56) - (xy -20.56 -18.14) - (xy -18.14 -18.14) - (xy -18.14 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)) - (fp_poly (pts - (xy 6.06 6.06) - (xy 6.06 8.48) - (xy 8.48 8.48) - (xy 8.48 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047)) - (fp_poly (pts - (xy -25.4 15.74) - (xy -25.4 18.16) - (xy -22.98 18.16) - (xy -22.98 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)) - (fp_poly (pts - (xy 13.32 -20.56) - (xy 13.32 -18.14) - (xy 15.74 -18.14) - (xy 15.74 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)) - (fp_poly (pts - (xy 10.9 6.06) - (xy 10.9 8.48) - (xy 13.32 8.48) - (xy 13.32 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6)) - (fp_poly (pts - (xy -10.88 -20.56) - (xy -10.88 -18.14) - (xy -8.46 -18.14) - (xy -8.46 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811)) - (fp_poly (pts - (xy 10.9 8.48) - (xy 10.9 10.9) - (xy 13.32 10.9) - (xy 13.32 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)) - (fp_poly (pts - (xy 8.48 -25.4) - (xy 8.48 -22.98) - (xy 10.9 -22.98) - (xy 10.9 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)) - (fp_poly (pts - (xy 15.74 6.06) - (xy 15.74 8.48) - (xy 18.16 8.48) - (xy 18.16 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7599133e-c681-4202-85d9-c20dac196c64)) - (fp_poly (pts - (xy -13.3 -3.62) - (xy -13.3 -1.2) - (xy -10.88 -1.2) - (xy -10.88 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)) - (fp_poly (pts - (xy 13.32 10.9) - (xy 13.32 13.32) - (xy 15.74 13.32) - (xy 15.74 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5)) - (fp_poly (pts - (xy -18.14 -25.4) - (xy -18.14 -22.98) - (xy -15.72 -22.98) - (xy -15.72 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)) - (fp_poly (pts - (xy 23 10.9) - (xy 23 13.32) - (xy 25.42 13.32) - (xy 25.42 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)) - (fp_poly (pts - (xy 15.74 -15.72) - (xy 15.74 -13.3) - (xy 18.16 -13.3) - (xy 18.16 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827)) - (fp_poly (pts - (xy 8.48 -10.88) - (xy 8.48 -8.46) - (xy 10.9 -8.46) - (xy 10.9 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743)) - (fp_poly (pts - (xy 1.22 15.74) - (xy 1.22 18.16) - (xy 3.64 18.16) - (xy 3.64 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)) - (fp_poly (pts - (xy 15.74 -3.62) - (xy 15.74 -1.2) - (xy 18.16 -1.2) - (xy 18.16 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)) - (fp_poly (pts - (xy 6.06 8.48) - (xy 6.06 10.9) - (xy 8.48 10.9) - (xy 8.48 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)) - (fp_poly (pts - (xy 8.48 -15.72) - (xy 8.48 -13.3) - (xy 10.9 -13.3) - (xy 10.9 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)) - (fp_poly (pts - (xy -8.46 -1.2) - (xy -8.46 1.22) - (xy -6.04 1.22) - (xy -6.04 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)) - (fp_poly (pts - (xy 13.32 -10.88) - (xy 13.32 -8.46) - (xy 15.74 -8.46) - (xy 15.74 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)) - (fp_poly (pts - (xy 13.32 23) - (xy 13.32 25.42) - (xy 15.74 25.42) - (xy 15.74 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb)) - (fp_poly (pts - (xy -22.98 -10.88) - (xy -22.98 -8.46) - (xy -20.56 -8.46) - (xy -20.56 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)) - (fp_poly (pts - (xy 3.64 23) - (xy 3.64 25.42) - (xy 6.06 25.42) - (xy 6.06 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296)) - (fp_poly (pts - (xy 8.48 -20.56) - (xy 8.48 -18.14) - (xy 10.9 -18.14) - (xy 10.9 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)) - (fp_poly (pts - (xy 15.74 3.64) - (xy 15.74 6.06) - (xy 18.16 6.06) - (xy 18.16 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff)) - (fp_poly (pts - (xy -1.2 20.58) - (xy -1.2 23) - (xy 1.22 23) - (xy 1.22 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)) - (fp_poly (pts - (xy -6.04 -10.88) - (xy -6.04 -8.46) - (xy -3.62 -8.46) - (xy -3.62 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 852dabbf-de45-4470-8176-59d37a754407)) - (fp_poly (pts - (xy 18.16 15.74) - (xy 18.16 18.16) - (xy 20.58 18.16) - (xy 20.58 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5)) - (fp_poly (pts - (xy -15.72 8.48) - (xy -15.72 10.9) - (xy -13.3 10.9) - (xy -13.3 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76)) - (fp_poly (pts - (xy 23 -25.4) - (xy 23 -22.98) - (xy 25.42 -22.98) - (xy 25.42 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87371631-aa02-498a-998a-09bdb74784c1)) - (fp_poly (pts - (xy 23 20.58) - (xy 23 23) - (xy 25.42 23) - (xy 25.42 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87d7448e-e139-4209-ae0b-372f805267da)) - (fp_poly (pts - (xy 8.48 8.48) - (xy 8.48 10.9) - (xy 10.9 10.9) - (xy 10.9 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)) - (fp_poly (pts - (xy -1.2 1.22) - (xy -1.2 3.64) - (xy 1.22 3.64) - (xy 1.22 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)) - (fp_poly (pts - (xy -6.04 -3.62) - (xy -6.04 -1.2) - (xy -3.62 -1.2) - (xy -3.62 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)) - (fp_poly (pts - (xy -25.4 3.64) - (xy -25.4 6.06) - (xy -22.98 6.06) - (xy -22.98 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) - (fp_poly (pts - (xy 6.06 18.16) - (xy 6.06 20.58) - (xy 8.48 20.58) - (xy 8.48 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7)) - (fp_poly (pts - (xy 6.06 -6.04) - (xy 6.06 -3.62) - (xy 8.48 -3.62) - (xy 8.48 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)) - (fp_poly (pts - (xy -20.56 -1.2) - (xy -20.56 1.22) - (xy -18.14 1.22) - (xy -18.14 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)) (fp_poly (pts (xy 1.22 6.06) (xy 1.22 8.48) (xy 3.64 8.48) (xy 3.64 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768)) (fp_poly (pts - (xy 13.32 -15.72) - (xy 13.32 -13.3) - (xy 15.74 -13.3) - (xy 15.74 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)) + (xy -20.56 -10.88) + (xy -20.56 -8.46) + (xy -18.14 -8.46) + (xy -18.14 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)) (fp_poly (pts - (xy 23 -13.3) - (xy 23 -10.88) - (xy 25.42 -10.88) - (xy 25.42 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)) + (xy -8.46 3.64) + (xy -8.46 6.06) + (xy -6.04 6.06) + (xy -6.04 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)) (fp_poly (pts - (xy -20.56 -18.14) - (xy -20.56 -15.72) - (xy -18.14 -15.72) - (xy -18.14 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3)) + (xy 23 -22.98) + (xy 23 -20.56) + (xy 25.42 -20.56) + (xy 25.42 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc)) (fp_poly (pts - (xy -25.4 -15.72) - (xy -25.4 -13.3) - (xy -22.98 -13.3) - (xy -22.98 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)) + (xy 1.22 13.32) + (xy 1.22 15.74) + (xy 3.64 15.74) + (xy 3.64 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb)) (fp_poly (pts - (xy -25.4 10.9) - (xy -25.4 13.32) - (xy -22.98 13.32) - (xy -22.98 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 965308c8-e014-459a-b9db-b8493a601c62)) + (xy 23 -6.04) + (xy 23 -3.62) + (xy 25.42 -3.62) + (xy 25.42 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)) (fp_poly (pts - (xy 8.48 -13.3) - (xy 8.48 -10.88) (xy 10.9 -10.88) - (xy 10.9 -13.3) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)) + (xy 10.9 -8.46) + (xy 13.32 -8.46) + (xy 13.32 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3)) + (fp_poly (pts + (xy 15.74 6.06) + (xy 15.74 8.48) + (xy 18.16 8.48) + (xy 18.16 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)) + (fp_poly (pts + (xy 20.58 -25.4) + (xy 20.58 -22.98) + (xy 23 -22.98) + (xy 23 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 097edb1b-8998-4e70-b670-bba125982348)) + (fp_poly (pts + (xy 3.64 -25.4) + (xy 3.64 -22.98) + (xy 6.06 -22.98) + (xy 6.06 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a)) + (fp_poly (pts + (xy 20.58 13.32) + (xy 20.58 15.74) + (xy 23 15.74) + (xy 23 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136)) + (fp_poly (pts + (xy -3.62 -13.3) + (xy -3.62 -10.88) + (xy -1.2 -10.88) + (xy -1.2 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb)) + (fp_poly (pts + (xy -3.62 -22.98) + (xy -3.62 -20.56) + (xy -1.2 -20.56) + (xy -1.2 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)) + (fp_poly (pts + (xy 1.22 15.74) + (xy 1.22 18.16) + (xy 3.64 18.16) + (xy 3.64 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)) + (fp_poly (pts + (xy -20.56 15.74) + (xy -20.56 18.16) + (xy -18.14 18.16) + (xy -18.14 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55)) + (fp_poly (pts + (xy 6.06 8.48) + (xy 6.06 10.9) + (xy 8.48 10.9) + (xy 8.48 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)) + (fp_poly (pts + (xy 18.16 -6.04) + (xy 18.16 -3.62) + (xy 20.58 -3.62) + (xy 20.58 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) (fp_poly (pts (xy 8.48 23) (xy 8.48 25.42) (xy 10.9 25.42) (xy 10.9 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1)) (fp_poly (pts - (xy 8.48 20.58) - (xy 8.48 23) - (xy 10.9 23) - (xy 10.9 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e)) - (fp_poly (pts - (xy -18.14 -6.04) - (xy -18.14 -3.62) - (xy -15.72 -3.62) - (xy -15.72 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949)) - (fp_poly (pts - (xy -15.72 -15.72) - (xy -15.72 -13.3) - (xy -13.3 -13.3) - (xy -13.3 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d)) - (fp_poly (pts - (xy -3.62 15.74) - (xy -3.62 18.16) - (xy -1.2 18.16) - (xy -1.2 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)) - (fp_poly (pts - (xy -13.3 -6.04) - (xy -13.3 -3.62) - (xy -10.88 -3.62) - (xy -10.88 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)) - (fp_poly (pts - (xy -1.2 6.06) - (xy -1.2 8.48) - (xy 1.22 8.48) - (xy 1.22 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940)) - (fp_poly (pts - (xy 18.16 20.58) - (xy 18.16 23) - (xy 20.58 23) - (xy 20.58 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)) - (fp_poly (pts - (xy 13.32 1.22) - (xy 13.32 3.64) - (xy 15.74 3.64) - (xy 15.74 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a15a7506-eae4-4933-84da-9ad754258706)) - (fp_poly (pts - (xy -18.14 13.32) - (xy -18.14 15.74) - (xy -15.72 15.74) - (xy -15.72 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a17904b9-135e-4dae-ae20-401c7787de72)) - (fp_poly (pts - (xy 18.16 -18.14) - (xy 18.16 -15.72) - (xy 20.58 -15.72) - (xy 20.58 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)) - (fp_poly (pts - (xy 3.64 3.64) - (xy 3.64 6.06) - (xy 6.06 6.06) - (xy 6.06 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)) - (fp_poly (pts - (xy 1.22 -22.98) - (xy 1.22 -20.56) - (xy 3.64 -20.56) - (xy 3.64 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)) - (fp_poly (pts - (xy 3.64 -3.62) - (xy 3.64 -1.2) - (xy 6.06 -1.2) - (xy 6.06 -3.62) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b)) - (fp_poly (pts - (xy -10.88 8.48) - (xy -10.88 10.9) - (xy -8.46 10.9) - (xy -8.46 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222)) - (fp_poly (pts - (xy 3.64 -22.98) - (xy 3.64 -20.56) - (xy 6.06 -20.56) - (xy 6.06 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3)) - (fp_poly (pts - (xy 15.74 23) - (xy 15.74 25.42) - (xy 18.16 25.42) - (xy 18.16 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151)) - (fp_poly (pts - (xy -18.14 -15.72) - (xy -18.14 -13.3) - (xy -15.72 -13.3) - (xy -15.72 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d)) - (fp_poly (pts - (xy 18.16 18.16) - (xy 18.16 20.58) - (xy 20.58 20.58) - (xy 20.58 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)) - (fp_poly (pts - (xy 13.32 8.48) - (xy 13.32 10.9) - (xy 15.74 10.9) - (xy 15.74 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)) - (fp_poly (pts - (xy -6.04 -22.98) - (xy -6.04 -20.56) - (xy -3.62 -20.56) - (xy -3.62 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497)) - (fp_poly (pts - (xy 20.58 -1.2) - (xy 20.58 1.22) - (xy 23 1.22) - (xy 23 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)) - (fp_poly (pts - (xy -15.72 -20.56) - (xy -15.72 -18.14) - (xy -13.3 -18.14) - (xy -13.3 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9)) - (fp_poly (pts - (xy -10.88 10.9) - (xy -10.88 13.32) - (xy -8.46 13.32) - (xy -8.46 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e)) + (xy -18.14 1.22) + (xy -18.14 3.64) + (xy -15.72 3.64) + (xy -15.72 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)) (fp_poly (pts (xy -10.88 18.16) (xy -10.88 20.58) (xy -8.46 20.58) (xy -8.46 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e)) (fp_poly (pts - (xy -10.88 -10.88) + (xy 1.22 -6.04) + (xy 1.22 -3.62) + (xy 3.64 -3.62) + (xy 3.64 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d)) + (fp_poly (pts + (xy -18.14 -18.14) + (xy -18.14 -15.72) + (xy -15.72 -15.72) + (xy -15.72 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa)) + (fp_poly (pts + (xy -6.04 -22.98) + (xy -6.04 -20.56) + (xy -3.62 -20.56) + (xy -3.62 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)) + (fp_poly (pts + (xy 8.48 -15.72) + (xy 8.48 -13.3) + (xy 10.9 -13.3) + (xy 10.9 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7)) + (fp_poly (pts + (xy -13.3 -10.88) + (xy -13.3 -8.46) (xy -10.88 -8.46) - (xy -8.46 -8.46) - (xy -8.46 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3)) + (xy -10.88 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)) + (fp_poly (pts + (xy -3.62 15.74) + (xy -3.62 18.16) + (xy -1.2 18.16) + (xy -1.2 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)) + (fp_poly (pts + (xy -25.4 -15.72) + (xy -25.4 -13.3) + (xy -22.98 -13.3) + (xy -22.98 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36)) + (fp_poly (pts + (xy -18.14 15.74) + (xy -18.14 18.16) + (xy -15.72 18.16) + (xy -15.72 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc)) + (fp_poly (pts + (xy -20.56 -18.14) + (xy -20.56 -15.72) + (xy -18.14 -15.72) + (xy -18.14 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)) + (fp_poly (pts + (xy 3.64 10.9) + (xy 3.64 13.32) + (xy 6.06 13.32) + (xy 6.06 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)) + (fp_poly (pts + (xy -8.46 1.22) + (xy -8.46 3.64) + (xy -6.04 3.64) + (xy -6.04 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f)) + (fp_poly (pts + (xy -25.4 10.9) + (xy -25.4 13.32) + (xy -22.98 13.32) + (xy -22.98 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)) + (fp_poly (pts + (xy -25.4 3.64) + (xy -25.4 6.06) + (xy -22.98 6.06) + (xy -22.98 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)) + (fp_poly (pts + (xy 10.9 20.58) + (xy 10.9 23) + (xy 13.32 23) + (xy 13.32 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268)) + (fp_poly (pts + (xy -15.72 -25.4) + (xy -15.72 -22.98) + (xy -13.3 -22.98) + (xy -13.3 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)) + (fp_poly (pts + (xy 15.74 -3.62) + (xy 15.74 -1.2) + (xy 18.16 -1.2) + (xy 18.16 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)) + (fp_poly (pts + (xy 20.58 -6.04) + (xy 20.58 -3.62) + (xy 23 -3.62) + (xy 23 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)) + (fp_poly (pts + (xy -25.4 -18.14) + (xy -25.4 -15.72) + (xy -22.98 -15.72) + (xy -22.98 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)) + (fp_poly (pts + (xy 6.06 6.06) + (xy 6.06 8.48) + (xy 8.48 8.48) + (xy 8.48 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)) + (fp_poly (pts + (xy 8.48 -22.98) + (xy 8.48 -20.56) + (xy 10.9 -20.56) + (xy 10.9 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0)) + (fp_poly (pts + (xy 18.16 1.22) + (xy 18.16 3.64) + (xy 20.58 3.64) + (xy 20.58 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)) + (fp_poly (pts + (xy -25.4 -1.2) + (xy -25.4 1.22) + (xy -22.98 1.22) + (xy -22.98 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)) + (fp_poly (pts + (xy 1.22 -20.56) + (xy 1.22 -18.14) + (xy 3.64 -18.14) + (xy 3.64 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb)) + (fp_poly (pts + (xy -6.04 13.32) + (xy -6.04 15.74) + (xy -3.62 15.74) + (xy -3.62 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)) + (fp_poly (pts + (xy -25.4 13.32) + (xy -25.4 15.74) + (xy -22.98 15.74) + (xy -22.98 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3)) + (fp_poly (pts + (xy -10.88 -22.98) + (xy -10.88 -20.56) + (xy -8.46 -20.56) + (xy -8.46 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d67a417-188f-4014-9282-000265d80009)) + (fp_poly (pts + (xy -22.98 8.48) + (xy -22.98 10.9) + (xy -20.56 10.9) + (xy -20.56 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)) + (fp_poly (pts + (xy 18.16 -18.14) + (xy 18.16 -15.72) + (xy 20.58 -15.72) + (xy 20.58 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8)) + (fp_poly (pts + (xy -1.2 20.58) + (xy -1.2 23) + (xy 1.22 23) + (xy 1.22 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)) + (fp_poly (pts + (xy 10.9 3.64) + (xy 10.9 6.06) + (xy 13.32 6.06) + (xy 13.32 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)) + (fp_poly (pts + (xy 6.06 20.58) + (xy 6.06 23) + (xy 8.48 23) + (xy 8.48 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)) + (fp_poly (pts + (xy -13.3 8.48) + (xy -13.3 10.9) + (xy -10.88 10.9) + (xy -10.88 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3)) + (fp_poly (pts + (xy -6.04 -25.4) + (xy -6.04 -22.98) + (xy -3.62 -22.98) + (xy -3.62 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)) + (fp_poly (pts + (xy 13.32 -6.04) + (xy 13.32 -3.62) + (xy 15.74 -3.62) + (xy 15.74 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)) + (fp_poly (pts + (xy -15.72 -20.56) + (xy -15.72 -18.14) + (xy -13.3 -18.14) + (xy -13.3 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059)) + (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) (fill solid) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7)) + (fp_poly (pts + (xy 23 1.22) + (xy 23 3.64) + (xy 25.42 3.64) + (xy 25.42 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)) + (fp_poly (pts + (xy 15.74 8.48) + (xy 15.74 10.9) + (xy 18.16 10.9) + (xy 18.16 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)) + (fp_poly (pts + (xy 15.74 20.58) + (xy 15.74 23) + (xy 18.16 23) + (xy 18.16 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)) + (fp_poly (pts + (xy 10.9 13.32) + (xy 10.9 15.74) + (xy 13.32 15.74) + (xy 13.32 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68)) + (fp_poly (pts + (xy 13.32 1.22) + (xy 13.32 3.64) + (xy 15.74 3.64) + (xy 15.74 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)) + (fp_poly (pts + (xy 23 -1.2) + (xy 23 1.22) + (xy 25.42 1.22) + (xy 25.42 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)) + (fp_poly (pts + (xy -6.04 -3.62) + (xy -6.04 -1.2) + (xy -3.62 -1.2) + (xy -3.62 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b)) + (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) (fill solid) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504)) + (fp_poly (pts + (xy -6.04 10.9) + (xy -6.04 13.32) + (xy -3.62 13.32) + (xy -3.62 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)) + (fp_poly (pts + (xy -25.4 23) + (xy -25.4 25.42) + (xy -22.98 25.42) + (xy -22.98 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)) + (fp_poly (pts + (xy -1.2 1.22) + (xy -1.2 3.64) + (xy 1.22 3.64) + (xy 1.22 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf)) + (fp_poly (pts + (xy 23 -25.4) + (xy 23 -22.98) + (xy 25.42 -22.98) + (xy 25.42 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a)) + (fp_poly (pts + (xy 10.9 -1.2) + (xy 10.9 1.22) + (xy 13.32 1.22) + (xy 13.32 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4780a290-d25c-4459-9579-eba3f7678762)) + (fp_poly (pts + (xy -13.3 23) + (xy -13.3 25.42) + (xy -10.88 25.42) + (xy -10.88 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)) + (fp_poly (pts + (xy -15.72 18.16) + (xy -15.72 20.58) + (xy -13.3 20.58) + (xy -13.3 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11)) + (fp_poly (pts + (xy 8.48 -10.88) + (xy 8.48 -8.46) + (xy 10.9 -8.46) + (xy 10.9 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)) + (fp_poly (pts + (xy 13.32 6.06) + (xy 13.32 8.48) + (xy 15.74 8.48) + (xy 15.74 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)) + (fp_poly (pts + (xy -15.72 13.32) + (xy -15.72 15.74) + (xy -13.3 15.74) + (xy -13.3 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)) + (fp_poly (pts + (xy -18.14 -10.88) + (xy -18.14 -8.46) + (xy -15.72 -8.46) + (xy -15.72 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)) + (fp_poly (pts + (xy -20.56 23) + (xy -20.56 25.42) + (xy -18.14 25.42) + (xy -18.14 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72)) + (fp_poly (pts + (xy 13.32 -10.88) + (xy 13.32 -8.46) + (xy 15.74 -8.46) + (xy 15.74 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 4fb21471-41be-4be8-9687-66030f97befc)) + (fp_poly (pts + (xy -10.88 20.58) + (xy -10.88 23) + (xy -8.46 23) + (xy -8.46 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)) + (fp_poly (pts + (xy 23 -18.14) + (xy 23 -15.72) + (xy 25.42 -15.72) + (xy 25.42 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0)) + (fp_poly (pts + (xy 23 18.16) + (xy 23 20.58) + (xy 25.42 20.58) + (xy 25.42 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 54365317-1355-4216-bb75-829375abc4ec)) + (fp_poly (pts + (xy 20.58 6.06) + (xy 20.58 8.48) + (xy 23 8.48) + (xy 23 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475)) + (fp_poly (pts + (xy 3.64 23) + (xy 3.64 25.42) + (xy 6.06 25.42) + (xy 6.06 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9)) + (fp_poly (pts + (xy 8.48 -20.56) + (xy 8.48 -18.14) + (xy 10.9 -18.14) + (xy 10.9 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313)) + (fp_poly (pts + (xy 8.48 -18.14) + (xy 8.48 -15.72) + (xy 10.9 -15.72) + (xy 10.9 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2)) + (fp_poly (pts + (xy 3.64 -20.56) + (xy 3.64 -18.14) + (xy 6.06 -18.14) + (xy 6.06 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)) + (fp_poly (pts + (xy 8.48 18.16) + (xy 8.48 20.58) + (xy 10.9 20.58) + (xy 10.9 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)) + (fp_poly (pts + (xy -1.2 -10.88) + (xy -1.2 -8.46) + (xy 1.22 -8.46) + (xy 1.22 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)) + (fp_poly (pts + (xy 13.32 3.64) + (xy 13.32 6.06) + (xy 15.74 6.06) + (xy 15.74 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)) + (fp_poly (pts + (xy 13.32 -25.4) + (xy 13.32 -22.98) + (xy 15.74 -22.98) + (xy 15.74 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077)) + (fp_poly (pts + (xy -22.98 -3.62) + (xy -22.98 -1.2) + (xy -20.56 -1.2) + (xy -20.56 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454)) + (fp_poly (pts + (xy 20.58 3.64) + (xy 20.58 6.06) + (xy 23 6.06) + (xy 23 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)) + (fp_poly (pts + (xy -10.88 8.48) + (xy -10.88 10.9) + (xy -8.46 10.9) + (xy -8.46 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6)) + (fp_poly (pts + (xy -18.14 -25.4) + (xy -18.14 -22.98) + (xy -15.72 -22.98) + (xy -15.72 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9)) + (fp_poly (pts + (xy 3.64 1.22) + (xy 3.64 3.64) + (xy 6.06 3.64) + (xy 6.06 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)) + (fp_poly (pts + (xy 18.16 -15.72) + (xy 18.16 -13.3) + (xy 20.58 -13.3) + (xy 20.58 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)) + (fp_poly (pts + (xy -20.56 8.48) + (xy -20.56 10.9) + (xy -18.14 10.9) + (xy -18.14 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66043bca-a260-4915-9fce-8a51d324c687)) + (fp_poly (pts + (xy 20.58 20.58) + (xy 20.58 23) + (xy 23 23) + (xy 23 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 66116376-6967-4178-9f23-a26cdeafc400)) + (fp_poly (pts + (xy 18.16 10.9) + (xy 18.16 13.32) + (xy 20.58 13.32) + (xy 20.58 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b)) + (fp_poly (pts + (xy -18.14 -20.56) + (xy -18.14 -18.14) + (xy -15.72 -18.14) + (xy -15.72 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)) + (fp_poly (pts + (xy 15.74 -25.4) + (xy 15.74 -22.98) + (xy 18.16 -22.98) + (xy 18.16 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)) + (fp_poly (pts + (xy -15.72 -6.04) + (xy -15.72 -3.62) + (xy -13.3 -3.62) + (xy -13.3 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 68877d35-b796-44db-9124-b8e744e7412e)) + (fp_poly (pts + (xy 3.64 18.16) + (xy 3.64 20.58) + (xy 6.06 20.58) + (xy 6.06 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)) + (fp_poly (pts + (xy -22.98 3.64) + (xy -22.98 6.06) + (xy -20.56 6.06) + (xy -20.56 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)) + (fp_poly (pts + (xy 15.74 -18.14) + (xy 15.74 -15.72) + (xy 18.16 -15.72) + (xy 18.16 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6)) + (fp_poly (pts + (xy 20.58 10.9) + (xy 20.58 13.32) + (xy 23 13.32) + (xy 23 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)) + (fp_poly (pts + (xy -1.2 -20.56) + (xy -1.2 -18.14) + (xy 1.22 -18.14) + (xy 1.22 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848)) + (fp_poly (pts + (xy 6.06 18.16) + (xy 6.06 20.58) + (xy 8.48 20.58) + (xy 8.48 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)) + (fp_poly (pts + (xy -3.62 -8.46) + (xy -3.62 -6.04) + (xy -1.2 -6.04) + (xy -1.2 -8.46) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047)) + (fp_poly (pts + (xy -10.88 -18.14) + (xy -10.88 -15.72) + (xy -8.46 -15.72) + (xy -8.46 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)) + (fp_poly (pts + (xy 18.16 15.74) + (xy 18.16 18.16) + (xy 20.58 18.16) + (xy 20.58 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)) + (fp_poly (pts + (xy 20.58 -10.88) + (xy 20.58 -8.46) + (xy 23 -8.46) + (xy 23 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6)) + (fp_poly (pts + (xy -1.2 18.16) + (xy -1.2 20.58) + (xy 1.22 20.58) + (xy 1.22 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811)) + (fp_poly (pts + (xy 10.9 23) + (xy 10.9 25.42) + (xy 13.32 25.42) + (xy 13.32 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e)) + (fp_poly (pts + (xy 8.48 -13.3) + (xy 8.48 -10.88) + (xy 10.9 -10.88) + (xy 10.9 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)) + (fp_poly (pts + (xy 13.32 23) + (xy 13.32 25.42) + (xy 15.74 25.42) + (xy 15.74 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21)) + (fp_poly (pts + (xy 18.16 20.58) + (xy 18.16 23) + (xy 20.58 23) + (xy 20.58 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)) + (fp_poly (pts + (xy 15.74 -10.88) + (xy 15.74 -8.46) + (xy 18.16 -8.46) + (xy 18.16 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7599133e-c681-4202-85d9-c20dac196c64)) + (fp_poly (pts + (xy 10.9 1.22) + (xy 10.9 3.64) + (xy 13.32 3.64) + (xy 13.32 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)) + (fp_poly (pts + (xy 13.32 -15.72) + (xy 13.32 -13.3) + (xy 15.74 -13.3) + (xy 15.74 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5)) + (fp_poly (pts + (xy -15.72 23) + (xy -15.72 25.42) + (xy -13.3 25.42) + (xy -13.3 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)) + (fp_poly (pts + (xy -6.04 -15.72) + (xy -6.04 -13.3) + (xy -3.62 -13.3) + (xy -3.62 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80)) (fp_poly (pts (xy 8.48 10.9) (xy 8.48 13.32) (xy 10.9 13.32) (xy 10.9 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827)) + (fp_poly (pts + (xy -25.4 8.48) + (xy -25.4 10.9) + (xy -22.98 10.9) + (xy -22.98 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743)) + (fp_poly (pts + (xy 15.74 -20.56) + (xy 15.74 -18.14) + (xy 18.16 -18.14) + (xy 18.16 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464)) + (fp_poly (pts + (xy -15.72 1.22) + (xy -15.72 3.64) + (xy -13.3 3.64) + (xy -13.3 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)) + (fp_poly (pts + (xy -25.4 -10.88) + (xy -25.4 -8.46) + (xy -22.98 -8.46) + (xy -22.98 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)) + (fp_poly (pts + (xy 15.74 10.9) + (xy 15.74 13.32) + (xy 18.16 13.32) + (xy 18.16 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)) + (fp_poly (pts + (xy 20.58 -1.2) + (xy 20.58 1.22) + (xy 23 1.22) + (xy 23 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)) + (fp_poly (pts + (xy 18.16 6.06) + (xy 18.16 8.48) + (xy 20.58 8.48) + (xy 20.58 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)) + (fp_poly (pts + (xy 3.64 8.48) + (xy 3.64 10.9) + (xy 6.06 10.9) + (xy 6.06 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)) + (fp_poly (pts + (xy -25.4 18.16) + (xy -25.4 20.58) + (xy -22.98 20.58) + (xy -22.98 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)) (fp_poly (pts (xy -8.46 -6.04) (xy -8.46 -3.62) (xy -6.04 -3.62) (xy -6.04 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff)) + (fp_poly (pts + (xy -25.4 -22.98) + (xy -25.4 -20.56) + (xy -22.98 -20.56) + (xy -22.98 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)) + (fp_poly (pts + (xy -18.14 8.48) + (xy -18.14 10.9) + (xy -15.72 10.9) + (xy -15.72 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 852dabbf-de45-4470-8176-59d37a754407)) + (fp_poly (pts + (xy 13.32 -20.56) + (xy 13.32 -18.14) + (xy 15.74 -18.14) + (xy 15.74 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5)) + (fp_poly (pts + (xy -10.88 -10.88) + (xy -10.88 -8.46) + (xy -8.46 -8.46) + (xy -8.46 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76)) + (fp_poly (pts + (xy 1.22 20.58) + (xy 1.22 23) + (xy 3.64 23) + (xy 3.64 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87371631-aa02-498a-998a-09bdb74784c1)) + (fp_poly (pts + (xy -1.2 -25.4) + (xy -1.2 -22.98) + (xy 1.22 -22.98) + (xy 1.22 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 87d7448e-e139-4209-ae0b-372f805267da)) + (fp_poly (pts + (xy 23 -13.3) + (xy 23 -10.88) + (xy 25.42 -10.88) + (xy 25.42 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)) + (fp_poly (pts + (xy -1.2 -3.62) + (xy -1.2 -1.2) + (xy 1.22 -1.2) + (xy 1.22 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)) + (fp_poly (pts + (xy 1.22 1.22) + (xy 1.22 3.64) + (xy 3.64 3.64) + (xy 3.64 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)) + (fp_poly (pts + (xy -25.4 -3.62) + (xy -25.4 -1.2) + (xy -22.98 -1.2) + (xy -22.98 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) + (fp_poly (pts + (xy -20.56 -20.56) + (xy -20.56 -18.14) + (xy -18.14 -18.14) + (xy -18.14 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7)) + (fp_poly (pts + (xy 3.64 3.64) + (xy 3.64 6.06) + (xy 6.06 6.06) + (xy 6.06 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)) + (fp_poly (pts + (xy -20.56 1.22) + (xy -20.56 3.64) + (xy -18.14 3.64) + (xy -18.14 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)) + (fp_poly (pts + (xy -1.2 -8.46) + (xy -1.2 -6.04) + (xy 1.22 -6.04) + (xy 1.22 -8.46) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17)) + (fp_poly (pts + (xy 13.32 10.9) + (xy 13.32 13.32) + (xy 15.74 13.32) + (xy 15.74 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)) + (fp_poly (pts + (xy 8.48 8.48) + (xy 8.48 10.9) + (xy 10.9 10.9) + (xy 10.9 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a)) + (fp_poly (pts + (xy -15.72 15.74) + (xy -15.72 18.16) + (xy -13.3 18.16) + (xy -13.3 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3)) + (fp_poly (pts + (xy -10.88 13.32) + (xy -10.88 15.74) + (xy -8.46 15.74) + (xy -8.46 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)) + (fp_poly (pts + (xy -10.88 -13.3) + (xy -10.88 -10.88) + (xy -8.46 -10.88) + (xy -8.46 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 965308c8-e014-459a-b9db-b8493a601c62)) + (fp_poly (pts + (xy 10.9 8.48) + (xy 10.9 10.9) + (xy 13.32 10.9) + (xy 13.32 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a)) + (fp_poly (pts + (xy 18.16 -25.4) + (xy 18.16 -22.98) + (xy 20.58 -22.98) + (xy 20.58 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e)) (fp_poly (pts (xy -3.62 6.06) (xy -3.62 8.48) (xy -1.2 8.48) (xy -1.2 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949)) + (fp_poly (pts + (xy -20.56 13.32) + (xy -20.56 15.74) + (xy -18.14 15.74) + (xy -18.14 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d)) + (fp_poly (pts + (xy 18.16 -20.56) + (xy 18.16 -18.14) + (xy 20.58 -18.14) + (xy 20.58 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)) + (fp_poly (pts + (xy 23 3.64) + (xy 23 6.06) + (xy 25.42 6.06) + (xy 25.42 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)) + (fp_poly (pts + (xy -25.4 -6.04) + (xy -25.4 -3.62) + (xy -22.98 -3.62) + (xy -22.98 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940)) + (fp_poly (pts + (xy 8.48 -25.4) + (xy 8.48 -22.98) + (xy 10.9 -22.98) + (xy 10.9 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534)) + (fp_poly (pts + (xy -15.72 -3.62) + (xy -15.72 -1.2) + (xy -13.3 -1.2) + (xy -13.3 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a15a7506-eae4-4933-84da-9ad754258706)) + (fp_poly (pts + (xy -18.14 -15.72) + (xy -18.14 -13.3) + (xy -15.72 -13.3) + (xy -15.72 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a17904b9-135e-4dae-ae20-401c7787de72)) + (fp_poly (pts + (xy -3.62 13.32) + (xy -3.62 15.74) + (xy -1.2 15.74) + (xy -1.2 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)) + (fp_poly (pts + (xy 6.06 -6.04) + (xy 6.06 -3.62) + (xy 8.48 -3.62) + (xy 8.48 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)) + (fp_poly (pts + (xy 20.58 18.16) + (xy 20.58 20.58) + (xy 23 20.58) + (xy 23 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)) + (fp_poly (pts + (xy -3.62 1.22) + (xy -3.62 3.64) + (xy -1.2 3.64) + (xy -1.2 1.22) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b)) + (fp_poly (pts + (xy -15.72 -10.88) + (xy -15.72 -8.46) + (xy -13.3 -8.46) + (xy -13.3 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222)) + (fp_poly (pts + (xy 18.16 18.16) + (xy 18.16 20.58) + (xy 20.58 20.58) + (xy 20.58 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3)) + (fp_poly (pts + (xy -18.14 13.32) + (xy -18.14 15.74) + (xy -15.72 15.74) + (xy -15.72 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d)) + (fp_poly (pts + (xy 3.64 -22.98) + (xy 3.64 -20.56) + (xy 6.06 -20.56) + (xy 6.06 -22.98) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa)) + (fp_poly (pts + (xy -1.2 -13.3) + (xy -1.2 -10.88) + (xy 1.22 -10.88) + (xy 1.22 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)) + (fp_poly (pts + (xy -25.4 20.58) + (xy -25.4 23) + (xy -22.98 23) + (xy -22.98 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497)) + (fp_poly (pts + (xy -8.46 -1.2) + (xy -8.46 1.22) + (xy -6.04 1.22) + (xy -6.04 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)) + (fp_poly (pts + (xy 1.22 18.16) + (xy 1.22 20.58) + (xy 3.64 20.58) + (xy 3.64 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9)) + (fp_poly (pts + (xy -25.4 -13.3) + (xy -25.4 -10.88) + (xy -22.98 -10.88) + (xy -22.98 -13.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e)) + (fp_poly (pts + (xy -6.04 -20.56) + (xy -6.04 -18.14) + (xy -3.62 -18.14) + (xy -3.62 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53)) + (fp_poly (pts + (xy -15.72 8.48) + (xy -15.72 10.9) + (xy -13.3 10.9) + (xy -13.3 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3)) + (fp_poly (pts + (xy 15.74 -15.72) + (xy 15.74 -13.3) + (xy 18.16 -13.3) + (xy 18.16 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65)) + (fp_poly (pts + (xy 15.74 3.64) + (xy 15.74 6.06) + (xy 18.16 6.06) + (xy 18.16 3.64) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996)) + (fp_poly (pts + (xy -18.14 -6.04) + (xy -18.14 -3.62) + (xy -15.72 -3.62) + (xy -15.72 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e)) (fp_poly (pts (xy 3.64 -1.2) @@ -1188,370 +1187,376 @@ (xy 6.06 -1.2) ) (layer "F.Cu") (width 0) (fill solid) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)) (fp_poly (pts - (xy 20.58 13.32) - (xy 20.58 15.74) - (xy 23 15.74) - (xy 23 13.32) + (xy -1.2 -18.14) + (xy -1.2 -15.72) + (xy 1.22 -15.72) + (xy 1.22 -18.14) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7)) (fp_poly (pts - (xy 13.32 -6.04) - (xy 13.32 -3.62) - (xy 15.74 -3.62) - (xy 15.74 -6.04) + (xy -1.2 3.64) + (xy -1.2 6.06) + (xy 1.22 6.06) + (xy 1.22 3.64) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)) (fp_poly (pts - (xy -1.2 -13.3) - (xy -1.2 -10.88) - (xy 1.22 -10.88) - (xy 1.22 -13.3) + (xy 13.32 8.48) + (xy 13.32 10.9) + (xy 15.74 10.9) + (xy 15.74 8.48) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1)) (fp_poly (pts - (xy -18.14 -10.88) - (xy -18.14 -8.46) - (xy -15.72 -8.46) - (xy -15.72 -10.88) + (xy -6.04 8.48) + (xy -6.04 10.9) + (xy -3.62 10.9) + (xy -3.62 8.48) ) (layer "F.Cu") (width 0) (fill solid) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78)) (fp_poly (pts - (xy -15.72 -6.04) - (xy -15.72 -3.62) - (xy -13.3 -3.62) - (xy -13.3 -6.04) + (xy -6.04 6.06) + (xy -6.04 8.48) + (xy -3.62 8.48) + (xy -3.62 6.06) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)) (fp_poly (pts - (xy -22.98 -25.4) - (xy -22.98 -22.98) - (xy -20.56 -22.98) - (xy -20.56 -25.4) + (xy -10.88 23) + (xy -10.88 25.42) + (xy -8.46 25.42) + (xy -8.46 23) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d)) (fp_poly (pts - (xy -25.4 -13.3) - (xy -25.4 -10.88) - (xy -22.98 -10.88) - (xy -22.98 -13.3) + (xy -10.88 10.9) + (xy -10.88 13.32) + (xy -8.46 13.32) + (xy -8.46 10.9) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9)) (fp_poly (pts - (xy 20.58 -6.04) - (xy 20.58 -3.62) - (xy 23 -3.62) - (xy 23 -6.04) + (xy -10.88 3.64) + (xy -10.88 6.06) + (xy -8.46 6.06) + (xy -8.46 3.64) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed)) (fp_poly (pts - (xy 8.48 -22.98) - (xy 8.48 -20.56) - (xy 10.9 -20.56) - (xy 10.9 -22.98) + (xy 13.32 18.16) + (xy 13.32 20.58) + (xy 15.74 20.58) + (xy 15.74 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102)) (fp_poly (pts - (xy -3.62 1.22) - (xy -3.62 3.64) - (xy -1.2 3.64) - (xy -1.2 1.22) + (xy 3.64 -3.62) + (xy 3.64 -1.2) + (xy 6.06 -1.2) + (xy 6.06 -3.62) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8)) (fp_poly (pts - (xy 23 3.64) - (xy 23 6.06) - (xy 25.42 6.06) - (xy 25.42 3.64) + (xy -13.3 -6.04) + (xy -13.3 -3.62) + (xy -10.88 -3.62) + (xy -10.88 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b)) (fp_poly (pts - (xy -25.4 -18.14) - (xy -25.4 -15.72) - (xy -22.98 -15.72) - (xy -22.98 -18.14) + (xy -10.88 15.74) + (xy -10.88 18.16) + (xy -8.46 18.16) + (xy -8.46 15.74) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032)) (fp_poly (pts - (xy 23 -1.2) - (xy 23 1.22) - (xy 25.42 1.22) - (xy 25.42 -1.2) + (xy -10.88 -1.2) + (xy -10.88 1.22) + (xy -8.46 1.22) + (xy -8.46 -1.2) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065)) (fp_poly (pts - (xy -18.14 8.48) - (xy -18.14 10.9) - (xy -15.72 10.9) - (xy -15.72 8.48) + (xy -6.04 -10.88) + (xy -6.04 -8.46) + (xy -3.62 -8.46) + (xy -3.62 -10.88) ) (layer "F.Cu") (width 0) (fill solid) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)) - (fp_poly (pts - (xy -6.04 15.74) - (xy -6.04 18.16) - (xy -3.62 18.16) - (xy -3.62 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)) - (fp_poly (pts - (xy -20.56 1.22) - (xy -20.56 3.64) - (xy -18.14 3.64) - (xy -18.14 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)) - (fp_poly (pts - (xy 10.9 1.22) - (xy 10.9 3.64) - (xy 13.32 3.64) - (xy 13.32 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)) - (fp_poly (pts - (xy 15.74 20.58) - (xy 15.74 23) - (xy 18.16 23) - (xy 18.16 20.58) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656)) - (fp_poly (pts - (xy 3.64 8.48) - (xy 3.64 10.9) - (xy 6.06 10.9) - (xy 6.06 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)) - (fp_poly (pts - (xy 3.64 13.32) - (xy 3.64 15.74) - (xy 6.06 15.74) - (xy 6.06 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cb24efdd-07c6-4317-9277-131625b065ac)) - (fp_poly (pts - (xy 20.58 -10.88) - (xy 20.58 -8.46) - (xy 23 -8.46) - (xy 23 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)) - (fp_poly (pts - (xy 13.32 -25.4) - (xy 13.32 -22.98) - (xy 15.74 -22.98) - (xy 15.74 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce)) - (fp_poly (pts - (xy -20.56 13.32) - (xy -20.56 15.74) - (xy -18.14 15.74) - (xy -18.14 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039)) (fp_poly (pts (xy 23 -20.56) (xy 23 -18.14) (xy 25.42 -18.14) (xy 25.42 -20.56) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)) (fp_poly (pts - (xy -1.2 18.16) - (xy -1.2 20.58) - (xy 1.22 20.58) - (xy 1.22 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)) + (xy -20.56 -1.2) + (xy -20.56 1.22) + (xy -18.14 1.22) + (xy -18.14 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)) (fp_poly (pts - (xy -22.98 23) - (xy -22.98 25.42) - (xy -20.56 25.42) - (xy -20.56 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)) + (xy -13.3 -3.62) + (xy -13.3 -1.2) + (xy -10.88 -1.2) + (xy -10.88 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)) (fp_poly (pts - (xy 18.16 1.22) - (xy 18.16 3.64) - (xy 20.58 3.64) - (xy 20.58 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)) + (xy 10.9 -25.4) + (xy 10.9 -22.98) + (xy 13.32 -22.98) + (xy 13.32 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656)) (fp_poly (pts - (xy 8.48 6.06) - (xy 8.48 8.48) - (xy 10.9 8.48) - (xy 10.9 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)) - (fp_poly (pts - (xy -20.56 -10.88) + (xy -22.98 -10.88) + (xy -22.98 -8.46) (xy -20.56 -8.46) - (xy -18.14 -8.46) - (xy -18.14 -10.88) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0)) - (fp_poly (pts - (xy -8.46 1.22) - (xy -8.46 3.64) - (xy -6.04 3.64) - (xy -6.04 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)) + (xy -20.56 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)) (fp_poly (pts (xy 13.32 -18.14) (xy 13.32 -15.72) (xy 15.74 -15.72) (xy 15.74 -18.14) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cb24efdd-07c6-4317-9277-131625b065ac)) (fp_poly (pts - (xy 10.9 -1.2) - (xy 10.9 1.22) - (xy 13.32 1.22) - (xy 13.32 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)) - (fp_poly (pts - (xy 18.16 -25.4) - (xy 18.16 -22.98) - (xy 20.58 -22.98) - (xy 20.58 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a)) - (fp_poly (pts - (xy 18.16 10.9) - (xy 18.16 13.32) - (xy 20.58 13.32) - (xy 20.58 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)) - (fp_poly (pts - (xy 13.32 6.06) + (xy 10.9 6.06) + (xy 10.9 8.48) (xy 13.32 8.48) - (xy 15.74 8.48) - (xy 15.74 6.06) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531)) + (xy 13.32 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)) (fp_poly (pts - (xy 20.58 3.64) - (xy 20.58 6.06) - (xy 23 6.06) - (xy 23 3.64) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp df32840e-2912-4088-b54c-9a85f64c0265)) + (xy 13.32 20.58) + (xy 13.32 23) + (xy 15.74 23) + (xy 15.74 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce)) (fp_poly (pts - (xy 1.22 -1.2) - (xy 1.22 1.22) - (xy 3.64 1.22) - (xy 3.64 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)) + (xy -15.72 -15.72) + (xy -15.72 -13.3) + (xy -13.3 -13.3) + (xy -13.3 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039)) (fp_poly (pts - (xy 3.64 1.22) - (xy 3.64 3.64) - (xy 6.06 3.64) - (xy 6.06 1.22) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) + (xy -6.04 15.74) + (xy -6.04 18.16) + (xy -3.62 18.16) + (xy -3.62 15.74) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931)) (fp_poly (pts - (xy -20.56 15.74) - (xy -20.56 18.16) - (xy -18.14 18.16) - (xy -18.14 15.74) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415)) - (fp_poly (pts - (xy 8.48 18.16) - (xy 8.48 20.58) - (xy 10.9 20.58) - (xy 10.9 18.16) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d)) - (fp_poly (pts - (xy 20.58 10.9) - (xy 20.58 13.32) - (xy 23 13.32) - (xy 23 10.9) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)) - (fp_poly (pts - (xy -15.72 -25.4) - (xy -15.72 -22.98) - (xy -13.3 -22.98) - (xy -13.3 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)) - (fp_poly (pts - (xy -25.4 13.32) - (xy -25.4 15.74) - (xy -22.98 15.74) - (xy -22.98 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa)) - (fp_poly (pts - (xy -6.04 -15.72) - (xy -6.04 -13.3) - (xy -3.62 -13.3) - (xy -3.62 -15.72) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)) - (fp_poly (pts - (xy 8.48 -1.2) - (xy 8.48 1.22) - (xy 10.9 1.22) - (xy 10.9 -1.2) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)) - (fp_poly (pts - (xy -1.2 -25.4) - (xy -1.2 -22.98) - (xy 1.22 -22.98) - (xy 1.22 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)) - (fp_poly (pts - (xy -22.98 8.48) - (xy -22.98 10.9) - (xy -20.56 10.9) - (xy -20.56 8.48) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)) - (fp_poly (pts - (xy -25.4 -6.04) - (xy -25.4 -3.62) - (xy -22.98 -3.62) - (xy -22.98 -6.04) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)) - (fp_poly (pts - (xy -20.56 23) - (xy -20.56 25.42) - (xy -18.14 25.42) - (xy -18.14 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)) + (xy -10.88 -20.56) + (xy -10.88 -18.14) + (xy -8.46 -18.14) + (xy -8.46 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c)) (fp_poly (pts (xy -10.88 -25.4) (xy -10.88 -22.98) (xy -8.46 -22.98) (xy -8.46 -25.4) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)) (fp_poly (pts - (xy 23 -22.98) - (xy 23 -20.56) - (xy 25.42 -20.56) - (xy 25.42 -22.98) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506)) - (fp_poly (pts - (xy -15.72 13.32) - (xy -15.72 15.74) - (xy -13.3 15.74) - (xy -13.3 13.32) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8)) + (xy -20.56 -3.62) + (xy -20.56 -1.2) + (xy -18.14 -1.2) + (xy -18.14 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)) (fp_poly (pts (xy 23 -10.88) (xy 23 -8.46) (xy 25.42 -8.46) (xy 25.42 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)) + (fp_poly (pts + (xy -3.62 8.48) + (xy -3.62 10.9) + (xy -1.2 10.9) + (xy -1.2 8.48) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0)) + (fp_poly (pts + (xy 8.48 -3.62) + (xy 8.48 -1.2) + (xy 10.9 -1.2) + (xy 10.9 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)) + (fp_poly (pts + (xy 3.64 13.32) + (xy 3.64 15.74) + (xy 6.06 15.74) + (xy 6.06 13.32) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b)) + (fp_poly (pts + (xy -6.04 -1.2) + (xy -6.04 1.22) + (xy -3.62 1.22) + (xy -3.62 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)) + (fp_poly (pts + (xy 8.48 20.58) + (xy 8.48 23) + (xy 10.9 23) + (xy 10.9 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a)) + (fp_poly (pts + (xy 3.64 -15.72) + (xy 3.64 -13.3) + (xy 6.06 -13.3) + (xy 6.06 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62)) + (fp_poly (pts + (xy 18.16 -10.88) + (xy 18.16 -8.46) + (xy 20.58 -8.46) + (xy 20.58 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531)) + (fp_poly (pts + (xy -10.88 -6.04) + (xy -10.88 -3.62) + (xy -8.46 -3.62) + (xy -8.46 -6.04) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp df32840e-2912-4088-b54c-9a85f64c0265)) + (fp_poly (pts + (xy 8.48 -1.2) + (xy 8.48 1.22) + (xy 10.9 1.22) + (xy 10.9 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)) + (fp_poly (pts + (xy 15.74 23) + (xy 15.74 25.42) + (xy 18.16 25.42) + (xy 18.16 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543)) + (fp_poly (pts + (xy -8.46 -3.62) + (xy -8.46 -1.2) + (xy -6.04 -1.2) + (xy -6.04 -3.62) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) + (fp_poly (pts + (xy -15.72 -18.14) + (xy -15.72 -15.72) + (xy -13.3 -15.72) + (xy -13.3 -18.14) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415)) + (fp_poly (pts + (xy -25.4 -20.56) + (xy -25.4 -18.14) + (xy -22.98 -18.14) + (xy -22.98 -20.56) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d)) + (fp_poly (pts + (xy 1.22 -15.72) + (xy 1.22 -13.3) + (xy 3.64 -13.3) + (xy 3.64 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)) + (fp_poly (pts + (xy -18.14 23) + (xy -18.14 25.42) + (xy -15.72 25.42) + (xy -15.72 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)) + (fp_poly (pts + (xy -10.88 -15.72) + (xy -10.88 -13.3) + (xy -8.46 -13.3) + (xy -8.46 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa)) + (fp_poly (pts + (xy 23 10.9) + (xy 23 13.32) + (xy 25.42 13.32) + (xy 25.42 10.9) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)) + (fp_poly (pts + (xy 1.22 -1.2) + (xy 1.22 1.22) + (xy 3.64 1.22) + (xy 3.64 -1.2) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)) + (fp_poly (pts + (xy 23 20.58) + (xy 23 23) + (xy 25.42 23) + (xy 25.42 20.58) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)) + (fp_poly (pts + (xy 3.64 -10.88) + (xy 3.64 -8.46) + (xy 6.06 -8.46) + (xy 6.06 -10.88) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)) + (fp_poly (pts + (xy -1.2 6.06) + (xy -1.2 8.48) + (xy 1.22 8.48) + (xy 1.22 6.06) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)) + (fp_poly (pts + (xy -13.3 -25.4) + (xy -13.3 -22.98) + (xy -10.88 -22.98) + (xy -10.88 -25.4) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)) + (fp_poly (pts + (xy -22.98 23) + (xy -22.98 25.42) + (xy -20.56 25.42) + (xy -20.56 23) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)) + (fp_poly (pts + (xy 10.9 18.16) + (xy 10.9 20.58) + (xy 13.32 20.58) + (xy 13.32 18.16) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506)) + (fp_poly (pts + (xy -20.56 -15.72) + (xy -20.56 -13.3) + (xy -18.14 -13.3) + (xy -18.14 -15.72) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8)) + (fp_poly (pts + (xy 8.48 6.06) + (xy 8.48 8.48) + (xy 10.9 8.48) + (xy 10.9 6.06) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24)) (fp_poly (pts - (xy -6.04 10.9) - (xy -6.04 13.32) - (xy -3.62 13.32) - (xy -3.62 10.9) + (xy 23 -15.72) + (xy 23 -13.3) + (xy 25.42 -13.3) + (xy 25.42 -15.72) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f3628265-0155-43e2-a467-c40ff783e265)) (fp_poly (pts - (xy 20.58 18.16) - (xy 20.58 20.58) - (xy 23 20.58) - (xy 23 18.16) + (xy 1.22 -22.98) + (xy 1.22 -20.56) + (xy 3.64 -20.56) + (xy 3.64 -22.98) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba)) - (fp_poly (pts - (xy -6.04 23) - (xy -6.04 25.42) - (xy -3.62 25.42) - (xy -3.62 23) - ) (layer "F.Cu") (width 0) (fill solid) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba)) (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) (fill solid) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba)) + (fp_poly (pts + (xy -6.04 23) + (xy -6.04 25.42) + (xy -3.62 25.42) + (xy -3.62 23) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779)) (fp_poly (pts - (xy 1.22 -20.56) - (xy 1.22 -18.14) - (xy 3.64 -18.14) - (xy 3.64 -20.56) + (xy -18.14 18.16) + (xy -18.14 20.58) + (xy -15.72 20.58) + (xy -15.72 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f)) (fp_poly (pts - (xy 3.64 -20.56) - (xy 3.64 -18.14) - (xy 6.06 -18.14) - (xy 6.06 -20.56) + (xy -20.56 18.16) + (xy -20.56 20.58) + (xy -18.14 20.58) + (xy -18.14 18.16) ) (layer "F.Cu") (width 0) (fill solid) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144)) (fp_poly (pts - (xy -10.88 -18.14) - (xy -10.88 -15.72) - (xy -8.46 -15.72) - (xy -8.46 -18.14) + (xy -25.4 15.74) + (xy -25.4 18.16) + (xy -22.98 18.16) + (xy -22.98 15.74) ) (layer "F.Cu") (width 0) (fill solid) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d)) (fp_poly (pts - (xy 13.32 3.64) - (xy 13.32 6.06) - (xy 15.74 6.06) - (xy 15.74 3.64) + (xy -6.04 -6.04) + (xy -6.04 -3.62) + (xy -3.62 -3.62) + (xy -3.62 -6.04) ) (layer "F.Cu") (width 0) (fill solid) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b)) ) @@ -1559,7 +1564,7 @@ (tedit 0) (tstamp 00000000-0000-0000-0000-000061d27619) (at 101.1 79) (attr through_hole) - (fp_text reference "QR***" (at 0 8.75) (layer "F.SilkS") + (fp_text reference "QR2" (at 0 8.75) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372) ) @@ -1588,1948 +1593,1948 @@ (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce) ) (fp_poly (pts - (xy 2.1 3.3) - (xy 2.1 3.9) - (xy 2.7 3.9) - (xy 2.7 3.3) + (xy -4.5 -3.9) + (xy -4.5 -3.3) + (xy -3.9 -3.3) + (xy -3.9 -3.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583)) (fp_poly (pts - (xy -5.1 -2.7) - (xy -5.1 -2.1) - (xy -4.5 -2.1) - (xy -4.5 -2.7) + (xy 3.9 2.1) + (xy 3.9 2.7) + (xy 4.5 2.7) + (xy 4.5 2.1) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18)) + (fp_poly (pts + (xy 0.3 0.9) + (xy 0.3 1.5) + (xy 0.9 1.5) + (xy 0.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00e38d63-5436-49db-81f5-697421f168fc)) + (fp_poly (pts + (xy 3.3 2.1) + (xy 3.3 2.7) + (xy 3.9 2.7) + (xy 3.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)) + (fp_poly (pts + (xy -0.3 -0.3) + (xy -0.3 0.3) + (xy 0.3 0.3) + (xy 0.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778)) + (fp_poly (pts + (xy -7.5 -5.7) + (xy -7.5 -5.1) + (xy -6.9 -5.1) + (xy -6.9 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)) (fp_poly (pts (xy -3.9 -1.5) (xy -3.9 -0.9) (xy -3.3 -0.9) (xy -3.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00e38d63-5436-49db-81f5-697421f168fc)) - (fp_poly (pts - (xy -3.9 -2.7) - (xy -3.9 -2.1) - (xy -3.3 -2.1) - (xy -3.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)) - (fp_poly (pts - (xy -6.9 -0.3) - (xy -6.9 0.3) - (xy -6.3 0.3) - (xy -6.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778)) - (fp_poly (pts - (xy 3.3 5.1) - (xy 3.3 5.7) - (xy 3.9 5.7) - (xy 3.9 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)) - (fp_poly (pts - (xy 0.3 0.9) - (xy 0.3 1.5) - (xy 0.9 1.5) - (xy 0.9 0.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8)) - (fp_poly (pts - (xy 0.3 -2.7) - (xy 0.3 -2.1) - (xy 0.9 -2.1) - (xy 0.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69)) - (fp_poly (pts - (xy 5.1 5.1) - (xy 5.1 5.7) - (xy 5.7 5.7) - (xy 5.7 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)) - (fp_poly (pts - (xy 4.5 2.7) - (xy 4.5 3.3) - (xy 5.1 3.3) - (xy 5.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)) - (fp_poly (pts - (xy 4.5 3.9) - (xy 4.5 4.5) - (xy 5.1 4.5) - (xy 5.1 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)) - (fp_poly (pts - (xy 4.5 -5.1) - (xy 4.5 -4.5) - (xy 5.1 -4.5) - (xy 5.1 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277)) - (fp_poly (pts - (xy -6.9 -0.9) - (xy -6.9 -0.3) - (xy -6.3 -0.3) - (xy -6.3 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957)) - (fp_poly (pts - (xy -0.9 -7.5) - (xy -0.9 -6.9) - (xy -0.3 -6.9) - (xy -0.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)) - (fp_poly (pts - (xy -3.3 0.9) - (xy -3.3 1.5) - (xy -2.7 1.5) - (xy -2.7 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac)) - (fp_poly (pts - (xy -6.3 -0.3) - (xy -6.3 0.3) - (xy -5.7 0.3) - (xy -5.7 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db)) - (fp_poly (pts - (xy 0.3 1.5) - (xy 0.3 2.1) - (xy 0.9 2.1) - (xy 0.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916)) - (fp_poly (pts - (xy -3.9 6.3) - (xy -3.9 6.9) - (xy -3.3 6.9) - (xy -3.3 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5)) - (fp_poly (pts - (xy -0.9 6.3) - (xy -0.9 6.9) - (xy -0.3 6.9) - (xy -0.3 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)) - (fp_poly (pts - (xy 3.3 2.1) - (xy 3.3 2.7) - (xy 3.9 2.7) - (xy 3.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)) - (fp_poly (pts - (xy 2.7 0.3) - (xy 2.7 0.9) - (xy 3.3 0.9) - (xy 3.3 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)) - (fp_poly (pts - (xy -3.9 -6.3) - (xy -3.9 -5.7) - (xy -3.3 -5.7) - (xy -3.3 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7)) - (fp_poly (pts - (xy -2.7 0.9) - (xy -2.7 1.5) - (xy -2.1 1.5) - (xy -2.1 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)) - (fp_poly (pts - (xy -5.7 2.1) - (xy -5.7 2.7) - (xy -5.1 2.7) - (xy -5.1 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 109caac1-5036-4f23-9a66-f569d871501b)) - (fp_poly (pts - (xy 3.3 -5.1) - (xy 3.3 -4.5) - (xy 3.9 -4.5) - (xy 3.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3)) - (fp_poly (pts - (xy 4.5 -3.9) - (xy 4.5 -3.3) - (xy 5.1 -3.3) - (xy 5.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9)) - (fp_poly (pts - (xy 3.9 -2.7) - (xy 3.9 -2.1) - (xy 4.5 -2.1) - (xy 4.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)) - (fp_poly (pts - (xy -1.5 -1.5) - (xy -1.5 -0.9) - (xy -0.9 -0.9) - (xy -0.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)) - (fp_poly (pts - (xy 3.3 6.9) - (xy 3.3 7.5) - (xy 3.9 7.5) - (xy 3.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)) - (fp_poly (pts - (xy 6.9 -4.5) - (xy 6.9 -3.9) - (xy 7.5 -3.9) - (xy 7.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771)) - (fp_poly (pts - (xy -6.3 5.7) - (xy -6.3 6.3) - (xy -5.7 6.3) - (xy -5.7 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)) - (fp_poly (pts - (xy -7.5 -5.1) - (xy -7.5 -4.5) - (xy -6.9 -4.5) - (xy -6.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0)) - (fp_poly (pts - (xy 3.9 2.1) - (xy 3.9 2.7) - (xy 4.5 2.7) - (xy 4.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)) - (fp_poly (pts - (xy 5.7 -5.1) - (xy 5.7 -4.5) - (xy 6.3 -4.5) - (xy 6.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)) - (fp_poly (pts - (xy -3.9 2.1) - (xy -3.9 2.7) - (xy -3.3 2.7) - (xy -3.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)) - (fp_poly (pts - (xy 2.1 0.3) - (xy 2.1 0.9) - (xy 2.7 0.9) - (xy 2.7 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1c68b844-c861-46b7-b734-0242168a4220)) - (fp_poly (pts - (xy -4.5 1.5) - (xy -4.5 2.1) - (xy -3.9 2.1) - (xy -3.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)) - (fp_poly (pts - (xy -7.5 -6.9) - (xy -7.5 -6.3) - (xy -6.9 -6.3) - (xy -6.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746)) - (fp_poly (pts - (xy -0.9 -1.5) - (xy -0.9 -0.9) - (xy -0.3 -0.9) - (xy -0.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9)) - (fp_poly (pts - (xy -3.9 -5.1) - (xy -3.9 -4.5) - (xy -3.3 -4.5) - (xy -3.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d)) - (fp_poly (pts - (xy -5.1 6.9) - (xy -5.1 7.5) - (xy -4.5 7.5) - (xy -4.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e)) - (fp_poly (pts - (xy -1.5 4.5) - (xy -1.5 5.1) - (xy -0.9 5.1) - (xy -0.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)) - (fp_poly (pts - (xy -5.7 -2.7) - (xy -5.7 -2.1) - (xy -5.1 -2.1) - (xy -5.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273)) - (fp_poly (pts - (xy -7.5 0.3) - (xy -7.5 0.9) - (xy -6.9 0.9) - (xy -6.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3)) - (fp_poly (pts - (xy 5.7 4.5) - (xy 5.7 5.1) - (xy 6.3 5.1) - (xy 6.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25)) - (fp_poly (pts - (xy 2.1 4.5) - (xy 2.1 5.1) - (xy 2.7 5.1) - (xy 2.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5)) - (fp_poly (pts - (xy -3.9 -4.5) - (xy -3.9 -3.9) - (xy -3.3 -3.9) - (xy -3.3 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1)) - (fp_poly (pts - (xy -6.9 3.3) - (xy -6.9 3.9) - (xy -6.3 3.9) - (xy -6.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)) - (fp_poly (pts - (xy -2.7 5.1) - (xy -2.7 5.7) - (xy -2.1 5.7) - (xy -2.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c)) - (fp_poly (pts - (xy -1.5 -0.9) - (xy -1.5 -0.3) - (xy -0.9 -0.3) - (xy -0.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765)) - (fp_poly (pts - (xy -7.5 6.9) - (xy -7.5 7.5) - (xy -6.9 7.5) - (xy -6.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)) - (fp_poly (pts - (xy 2.1 3.9) - (xy 2.1 4.5) - (xy 2.7 4.5) - (xy 2.7 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493)) - (fp_poly (pts - (xy 6.9 -2.7) - (xy 6.9 -2.1) - (xy 7.5 -2.1) - (xy 7.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c)) - (fp_poly (pts - (xy 5.7 -5.7) - (xy 5.7 -5.1) - (xy 6.3 -5.1) - (xy 6.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece)) - (fp_poly (pts - (xy -7.5 6.3) - (xy -7.5 6.9) - (xy -6.9 6.9) - (xy -6.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)) - (fp_poly (pts - (xy 0.9 -7.5) - (xy 0.9 -6.9) - (xy 1.5 -6.9) - (xy 1.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0)) - (fp_poly (pts - (xy 3.3 6.3) - (xy 3.3 6.9) - (xy 3.9 6.9) - (xy 3.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)) - (fp_poly (pts - (xy 2.7 4.5) - (xy 2.7 5.1) - (xy 3.3 5.1) - (xy 3.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43)) - (fp_poly (pts - (xy 0.3 3.3) - (xy 0.3 3.9) - (xy 0.9 3.9) - (xy 0.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)) - (fp_poly (pts - (xy -5.7 5.7) - (xy -5.7 6.3) - (xy -5.1 6.3) - (xy -5.1 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278)) - (fp_poly (pts - (xy 2.1 -6.9) - (xy 2.1 -6.3) - (xy 2.7 -6.3) - (xy 2.7 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225)) - (fp_poly (pts - (xy -3.9 5.7) - (xy -3.9 6.3) - (xy -3.3 6.3) - (xy -3.3 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)) - (fp_poly (pts - (xy -5.7 -7.5) - (xy -5.7 -6.9) - (xy -5.1 -6.9) - (xy -5.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004)) - (fp_poly (pts - (xy -6.3 2.1) - (xy -6.3 2.7) - (xy -5.7 2.7) - (xy -5.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)) - (fp_poly (pts - (xy -5.7 -5.7) - (xy -5.7 -5.1) - (xy -5.1 -5.1) - (xy -5.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7)) - (fp_poly (pts - (xy 3.3 -0.9) - (xy 3.3 -0.3) - (xy 3.9 -0.3) - (xy 3.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)) - (fp_poly (pts - (xy -0.9 -0.3) - (xy -0.9 0.3) - (xy -0.3 0.3) - (xy -0.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)) - (fp_poly (pts - (xy -0.3 -7.5) - (xy -0.3 -6.9) - (xy 0.3 -6.9) - (xy 0.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b)) - (fp_poly (pts - (xy -2.7 -0.3) - (xy -2.7 0.3) - (xy -2.1 0.3) - (xy -2.1 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)) - (fp_poly (pts - (xy 4.5 3.3) - (xy 4.5 3.9) - (xy 5.1 3.9) - (xy 5.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)) - (fp_poly (pts - (xy 0.3 6.3) - (xy 0.3 6.9) - (xy 0.9 6.9) - (xy 0.9 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)) - (fp_poly (pts - (xy 0.9 -2.1) - (xy 0.9 -1.5) - (xy 1.5 -1.5) - (xy 1.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9)) - (fp_poly (pts - (xy -2.7 -1.5) - (xy -2.7 -0.9) - (xy -2.1 -0.9) - (xy -2.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)) - (fp_poly (pts - (xy 3.3 -5.7) - (xy 3.3 -5.1) - (xy 3.9 -5.1) - (xy 3.9 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)) - (fp_poly (pts - (xy 3.3 -6.9) - (xy 3.3 -6.3) - (xy 3.9 -6.3) - (xy 3.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5)) - (fp_poly (pts - (xy -1.5 -3.9) - (xy -1.5 -3.3) - (xy -0.9 -3.3) - (xy -0.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49)) - (fp_poly (pts - (xy 3.9 6.3) - (xy 3.9 6.9) - (xy 4.5 6.9) - (xy 4.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)) - (fp_poly (pts - (xy 3.9 4.5) - (xy 3.9 5.1) - (xy 4.5 5.1) - (xy 4.5 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)) - (fp_poly (pts - (xy -2.1 0.9) - (xy -2.1 1.5) - (xy -1.5 1.5) - (xy -1.5 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c)) - (fp_poly (pts - (xy 1.5 -2.7) - (xy 1.5 -2.1) - (xy 2.1 -2.1) - (xy 2.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)) - (fp_poly (pts - (xy 0.9 -6.3) - (xy 0.9 -5.7) - (xy 1.5 -5.7) - (xy 1.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885)) - (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) (fill solid) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)) - (fp_poly (pts - (xy 0.9 -5.1) - (xy 0.9 -4.5) - (xy 1.5 -4.5) - (xy 1.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa)) - (fp_poly (pts - (xy -7.5 -4.5) - (xy -7.5 -3.9) - (xy -6.9 -3.9) - (xy -6.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 45884597-7014-4461-83ee-9975c42b9a53)) - (fp_poly (pts - (xy -7.5 5.7) - (xy -7.5 6.3) - (xy -6.9 6.3) - (xy -6.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)) - (fp_poly (pts - (xy 6.9 -3.9) - (xy 6.9 -3.3) - (xy 7.5 -3.3) - (xy 7.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)) - (fp_poly (pts - (xy 5.7 -3.9) - (xy 5.7 -3.3) - (xy 6.3 -3.3) - (xy 6.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59)) - (fp_poly (pts - (xy -1.5 1.5) - (xy -1.5 2.1) - (xy -0.9 2.1) - (xy -0.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3)) - (fp_poly (pts - (xy 1.5 0.3) - (xy 1.5 0.9) - (xy 2.1 0.9) - (xy 2.1 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54)) - (fp_poly (pts - (xy 2.1 -3.3) - (xy 2.1 -2.7) - (xy 2.7 -2.7) - (xy 2.7 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)) - (fp_poly (pts - (xy 4.5 -7.5) - (xy 4.5 -6.9) - (xy 5.1 -6.9) - (xy 5.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)) - (fp_poly (pts - (xy -6.3 -5.7) - (xy -6.3 -5.1) - (xy -5.7 -5.1) - (xy -5.7 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)) - (fp_poly (pts - (xy -2.7 -3.3) - (xy -2.7 -2.7) - (xy -2.1 -2.7) - (xy -2.1 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126)) - (fp_poly (pts - (xy -6.9 -3.9) - (xy -6.9 -3.3) - (xy -6.3 -3.3) - (xy -6.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b)) - (fp_poly (pts - (xy 5.1 3.9) - (xy 5.1 4.5) - (xy 5.7 4.5) - (xy 5.7 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)) - (fp_poly (pts - (xy -5.1 -5.7) - (xy -5.1 -5.1) - (xy -4.5 -5.1) - (xy -4.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6)) - (fp_poly (pts - (xy 0.3 -1.5) - (xy 0.3 -0.9) - (xy 0.9 -0.9) - (xy 0.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)) - (fp_poly (pts - (xy 1.5 3.9) - (xy 1.5 4.5) - (xy 2.1 4.5) - (xy 2.1 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a)) - (fp_poly (pts - (xy 1.5 4.5) - (xy 1.5 5.1) - (xy 2.1 5.1) - (xy 2.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)) - (fp_poly (pts - (xy -6.3 -5.1) - (xy -6.3 -4.5) - (xy -5.7 -4.5) - (xy -5.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 54212c01-b363-47b8-a145-45c40df316f4)) - (fp_poly (pts - (xy -2.7 4.5) - (xy -2.7 5.1) - (xy -2.1 5.1) - (xy -2.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)) - (fp_poly (pts - (xy -3.9 -7.5) - (xy -3.9 -6.9) - (xy -3.3 -6.9) - (xy -3.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c)) - (fp_poly (pts - (xy -0.3 5.1) - (xy -0.3 5.7) - (xy 0.3 5.7) - (xy 0.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)) - (fp_poly (pts - (xy -0.3 4.5) - (xy -0.3 5.1) - (xy 0.3 5.1) - (xy 0.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)) - (fp_poly (pts - (xy -5.7 4.5) - (xy -5.7 5.1) - (xy -5.1 5.1) - (xy -5.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367)) - (fp_poly (pts - (xy -7.5 4.5) - (xy -7.5 5.1) - (xy -6.9 5.1) - (xy -6.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f)) - (fp_poly (pts - (xy -5.1 -7.5) - (xy -5.1 -6.9) - (xy -4.5 -6.9) - (xy -4.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615)) - (fp_poly (pts - (xy 6.9 -7.5) - (xy 6.9 -6.9) - (xy 7.5 -6.9) - (xy 7.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)) - (fp_poly (pts - (xy 2.1 6.3) - (xy 2.1 6.9) - (xy 2.7 6.9) - (xy 2.7 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)) - (fp_poly (pts - (xy -0.9 -5.7) - (xy -0.9 -5.1) - (xy -0.3 -5.1) - (xy -0.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)) - (fp_poly (pts - (xy -5.7 5.1) - (xy -5.7 5.7) - (xy -5.1 5.7) - (xy -5.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573)) - (fp_poly (pts - (xy 4.5 2.1) - (xy 4.5 2.7) - (xy 5.1 2.7) - (xy 5.1 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)) - (fp_poly (pts - (xy -4.5 3.3) - (xy -4.5 3.9) - (xy -3.9 3.9) - (xy -3.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)) - (fp_poly (pts - (xy 1.5 -3.3) - (xy 1.5 -2.7) - (xy 2.1 -2.7) - (xy 2.1 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)) - (fp_poly (pts - (xy -1.5 -2.1) - (xy -1.5 -1.5) - (xy -0.9 -1.5) - (xy -0.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d)) - (fp_poly (pts - (xy 4.5 4.5) - (xy 4.5 5.1) - (xy 5.1 5.1) - (xy 5.1 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)) - (fp_poly (pts - (xy -2.7 -2.1) - (xy -2.7 -1.5) - (xy -2.1 -1.5) - (xy -2.1 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)) - (fp_poly (pts - (xy 6.3 3.9) - (xy 6.3 4.5) - (xy 6.9 4.5) - (xy 6.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f)) - (fp_poly (pts - (xy -0.9 1.5) - (xy -0.9 2.1) - (xy -0.3 2.1) - (xy -0.3 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd)) - (fp_poly (pts - (xy 2.1 -4.5) - (xy 2.1 -3.9) - (xy 2.7 -3.9) - (xy 2.7 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f)) - (fp_poly (pts - (xy -6.3 3.3) - (xy -6.3 3.9) - (xy -5.7 3.9) - (xy -5.7 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)) - (fp_poly (pts - (xy -0.9 2.7) - (xy -0.9 3.3) - (xy -0.3 3.3) - (xy -0.3 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)) - (fp_poly (pts - (xy 5.7 -1.5) - (xy 5.7 -0.9) - (xy 6.3 -0.9) - (xy 6.3 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff)) - (fp_poly (pts - (xy 5.1 4.5) - (xy 5.1 5.1) - (xy 5.7 5.1) - (xy 5.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)) - (fp_poly (pts - (xy 4.5 -1.5) - (xy 4.5 -0.9) - (xy 5.1 -0.9) - (xy 5.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8)) - (fp_poly (pts - (xy -4.5 -0.9) - (xy -4.5 -0.3) - (xy -3.9 -0.3) - (xy -3.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8)) - (fp_poly (pts - (xy 5.1 6.3) - (xy 5.1 6.9) - (xy 5.7 6.9) - (xy 5.7 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311)) - (fp_poly (pts - (xy 5.1 -7.5) - (xy 5.1 -6.9) - (xy 5.7 -6.9) - (xy 5.7 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a)) - (fp_poly (pts - (xy -5.1 1.5) - (xy -5.1 2.1) - (xy -4.5 2.1) - (xy -4.5 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)) - (fp_poly (pts - (xy 2.1 -2.1) - (xy 2.1 -1.5) - (xy 2.7 -1.5) - (xy 2.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)) - (fp_poly (pts - (xy -1.5 3.3) - (xy -1.5 3.9) - (xy -0.9 3.9) - (xy -0.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47)) - (fp_poly (pts - (xy -7.5 -0.9) - (xy -7.5 -0.3) - (xy -6.9 -0.3) - (xy -6.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71989e06-8659-4605-b2da-4f729cc41263)) - (fp_poly (pts - (xy 4.5 -6.3) - (xy 4.5 -5.7) - (xy 5.1 -5.7) - (xy 5.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3)) - (fp_poly (pts - (xy 5.7 -2.7) - (xy 5.7 -2.1) - (xy 6.3 -2.1) - (xy 6.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769)) - (fp_poly (pts - (xy -5.1 5.1) - (xy -5.1 5.7) - (xy -4.5 5.7) - (xy -4.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9)) - (fp_poly (pts - (xy 3.9 -7.5) - (xy 3.9 -6.9) - (xy 4.5 -6.9) - (xy 4.5 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae)) - (fp_poly (pts - (xy -1.5 0.3) - (xy -1.5 0.9) - (xy -0.9 0.9) - (xy -0.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)) - (fp_poly (pts - (xy 3.3 -2.7) - (xy 3.3 -2.1) - (xy 3.9 -2.1) - (xy 3.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)) - (fp_poly (pts - (xy -0.9 -5.1) - (xy -0.9 -4.5) - (xy -0.3 -4.5) - (xy -0.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a)) - (fp_poly (pts - (xy -7.5 1.5) - (xy -7.5 2.1) - (xy -6.9 2.1) - (xy -6.9 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b)) - (fp_poly (pts - (xy -4.5 6.9) - (xy -4.5 7.5) - (xy -3.9 7.5) - (xy -3.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64)) - (fp_poly (pts - (xy -3.9 3.3) - (xy -3.9 3.9) - (xy -3.3 3.9) - (xy -3.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae)) - (fp_poly (pts - (xy 1.5 5.1) - (xy 1.5 5.7) - (xy 2.1 5.7) - (xy 2.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)) - (fp_poly (pts - (xy -5.1 -5.1) - (xy -5.1 -4.5) - (xy -4.5 -4.5) - (xy -4.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041)) - (fp_poly (pts - (xy 0.3 2.1) - (xy 0.3 2.7) - (xy 0.9 2.7) - (xy 0.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92)) - (fp_poly (pts - (xy -5.7 6.9) - (xy -5.7 7.5) - (xy -5.1 7.5) - (xy -5.1 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636)) - (fp_poly (pts - (xy 1.5 6.9) - (xy 1.5 7.5) - (xy 2.1 7.5) - (xy 2.1 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)) - (fp_poly (pts - (xy -5.7 0.9) - (xy -5.7 1.5) - (xy -5.1 1.5) - (xy -5.1 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)) - (fp_poly (pts - (xy -7.5 5.1) - (xy -7.5 5.7) - (xy -6.9 5.7) - (xy -6.9 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 81a15393-727e-448b-a777-b18773023d89)) - (fp_poly (pts - (xy 0.3 6.9) - (xy 0.3 7.5) - (xy 0.9 7.5) - (xy 0.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)) - (fp_poly (pts - (xy -7.5 -5.7) - (xy -7.5 -5.1) - (xy -6.9 -5.1) - (xy -6.9 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9)) - (fp_poly (pts - (xy -3.9 -0.3) - (xy -3.9 0.3) - (xy -3.3 0.3) - (xy -3.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)) - (fp_poly (pts - (xy 5.1 -5.7) - (xy 5.1 -5.1) - (xy 5.7 -5.1) - (xy 5.7 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759)) - (fp_poly (pts - (xy 5.7 3.3) - (xy 5.7 3.9) - (xy 6.3 3.9) - (xy 6.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)) - (fp_poly (pts - (xy -2.7 -6.9) - (xy -2.7 -6.3) - (xy -2.1 -6.3) - (xy -2.1 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)) - (fp_poly (pts - (xy 3.3 -0.3) - (xy 3.3 0.3) - (xy 3.9 0.3) - (xy 3.9 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)) - (fp_poly (pts - (xy 4.5 -0.3) - (xy 4.5 0.3) - (xy 5.1 0.3) - (xy 5.1 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)) - (fp_poly (pts - (xy -0.9 5.1) - (xy -0.9 5.7) - (xy -0.3 5.7) - (xy -0.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49)) - (fp_poly (pts - (xy -0.9 3.9) - (xy -0.9 4.5) - (xy -0.3 4.5) - (xy -0.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)) - (fp_poly (pts - (xy -5.1 5.7) - (xy -5.1 6.3) - (xy -4.5 6.3) - (xy -4.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)) - (fp_poly (pts - (xy -7.5 2.1) - (xy -7.5 2.7) - (xy -6.9 2.7) - (xy -6.9 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23)) - (fp_poly (pts - (xy 6.9 6.3) - (xy 6.9 6.9) - (xy 7.5 6.9) - (xy 7.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42)) - (fp_poly (pts - (xy 6.9 -6.3) - (xy 6.9 -5.7) - (xy 7.5 -5.7) - (xy 7.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)) - (fp_poly (pts - (xy 0.9 -1.5) - (xy 0.9 -0.9) - (xy 1.5 -0.9) - (xy 1.5 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380)) - (fp_poly (pts - (xy 2.7 -2.7) - (xy 2.7 -2.1) - (xy 3.3 -2.1) - (xy 3.3 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953)) - (fp_poly (pts - (xy -5.1 -3.9) - (xy -5.1 -3.3) - (xy -4.5 -3.3) - (xy -4.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)) - (fp_poly (pts - (xy 1.5 -1.5) - (xy 1.5 -0.9) - (xy 2.1 -0.9) - (xy 2.1 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)) - (fp_poly (pts - (xy -2.7 -3.9) - (xy -2.7 -3.3) - (xy -2.1 -3.3) - (xy -2.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8)) - (fp_poly (pts - (xy -0.3 -3.3) - (xy -0.3 -2.7) - (xy 0.3 -2.7) - (xy 0.3 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908)) - (fp_poly (pts - (xy -6.9 6.9) - (xy -6.9 7.5) - (xy -6.3 7.5) - (xy -6.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)) - (fp_poly (pts - (xy 3.3 3.3) - (xy 3.3 3.9) - (xy 3.9 3.9) - (xy 3.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)) - (fp_poly (pts - (xy -3.9 -5.7) - (xy -3.9 -5.1) - (xy -3.3 -5.1) - (xy -3.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)) - (fp_poly (pts - (xy -6.3 4.5) - (xy -6.3 5.1) - (xy -5.7 5.1) - (xy -5.7 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d)) - (fp_poly (pts - (xy 5.7 -6.3) - (xy 5.7 -5.7) - (xy 6.3 -5.7) - (xy 6.3 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935057d5-6882-4c15-9a35-54677912ba12)) - (fp_poly (pts - (xy 4.5 5.1) - (xy 4.5 5.7) - (xy 5.1 5.7) - (xy 5.1 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)) - (fp_poly (pts - (xy 1.5 2.7) - (xy 1.5 3.3) - (xy 2.1 3.3) - (xy 2.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)) - (fp_poly (pts - (xy 0.9 -4.5) - (xy 0.9 -3.9) - (xy 1.5 -3.9) - (xy 1.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)) - (fp_poly (pts - (xy 4.5 -5.7) - (xy 4.5 -5.1) - (xy 5.1 -5.1) - (xy 5.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145)) - (fp_poly (pts - (xy 0.9 -3.9) - (xy 0.9 -3.3) - (xy 1.5 -3.3) - (xy 1.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)) - (fp_poly (pts - (xy -1.5 -5.1) - (xy -1.5 -4.5) - (xy -0.9 -4.5) - (xy -0.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c)) - (fp_poly (pts - (xy 3.9 -3.9) - (xy 3.9 -3.3) - (xy 4.5 -3.3) - (xy 4.5 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790)) - (fp_poly (pts - (xy 2.7 2.1) - (xy 2.7 2.7) - (xy 3.3 2.7) - (xy 3.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)) - (fp_poly (pts - (xy -5.7 -5.1) - (xy -5.7 -4.5) - (xy -5.1 -4.5) - (xy -5.1 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656)) - (fp_poly (pts - (xy 6.9 -1.5) - (xy 6.9 -0.9) - (xy 7.5 -0.9) - (xy 7.5 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422)) - (fp_poly (pts - (xy 6.3 -7.5) - (xy 6.3 -6.9) - (xy 6.9 -6.9) - (xy 6.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b)) - (fp_poly (pts - (xy -6.3 -3.9) - (xy -6.3 -3.3) - (xy -5.7 -3.3) - (xy -5.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b)) - (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) (fill solid) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)) - (fp_poly (pts - (xy -7.5 -2.1) - (xy -7.5 -1.5) - (xy -6.9 -1.5) - (xy -6.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68)) - (fp_poly (pts - (xy -0.3 3.9) - (xy -0.3 4.5) - (xy 0.3 4.5) - (xy 0.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)) - (fp_poly (pts - (xy 1.5 -5.7) - (xy 1.5 -5.1) - (xy 2.1 -5.1) - (xy 2.1 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)) - (fp_poly (pts - (xy -5.1 0.3) - (xy -5.1 0.9) - (xy -4.5 0.9) - (xy -4.5 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8)) - (fp_poly (pts - (xy -0.3 -3.9) - (xy -0.3 -3.3) - (xy 0.3 -3.3) - (xy 0.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)) - (fp_poly (pts - (xy -7.5 3.3) - (xy -7.5 3.9) - (xy -6.9 3.9) - (xy -6.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)) - (fp_poly (pts - (xy -3.9 4.5) - (xy -3.9 5.1) - (xy -3.3 5.1) - (xy -3.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)) - (fp_poly (pts - (xy 6.3 4.5) - (xy 6.3 5.1) - (xy 6.9 5.1) - (xy 6.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114)) - (fp_poly (pts - (xy 5.7 2.1) - (xy 5.7 2.7) - (xy 6.3 2.7) - (xy 6.3 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)) - (fp_poly (pts - (xy -2.1 5.1) - (xy -2.1 5.7) - (xy -1.5 5.7) - (xy -1.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269)) - (fp_poly (pts - (xy -2.1 6.9) - (xy -2.1 7.5) - (xy -1.5 7.5) - (xy -1.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)) - (fp_poly (pts - (xy 5.1 2.7) - (xy 5.1 3.3) - (xy 5.7 3.3) - (xy 5.7 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)) - (fp_poly (pts - (xy 0.9 -0.3) - (xy 0.9 0.3) - (xy 1.5 0.3) - (xy 1.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6)) - (fp_poly (pts - (xy -2.7 -6.3) - (xy -2.7 -5.7) - (xy -2.1 -5.7) - (xy -2.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)) - (fp_poly (pts - (xy -3.9 6.9) - (xy -3.9 7.5) - (xy -3.3 7.5) - (xy -3.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)) - (fp_poly (pts - (xy 0.3 -3.3) - (xy 0.3 -2.7) - (xy 0.9 -2.7) - (xy 0.9 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83)) - (fp_poly (pts - (xy -0.3 -0.9) - (xy -0.3 -0.3) - (xy 0.3 -0.3) - (xy 0.3 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75)) - (fp_poly (pts - (xy -2.7 -4.5) - (xy -2.7 -3.9) - (xy -2.1 -3.9) - (xy -2.1 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd)) - (fp_poly (pts - (xy -5.1 -2.1) - (xy -5.1 -1.5) - (xy -4.5 -1.5) - (xy -4.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp af347946-e3da-4427-87ab-77b747929f50)) - (fp_poly (pts - (xy 3.3 -3.9) - (xy 3.3 -3.3) - (xy 3.9 -3.3) - (xy 3.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe)) - (fp_poly (pts - (xy 5.1 -5.1) - (xy 5.1 -4.5) - (xy 5.7 -4.5) - (xy 5.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)) - (fp_poly (pts - (xy -2.1 6.3) - (xy -2.1 6.9) - (xy -1.5 6.9) - (xy -1.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)) - (fp_poly (pts - (xy 6.3 -3.9) - (xy 6.3 -3.3) - (xy 6.9 -3.3) - (xy 6.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca)) - (fp_poly (pts - (xy -1.5 3.9) - (xy -1.5 4.5) - (xy -0.9 4.5) - (xy -0.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)) - (fp_poly (pts - (xy -6.3 1.5) - (xy -6.3 2.1) - (xy -5.7 2.1) - (xy -5.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc)) - (fp_poly (pts - (xy 3.3 -6.3) - (xy 3.3 -5.7) - (xy 3.9 -5.7) - (xy 3.9 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)) - (fp_poly (pts - (xy 0.9 0.3) - (xy 0.9 0.9) - (xy 1.5 0.9) - (xy 1.5 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b5071759-a4d7-4769-be02-251f23cd4454)) - (fp_poly (pts - (xy -6.3 -2.7) - (xy -6.3 -2.1) - (xy -5.7 -2.1) - (xy -5.7 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)) - (fp_poly (pts - (xy 0.9 2.7) - (xy 0.9 3.3) - (xy 1.5 3.3) - (xy 1.5 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1)) - (fp_poly (pts - (xy -4.5 -2.1) - (xy -4.5 -1.5) - (xy -3.9 -1.5) - (xy -3.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6cd701f-4223-4e72-a305-466869ccb250)) - (fp_poly (pts - (xy -5.7 3.3) - (xy -5.7 3.9) - (xy -5.1 3.9) - (xy -5.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91)) - (fp_poly (pts - (xy 3.3 0.9) - (xy 3.3 1.5) - (xy 3.9 1.5) - (xy 3.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120)) - (fp_poly (pts - (xy -1.5 0.9) - (xy -1.5 1.5) - (xy -0.9 1.5) - (xy -0.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)) - (fp_poly (pts - (xy -2.1 -0.3) - (xy -2.1 0.3) - (xy -1.5 0.3) - (xy -1.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)) - (fp_poly (pts - (xy -2.7 -2.7) - (xy -2.7 -2.1) - (xy -2.1 -2.1) - (xy -2.1 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)) - (fp_poly (pts - (xy -2.7 5.7) - (xy -2.7 6.3) - (xy -2.1 6.3) - (xy -2.1 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3)) - (fp_poly (pts - (xy -2.7 -7.5) - (xy -2.7 -6.9) - (xy -2.1 -6.9) - (xy -2.1 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b)) - (fp_poly (pts - (xy -2.1 5.7) - (xy -2.1 6.3) - (xy -1.5 6.3) - (xy -1.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb)) - (fp_poly (pts - (xy -0.3 0.9) - (xy -0.3 1.5) - (xy 0.3 1.5) - (xy 0.3 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb)) - (fp_poly (pts - (xy -5.1 -6.3) - (xy -5.1 -5.7) - (xy -4.5 -5.7) - (xy -4.5 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa)) - (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) (fill solid) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a)) - (fp_poly (pts - (xy 3.3 4.5) - (xy 3.3 5.1) - (xy 3.9 5.1) - (xy 3.9 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c09938fd-06b9-4771-9f63-2311626243b3)) - (fp_poly (pts - (xy 0.3 -2.1) - (xy 0.3 -1.5) - (xy 0.9 -1.5) - (xy 0.9 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)) - (fp_poly (pts - (xy 6.9 3.3) - (xy 6.9 3.9) - (xy 7.5 3.9) - (xy 7.5 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b)) - (fp_poly (pts - (xy -3.9 5.1) - (xy -3.9 5.7) - (xy -3.3 5.7) - (xy -3.3 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee)) - (fp_poly (pts - (xy 6.3 3.3) - (xy 6.3 3.9) - (xy 6.9 3.9) - (xy 6.9 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865)) - (fp_poly (pts - (xy -6.3 -7.5) - (xy -6.3 -6.9) - (xy -5.7 -6.9) - (xy -5.7 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)) - (fp_poly (pts - (xy -2.1 -4.5) - (xy -2.1 -3.9) - (xy -1.5 -3.9) - (xy -1.5 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9)) - (fp_poly (pts - (xy 1.5 -0.9) - (xy 1.5 -0.3) - (xy 2.1 -0.3) - (xy 2.1 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9)) - (fp_poly (pts - (xy 5.7 -7.5) - (xy 5.7 -6.9) - (xy 6.3 -6.9) - (xy 6.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)) - (fp_poly (pts - (xy 6.9 -5.1) - (xy 6.9 -4.5) - (xy 7.5 -4.5) - (xy 7.5 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2)) - (fp_poly (pts - (xy 6.9 0.9) - (xy 6.9 1.5) - (xy 7.5 1.5) - (xy 7.5 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb)) - (fp_poly (pts - (xy 0.3 -0.9) - (xy 0.3 -0.3) - (xy 0.9 -0.3) - (xy 0.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995)) - (fp_poly (pts - (xy -2.1 -5.7) - (xy -2.1 -5.1) - (xy -1.5 -5.1) - (xy -1.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604)) - (fp_poly (pts - (xy -2.1 -2.7) - (xy -2.1 -2.1) - (xy -1.5 -2.1) - (xy -1.5 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f)) - (fp_poly (pts - (xy 2.1 -3.9) - (xy 2.1 -3.3) - (xy 2.7 -3.3) - (xy 2.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef)) - (fp_poly (pts - (xy 0.3 5.7) - (xy 0.3 6.3) - (xy 0.9 6.3) - (xy 0.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63)) - (fp_poly (pts - (xy -1.5 -7.5) - (xy -1.5 -6.9) - (xy -0.9 -6.9) - (xy -0.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2)) - (fp_poly (pts - (xy 0.3 0.3) - (xy 0.3 0.9) - (xy 0.9 0.9) - (xy 0.9 0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50)) - (fp_poly (pts - (xy 6.9 5.1) - (xy 6.9 5.7) - (xy 7.5 5.7) - (xy 7.5 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea)) - (fp_poly (pts - (xy 0.3 -7.5) - (xy 0.3 -6.9) - (xy 0.9 -6.9) - (xy 0.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213)) - (fp_poly (pts - (xy -0.9 4.5) - (xy -0.9 5.1) - (xy -0.3 5.1) - (xy -0.3 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510)) - (fp_poly (pts - (xy 0.9 -6.9) - (xy 0.9 -6.3) - (xy 1.5 -6.3) - (xy 1.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7)) - (fp_poly (pts - (xy 5.1 -3.9) - (xy 5.1 -3.3) - (xy 5.7 -3.3) - (xy 5.7 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc15f583-a41b-43af-ba94-a75455506a96)) - (fp_poly (pts - (xy 2.1 -6.3) - (xy 2.1 -5.7) - (xy 2.7 -5.7) - (xy 2.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d)) - (fp_poly (pts - (xy 0.3 -4.5) - (xy 0.3 -3.9) - (xy 0.9 -3.9) - (xy 0.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)) - (fp_poly (pts - (xy 1.5 3.3) - (xy 1.5 3.9) - (xy 2.1 3.9) - (xy 2.1 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce)) - (fp_poly (pts - (xy 5.1 5.7) - (xy 5.1 6.3) - (xy 5.7 6.3) - (xy 5.7 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)) - (fp_poly (pts - (xy 3.3 -4.5) - (xy 3.3 -3.9) - (xy 3.9 -3.9) - (xy 3.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)) - (fp_poly (pts - (xy 6.9 5.7) - (xy 6.9 6.3) - (xy 7.5 6.3) - (xy 7.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)) - (fp_poly (pts - (xy 5.7 -0.3) - (xy 5.7 0.3) - (xy 6.3 0.3) - (xy 6.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)) - (fp_poly (pts - (xy -7.5 0.9) - (xy -7.5 1.5) - (xy -6.9 1.5) - (xy -6.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150)) - (fp_poly (pts - (xy 6.9 3.9) - (xy 6.9 4.5) - (xy 7.5 4.5) - (xy 7.5 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)) - (fp_poly (pts - (xy -7.5 -6.3) - (xy -7.5 -5.7) - (xy -6.9 -5.7) - (xy -6.9 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88)) - (fp_poly (pts - (xy 2.1 -5.1) - (xy 2.1 -4.5) - (xy 2.7 -4.5) - (xy 2.7 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6)) - (fp_poly (pts - (xy 0.3 -6.9) - (xy 0.3 -6.3) - (xy 0.9 -6.3) - (xy 0.9 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)) - (fp_poly (pts - (xy 0.9 5.7) - (xy 0.9 6.3) - (xy 1.5 6.3) - (xy 1.5 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504)) - (fp_poly (pts - (xy 3.3 -1.5) - (xy 3.3 -0.9) - (xy 3.9 -0.9) - (xy 3.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)) - (fp_poly (pts - (xy -6.3 6.9) - (xy -6.3 7.5) - (xy -5.7 7.5) - (xy -5.7 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b)) - (fp_poly (pts - (xy -3.3 -2.1) - (xy -3.3 -1.5) - (xy -2.7 -1.5) - (xy -2.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86)) - (fp_poly (pts - (xy -1.5 6.9) - (xy -1.5 7.5) - (xy -0.9 7.5) - (xy -0.9 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)) - (fp_poly (pts - (xy 6.3 -0.9) - (xy 6.3 -0.3) - (xy 6.9 -0.3) - (xy 6.9 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)) - (fp_poly (pts - (xy -0.3 -5.7) - (xy -0.3 -5.1) - (xy 0.3 -5.1) - (xy 0.3 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba)) - (fp_poly (pts - (xy 2.1 2.7) - (xy 2.1 3.3) - (xy 2.7 3.3) - (xy 2.7 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df)) - (fp_poly (pts - (xy 5.1 -6.3) - (xy 5.1 -5.7) - (xy 5.7 -5.7) - (xy 5.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e091e263-c616-48ef-a460-465c70218987)) - (fp_poly (pts - (xy -3.9 0.9) - (xy -3.9 1.5) - (xy -3.3 1.5) - (xy -3.3 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35)) - (fp_poly (pts - (xy -0.3 6.9) - (xy -0.3 7.5) - (xy 0.3 7.5) - (xy 0.3 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1535036-5d36-405f-bb86-3819621c4f23)) - (fp_poly (pts - (xy 0.3 -5.1) - (xy 0.3 -4.5) - (xy 0.9 -4.5) - (xy 0.9 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)) - (fp_poly (pts - (xy 3.9 -0.3) - (xy 3.9 0.3) - (xy 4.5 0.3) - (xy 4.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)) - (fp_poly (pts - (xy -5.1 -0.3) - (xy -5.1 0.3) - (xy -4.5 0.3) - (xy -4.5 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)) - (fp_poly (pts - (xy -5.1 4.5) - (xy -5.1 5.1) - (xy -4.5 5.1) - (xy -4.5 4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e)) - (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) (fill solid) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469)) - (fp_poly (pts - (xy -2.7 2.7) - (xy -2.7 3.3) - (xy -2.1 3.3) - (xy -2.1 2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391)) - (fp_poly (pts - (xy 2.1 2.1) - (xy 2.1 2.7) - (xy 2.7 2.7) - (xy 2.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)) - (fp_poly (pts - (xy -0.3 -5.1) - (xy -0.3 -4.5) - (xy 0.3 -4.5) - (xy 0.3 -5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4e20505-1208-4100-a4aa-676f50844c06)) (fp_poly (pts (xy 0.9 2.1) (xy 0.9 2.7) (xy 1.5 2.7) (xy 1.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69)) (fp_poly (pts - (xy -3.3 1.5) - (xy -3.3 2.1) - (xy -2.7 2.1) - (xy -2.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5203297-b913-4288-a576-12a92185cb52)) + (xy 5.7 -6.3) + (xy 5.7 -5.7) + (xy 6.3 -5.7) + (xy 6.3 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)) (fp_poly (pts - (xy -4.5 -7.5) - (xy -4.5 -6.9) - (xy -3.9 -6.9) - (xy -3.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b)) + (xy 6.9 -3.9) + (xy 6.9 -3.3) + (xy 7.5 -3.3) + (xy 7.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)) (fp_poly (pts - (xy -5.1 3.3) - (xy -5.1 3.9) - (xy -4.5 3.9) - (xy -4.5 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)) + (xy -2.7 -4.5) + (xy -2.7 -3.9) + (xy -2.1 -3.9) + (xy -2.1 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc)) (fp_poly (pts - (xy -2.1 -2.1) - (xy -2.1 -1.5) - (xy -1.5 -1.5) - (xy -1.5 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)) + (xy -5.7 4.5) + (xy -5.7 5.1) + (xy -5.1 5.1) + (xy -5.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277)) (fp_poly (pts - (xy -3.9 -6.9) - (xy -3.9 -6.3) - (xy -3.3 -6.3) - (xy -3.3 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6)) + (xy 0.3 0.3) + (xy 0.3 0.9) + (xy 0.9 0.9) + (xy 0.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957)) (fp_poly (pts - (xy 0.9 6.9) - (xy 0.9 7.5) - (xy 1.5 7.5) - (xy 1.5 6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)) + (xy -2.1 6.9) + (xy -2.1 7.5) + (xy -1.5 7.5) + (xy -1.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7)) (fp_poly (pts - (xy -3.3 2.1) - (xy -3.3 2.7) - (xy -2.7 2.7) - (xy -2.7 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128)) + (xy 0.3 -1.5) + (xy 0.3 -0.9) + (xy 0.9 -0.9) + (xy 0.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac)) (fp_poly (pts - (xy 0.9 -3.3) - (xy 0.9 -2.7) - (xy 1.5 -2.7) - (xy 1.5 -3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8)) - (fp_poly (pts - (xy -6.3 0.9) - (xy -6.3 1.5) - (xy -5.7 1.5) - (xy -5.7 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905)) + (xy -0.9 -0.3) + (xy -0.9 0.3) + (xy -0.3 0.3) + (xy -0.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db)) (fp_poly (pts (xy -6.3 -2.1) (xy -6.3 -1.5) (xy -5.7 -1.5) (xy -5.7 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67)) - (fp_poly (pts - (xy -7.5 -3.9) - (xy -7.5 -3.3) - (xy -6.9 -3.3) - (xy -6.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)) - (fp_poly (pts - (xy -5.7 -6.3) - (xy -5.7 -5.7) - (xy -5.1 -5.7) - (xy -5.1 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e)) - (fp_poly (pts - (xy 6.9 -6.9) - (xy 6.9 -6.3) - (xy 7.5 -6.3) - (xy 7.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)) - (fp_poly (pts - (xy -0.9 3.3) - (xy -0.9 3.9) - (xy -0.3 3.9) - (xy -0.3 3.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7)) - (fp_poly (pts - (xy 6.3 -1.5) - (xy 6.3 -0.9) - (xy 6.9 -0.9) - (xy 6.9 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)) - (fp_poly (pts - (xy 3.3 -7.5) - (xy 3.3 -6.9) - (xy 3.9 -6.9) - (xy 3.9 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b)) - (fp_poly (pts - (xy -1.5 5.7) - (xy -1.5 6.3) - (xy -0.9 6.3) - (xy -0.9 5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733)) - (fp_poly (pts - (xy -6.3 5.1) - (xy -6.3 5.7) - (xy -5.7 5.7) - (xy -5.7 5.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a)) - (fp_poly (pts - (xy -3.9 3.9) - (xy -3.9 4.5) - (xy -3.3 4.5) - (xy -3.3 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)) - (fp_poly (pts - (xy 2.7 1.5) - (xy 2.7 2.1) - (xy 3.3 2.1) - (xy 3.3 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c)) - (fp_poly (pts - (xy -3.9 -3.9) - (xy -3.9 -3.3) - (xy -3.3 -3.3) - (xy -3.3 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)) - (fp_poly (pts - (xy -7.5 3.9) - (xy -7.5 4.5) - (xy -6.9 4.5) - (xy -6.9 3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a)) - (fp_poly (pts - (xy -6.9 -7.5) - (xy -6.9 -6.9) - (xy -6.3 -6.9) - (xy -6.3 -7.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a)) - (fp_poly (pts - (xy -5.7 -0.9) - (xy -5.7 -0.3) - (xy -5.1 -0.3) - (xy -5.1 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)) - (fp_poly (pts - (xy 2.1 1.5) - (xy 2.1 2.1) - (xy 2.7 2.1) - (xy 2.7 1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd)) - (fp_poly (pts - (xy -6.3 -6.3) - (xy -6.3 -5.7) - (xy -5.7 -5.7) - (xy -5.7 -6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f)) - (fp_poly (pts - (xy 6.3 0.9) - (xy 6.3 1.5) - (xy 6.9 1.5) - (xy 6.9 0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f7667b23-296e-4362-a7e3-949632c8954b)) - (fp_poly (pts - (xy -2.1 -0.9) - (xy -2.1 -0.3) - (xy -1.5 -0.3) - (xy -1.5 -0.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f)) - (fp_poly (pts - (xy 6.9 -5.7) - (xy 6.9 -5.1) - (xy 7.5 -5.1) - (xy 7.5 -5.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242)) - (fp_poly (pts - (xy -0.3 -0.3) - (xy -0.3 0.3) - (xy 0.3 0.3) - (xy 0.3 -0.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)) - (fp_poly (pts - (xy 6.9 2.1) - (xy 6.9 2.7) - (xy 7.5 2.7) - (xy 7.5 2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916)) (fp_poly (pts (xy 1.5 -6.9) (xy 1.5 -6.3) (xy 2.1 -6.3) (xy 2.1 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f959907b-1cef-4760-b043-4260a660a2ae)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5)) + (fp_poly (pts + (xy 0.3 -6.9) + (xy 0.3 -6.3) + (xy 0.9 -6.3) + (xy 0.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)) + (fp_poly (pts + (xy -3.9 -2.7) + (xy -3.9 -2.1) + (xy -3.3 -2.1) + (xy -3.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)) + (fp_poly (pts + (xy 5.7 -1.5) + (xy 5.7 -0.9) + (xy 6.3 -0.9) + (xy 6.3 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)) + (fp_poly (pts + (xy -2.7 5.7) + (xy -2.7 6.3) + (xy -2.1 6.3) + (xy -2.1 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7)) (fp_poly (pts - (xy -0.9 -2.1) (xy -0.9 -1.5) + (xy -0.9 -0.9) + (xy -0.3 -0.9) (xy -0.3 -1.5) - (xy -0.3 -2.1) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe)) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)) (fp_poly (pts - (xy -5.7 -3.9) - (xy -5.7 -3.3) - (xy -5.1 -3.3) - (xy -5.1 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e)) + (xy 3.9 -2.7) + (xy 3.9 -2.1) + (xy 4.5 -2.1) + (xy 4.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 109caac1-5036-4f23-9a66-f569d871501b)) (fp_poly (pts - (xy -2.1 -6.9) - (xy -2.1 -6.3) - (xy -1.5 -6.3) - (xy -1.5 -6.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)) + (xy -5.1 4.5) + (xy -5.1 5.1) + (xy -4.5 5.1) + (xy -4.5 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3)) (fp_poly (pts - (xy -1.5 -4.5) - (xy -1.5 -3.9) - (xy -0.9 -3.9) - (xy -0.9 -4.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)) + (xy -6.3 3.3) + (xy -6.3 3.9) + (xy -5.7 3.9) + (xy -5.7 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9)) (fp_poly (pts - (xy -3.3 -1.5) - (xy -3.3 -0.9) - (xy -2.7 -0.9) + (xy -5.7 2.1) + (xy -5.7 2.7) + (xy -5.1 2.7) + (xy -5.1 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)) + (fp_poly (pts + (xy -2.1 0.9) + (xy -2.1 1.5) + (xy -1.5 1.5) + (xy -1.5 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)) + (fp_poly (pts + (xy -5.7 -7.5) + (xy -5.7 -6.9) + (xy -5.1 -6.9) + (xy -5.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)) + (fp_poly (pts + (xy -7.5 3.9) + (xy -7.5 4.5) + (xy -6.9 4.5) + (xy -6.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771)) + (fp_poly (pts + (xy 3.3 -6.3) + (xy 3.3 -5.7) + (xy 3.9 -5.7) + (xy 3.9 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee)) + (fp_poly (pts + (xy 4.5 4.5) + (xy 4.5 5.1) + (xy 5.1 5.1) + (xy 5.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0)) + (fp_poly (pts + (xy -5.1 -2.7) + (xy -5.1 -2.1) + (xy -4.5 -2.1) + (xy -4.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)) + (fp_poly (pts + (xy -7.5 4.5) + (xy -7.5 5.1) + (xy -6.9 5.1) + (xy -6.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)) + (fp_poly (pts + (xy 3.3 -2.7) + (xy 3.3 -2.1) + (xy 3.9 -2.1) + (xy 3.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)) + (fp_poly (pts + (xy 6.3 -1.5) + (xy 6.3 -0.9) + (xy 6.9 -0.9) + (xy 6.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1c68b844-c861-46b7-b734-0242168a4220)) + (fp_poly (pts + (xy -2.7 -2.1) (xy -2.7 -1.5) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)) + (xy -2.1 -1.5) + (xy -2.1 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)) (fp_poly (pts - (xy 6.3 -2.7) - (xy 6.3 -2.1) - (xy 6.9 -2.1) - (xy 6.9 -2.7) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde)) + (xy 3.3 6.3) + (xy 3.3 6.9) + (xy 3.9 6.9) + (xy 3.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746)) (fp_poly (pts - (xy -4.5 -3.9) - (xy -4.5 -3.3) - (xy -3.9 -3.3) - (xy -3.9 -3.9) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)) + (xy -2.7 0.9) + (xy -2.7 1.5) + (xy -2.1 1.5) + (xy -2.1 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9)) (fp_poly (pts - (xy 0.9 6.3) - (xy 0.9 6.9) - (xy 1.5 6.9) - (xy 1.5 6.3) - ) (layer "F.SilkS") (width 0) (fill solid) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)) + (xy 2.1 4.5) + (xy 2.1 5.1) + (xy 2.7 5.1) + (xy 2.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d)) + (fp_poly (pts + (xy 0.9 -7.5) + (xy 0.9 -6.9) + (xy 1.5 -6.9) + (xy 1.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e)) + (fp_poly (pts + (xy 0.3 -5.1) + (xy 0.3 -4.5) + (xy 0.9 -4.5) + (xy 0.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)) + (fp_poly (pts + (xy 4.5 2.1) + (xy 4.5 2.7) + (xy 5.1 2.7) + (xy 5.1 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273)) + (fp_poly (pts + (xy -2.1 -0.9) + (xy -2.1 -0.3) + (xy -1.5 -0.3) + (xy -1.5 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3)) + (fp_poly (pts + (xy 5.7 -5.7) + (xy 5.7 -5.1) + (xy 6.3 -5.1) + (xy 6.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25)) + (fp_poly (pts + (xy -3.9 -5.1) + (xy -3.9 -4.5) + (xy -3.3 -4.5) + (xy -3.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5)) + (fp_poly (pts + (xy 5.1 3.9) + (xy 5.1 4.5) + (xy 5.7 4.5) + (xy 5.7 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1)) + (fp_poly (pts + (xy 5.1 -3.9) + (xy 5.1 -3.3) + (xy 5.7 -3.3) + (xy 5.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)) + (fp_poly (pts + (xy -2.1 -5.7) + (xy -2.1 -5.1) + (xy -1.5 -5.1) + (xy -1.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c)) (fp_poly (pts (xy 6.3 -0.3) (xy 6.3 0.3) (xy 6.9 0.3) (xy 6.9 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765)) + (fp_poly (pts + (xy 5.1 -7.5) + (xy 5.1 -6.9) + (xy 5.7 -6.9) + (xy 5.7 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)) + (fp_poly (pts + (xy -2.1 -4.5) + (xy -2.1 -3.9) + (xy -1.5 -3.9) + (xy -1.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493)) + (fp_poly (pts + (xy 2.7 1.5) + (xy 2.7 2.1) + (xy 3.3 2.1) + (xy 3.3 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c)) + (fp_poly (pts + (xy 5.7 4.5) + (xy 5.7 5.1) + (xy 6.3 5.1) + (xy 6.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece)) + (fp_poly (pts + (xy 2.1 -6.9) + (xy 2.1 -6.3) + (xy 2.7 -6.3) + (xy 2.7 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4)) + (fp_poly (pts + (xy -5.1 6.9) + (xy -5.1 7.5) + (xy -4.5 7.5) + (xy -4.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0)) + (fp_poly (pts + (xy -7.5 -6.9) + (xy -7.5 -6.3) + (xy -6.9 -6.3) + (xy -6.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be)) + (fp_poly (pts + (xy -5.1 -5.1) + (xy -5.1 -4.5) + (xy -4.5 -4.5) + (xy -4.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43)) + (fp_poly (pts + (xy -2.7 -3.9) + (xy -2.7 -3.3) + (xy -2.1 -3.3) + (xy -2.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)) + (fp_poly (pts + (xy 2.1 -6.3) + (xy 2.1 -5.7) + (xy 2.7 -5.7) + (xy 2.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278)) + (fp_poly (pts + (xy -7.5 6.3) + (xy -7.5 6.9) + (xy -6.9 6.9) + (xy -6.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225)) + (fp_poly (pts + (xy -2.7 -6.3) + (xy -2.7 -5.7) + (xy -2.1 -5.7) + (xy -2.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46)) + (fp_poly (pts + (xy 3.3 6.9) + (xy 3.3 7.5) + (xy 3.9 7.5) + (xy 3.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004)) + (fp_poly (pts + (xy 5.7 -2.7) + (xy 5.7 -2.1) + (xy 6.3 -2.1) + (xy 6.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)) + (fp_poly (pts + (xy -0.3 5.1) + (xy -0.3 5.7) + (xy 0.3 5.7) + (xy 0.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7)) + (fp_poly (pts + (xy 3.3 -0.3) + (xy 3.3 0.3) + (xy 3.9 0.3) + (xy 3.9 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)) + (fp_poly (pts + (xy -6.3 -0.3) + (xy -6.3 0.3) + (xy -5.7 0.3) + (xy -5.7 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)) + (fp_poly (pts + (xy -3.9 6.9) + (xy -3.9 7.5) + (xy -3.3 7.5) + (xy -3.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b)) + (fp_poly (pts + (xy -3.9 -0.3) + (xy -3.9 0.3) + (xy -3.3 0.3) + (xy -3.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)) + (fp_poly (pts + (xy -5.7 -3.9) + (xy -5.7 -3.3) + (xy -5.1 -3.3) + (xy -5.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)) + (fp_poly (pts + (xy -2.1 -6.9) + (xy -2.1 -6.3) + (xy -1.5 -6.3) + (xy -1.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)) + (fp_poly (pts + (xy 6.3 0.9) + (xy 6.3 1.5) + (xy 6.9 1.5) + (xy 6.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9)) + (fp_poly (pts + (xy -1.5 0.9) + (xy -1.5 1.5) + (xy -0.9 1.5) + (xy -0.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)) + (fp_poly (pts + (xy -6.3 5.1) + (xy -6.3 5.7) + (xy -5.7 5.7) + (xy -5.7 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)) + (fp_poly (pts + (xy 6.9 5.7) + (xy 6.9 6.3) + (xy 7.5 6.3) + (xy 7.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5)) + (fp_poly (pts + (xy -0.9 3.3) + (xy -0.9 3.9) + (xy -0.3 3.9) + (xy -0.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49)) + (fp_poly (pts + (xy 6.9 -7.5) + (xy 6.9 -6.9) + (xy 7.5 -6.9) + (xy 7.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22)) + (fp_poly (pts + (xy -6.3 -5.1) + (xy -6.3 -4.5) + (xy -5.7 -4.5) + (xy -5.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)) + (fp_poly (pts + (xy -1.5 -1.5) + (xy -1.5 -0.9) + (xy -0.9 -0.9) + (xy -0.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c)) + (fp_poly (pts + (xy 0.3 2.1) + (xy 0.3 2.7) + (xy 0.9 2.7) + (xy 0.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)) + (fp_poly (pts + (xy -5.1 5.7) + (xy -5.1 6.3) + (xy -4.5 6.3) + (xy -4.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885)) + (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) (fill solid) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)) + (fp_poly (pts + (xy -2.7 4.5) + (xy -2.7 5.1) + (xy -2.1 5.1) + (xy -2.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa)) + (fp_poly (pts + (xy 6.3 3.9) + (xy 6.3 4.5) + (xy 6.9 4.5) + (xy 6.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 45884597-7014-4461-83ee-9975c42b9a53)) + (fp_poly (pts + (xy 4.5 -6.3) + (xy 4.5 -5.7) + (xy 5.1 -5.7) + (xy 5.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)) + (fp_poly (pts + (xy 4.5 2.7) + (xy 4.5 3.3) + (xy 5.1 3.3) + (xy 5.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)) + (fp_poly (pts + (xy -7.5 3.3) + (xy -7.5 3.9) + (xy -6.9 3.9) + (xy -6.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59)) + (fp_poly (pts + (xy -4.5 -2.1) + (xy -4.5 -1.5) + (xy -3.9 -1.5) + (xy -3.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3)) + (fp_poly (pts + (xy 6.9 -1.5) + (xy 6.9 -0.9) + (xy 7.5 -0.9) + (xy 7.5 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54)) + (fp_poly (pts + (xy 6.9 2.1) + (xy 6.9 2.7) + (xy 7.5 2.7) + (xy 7.5 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)) + (fp_poly (pts + (xy -6.9 6.9) + (xy -6.9 7.5) + (xy -6.3 7.5) + (xy -6.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)) + (fp_poly (pts + (xy 1.5 5.1) + (xy 1.5 5.7) + (xy 2.1 5.7) + (xy 2.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)) + (fp_poly (pts + (xy 2.1 2.7) + (xy 2.1 3.3) + (xy 2.7 3.3) + (xy 2.7 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126)) + (fp_poly (pts + (xy 6.3 3.3) + (xy 6.3 3.9) + (xy 6.9 3.9) + (xy 6.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b)) + (fp_poly (pts + (xy -3.9 -4.5) + (xy -3.9 -3.9) + (xy -3.3 -3.9) + (xy -3.3 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e)) + (fp_poly (pts + (xy -0.9 5.1) + (xy -0.9 5.7) + (xy -0.3 5.7) + (xy -0.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6)) + (fp_poly (pts + (xy -3.3 0.9) + (xy -3.3 1.5) + (xy -2.7 1.5) + (xy -2.7 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)) + (fp_poly (pts + (xy -1.5 -4.5) + (xy -1.5 -3.9) + (xy -0.9 -3.9) + (xy -0.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a)) + (fp_poly (pts + (xy -1.5 -5.1) + (xy -1.5 -4.5) + (xy -0.9 -4.5) + (xy -0.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)) + (fp_poly (pts + (xy 3.9 4.5) + (xy 3.9 5.1) + (xy 4.5 5.1) + (xy 4.5 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 54212c01-b363-47b8-a145-45c40df316f4)) + (fp_poly (pts + (xy 0.9 -5.1) + (xy 0.9 -4.5) + (xy 1.5 -4.5) + (xy 1.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302)) + (fp_poly (pts + (xy 0.3 6.9) + (xy 0.3 7.5) + (xy 0.9 7.5) + (xy 0.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c)) + (fp_poly (pts + (xy -5.7 -5.7) + (xy -5.7 -5.1) + (xy -5.1 -5.1) + (xy -5.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)) + (fp_poly (pts + (xy -0.9 -5.1) + (xy -0.9 -4.5) + (xy -0.3 -4.5) + (xy -0.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)) + (fp_poly (pts + (xy 4.5 -5.1) + (xy 4.5 -4.5) + (xy 5.1 -4.5) + (xy 5.1 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367)) + (fp_poly (pts + (xy 5.7 -5.1) + (xy 5.7 -4.5) + (xy 6.3 -4.5) + (xy 6.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f)) + (fp_poly (pts + (xy 1.5 6.9) + (xy 1.5 7.5) + (xy 2.1 7.5) + (xy 2.1 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615)) + (fp_poly (pts + (xy 3.9 6.3) + (xy 3.9 6.9) + (xy 4.5 6.9) + (xy 4.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)) + (fp_poly (pts + (xy -3.9 -6.9) + (xy -3.9 -6.3) + (xy -3.3 -6.3) + (xy -3.3 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)) + (fp_poly (pts + (xy -3.9 5.1) + (xy -3.9 5.7) + (xy -3.3 5.7) + (xy -3.3 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)) + (fp_poly (pts + (xy 1.5 -5.7) + (xy 1.5 -5.1) + (xy 2.1 -5.1) + (xy 2.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573)) + (fp_poly (pts + (xy -5.7 -2.7) + (xy -5.7 -2.1) + (xy -5.1 -2.1) + (xy -5.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)) + (fp_poly (pts + (xy 2.1 -3.9) + (xy 2.1 -3.3) + (xy 2.7 -3.3) + (xy 2.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)) + (fp_poly (pts + (xy -2.7 2.7) + (xy -2.7 3.3) + (xy -2.1 3.3) + (xy -2.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)) + (fp_poly (pts + (xy -6.3 1.5) + (xy -6.3 2.1) + (xy -5.7 2.1) + (xy -5.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d)) + (fp_poly (pts + (xy -7.5 -5.1) + (xy -7.5 -4.5) + (xy -6.9 -4.5) + (xy -6.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)) + (fp_poly (pts + (xy -4.5 1.5) + (xy -4.5 2.1) + (xy -3.9 2.1) + (xy -3.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb)) + (fp_poly (pts + (xy -7.5 -4.5) + (xy -7.5 -3.9) + (xy -6.9 -3.9) + (xy -6.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f)) + (fp_poly (pts + (xy -5.1 -2.1) + (xy -5.1 -1.5) + (xy -4.5 -1.5) + (xy -4.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd)) + (fp_poly (pts + (xy -1.5 3.9) + (xy -1.5 4.5) + (xy -0.9 4.5) + (xy -0.9 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f)) + (fp_poly (pts + (xy 4.5 -3.9) + (xy 4.5 -3.3) + (xy 5.1 -3.3) + (xy 5.1 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)) + (fp_poly (pts + (xy 0.9 -3.3) + (xy 0.9 -2.7) + (xy 1.5 -2.7) + (xy 1.5 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)) + (fp_poly (pts + (xy 2.7 0.3) + (xy 2.7 0.9) + (xy 3.3 0.9) + (xy 3.3 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff)) + (fp_poly (pts + (xy 6.9 -5.7) + (xy 6.9 -5.1) + (xy 7.5 -5.1) + (xy 7.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)) + (fp_poly (pts + (xy -7.5 0.9) + (xy -7.5 1.5) + (xy -6.9 1.5) + (xy -6.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8)) + (fp_poly (pts + (xy -5.1 0.3) + (xy -5.1 0.9) + (xy -4.5 0.9) + (xy -4.5 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8)) + (fp_poly (pts + (xy 6.3 -7.5) + (xy 6.3 -6.9) + (xy 6.9 -6.9) + (xy 6.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311)) + (fp_poly (pts + (xy -7.5 6.9) + (xy -7.5 7.5) + (xy -6.9 7.5) + (xy -6.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a)) + (fp_poly (pts + (xy -2.1 -2.1) + (xy -2.1 -1.5) + (xy -1.5 -1.5) + (xy -1.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)) + (fp_poly (pts + (xy 3.3 0.9) + (xy 3.3 1.5) + (xy 3.9 1.5) + (xy 3.9 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)) + (fp_poly (pts + (xy -0.3 -3.9) + (xy -0.3 -3.3) + (xy 0.3 -3.3) + (xy 0.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47)) + (fp_poly (pts + (xy 0.9 0.3) + (xy 0.9 0.9) + (xy 1.5 0.9) + (xy 1.5 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71989e06-8659-4605-b2da-4f729cc41263)) + (fp_poly (pts + (xy -7.5 5.7) + (xy -7.5 6.3) + (xy -6.9 6.3) + (xy -6.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3)) + (fp_poly (pts + (xy -6.3 2.1) + (xy -6.3 2.7) + (xy -5.7 2.7) + (xy -5.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769)) + (fp_poly (pts + (xy -0.3 -5.7) + (xy -0.3 -5.1) + (xy 0.3 -5.1) + (xy 0.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9)) + (fp_poly (pts + (xy -6.3 6.9) + (xy -6.3 7.5) + (xy -5.7 7.5) + (xy -5.7 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae)) + (fp_poly (pts + (xy -5.7 -0.9) + (xy -5.7 -0.3) + (xy -5.1 -0.3) + (xy -5.1 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab)) + (fp_poly (pts + (xy -3.9 2.1) + (xy -3.9 2.7) + (xy -3.3 2.7) + (xy -3.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)) + (fp_poly (pts + (xy -0.3 4.5) + (xy -0.3 5.1) + (xy 0.3 5.1) + (xy 0.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a)) + (fp_poly (pts + (xy -0.9 -2.1) + (xy -0.9 -1.5) + (xy -0.3 -1.5) + (xy -0.3 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b)) + (fp_poly (pts + (xy 0.3 -7.5) + (xy 0.3 -6.9) + (xy 0.9 -6.9) + (xy 0.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64)) + (fp_poly (pts + (xy 0.9 -3.9) + (xy 0.9 -3.3) + (xy 1.5 -3.3) + (xy 1.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae)) + (fp_poly (pts + (xy -6.3 -5.7) + (xy -6.3 -5.1) + (xy -5.7 -5.1) + (xy -5.7 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)) + (fp_poly (pts + (xy 2.7 4.5) + (xy 2.7 5.1) + (xy 3.3 5.1) + (xy 3.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041)) + (fp_poly (pts + (xy 1.5 -2.7) + (xy 1.5 -2.1) + (xy 2.1 -2.1) + (xy 2.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92)) + (fp_poly (pts + (xy 3.3 -7.5) + (xy 3.3 -6.9) + (xy 3.9 -6.9) + (xy 3.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636)) + (fp_poly (pts + (xy -5.1 -7.5) + (xy -5.1 -6.9) + (xy -4.5 -6.9) + (xy -4.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)) + (fp_poly (pts + (xy 1.5 -1.5) + (xy 1.5 -0.9) + (xy 2.1 -0.9) + (xy 2.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)) + (fp_poly (pts + (xy 4.5 -5.7) + (xy 4.5 -5.1) + (xy 5.1 -5.1) + (xy 5.1 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 81a15393-727e-448b-a777-b18773023d89)) + (fp_poly (pts + (xy -3.9 -7.5) + (xy -3.9 -6.9) + (xy -3.3 -6.9) + (xy -3.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054)) + (fp_poly (pts + (xy 3.3 5.1) + (xy 3.3 5.7) + (xy 3.9 5.7) + (xy 3.9 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9)) + (fp_poly (pts + (xy -2.7 -0.3) + (xy -2.7 0.3) + (xy -2.1 0.3) + (xy -2.1 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)) + (fp_poly (pts + (xy 6.3 4.5) + (xy 6.3 5.1) + (xy 6.9 5.1) + (xy 6.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759)) + (fp_poly (pts + (xy -6.3 -3.9) + (xy -6.3 -3.3) + (xy -5.7 -3.3) + (xy -5.7 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)) + (fp_poly (pts + (xy 0.9 6.3) + (xy 0.9 6.9) + (xy 1.5 6.9) + (xy 1.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)) + (fp_poly (pts + (xy 3.3 -0.9) + (xy 3.3 -0.3) + (xy 3.9 -0.3) + (xy 3.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)) + (fp_poly (pts + (xy 0.3 -0.9) + (xy 0.3 -0.3) + (xy 0.9 -0.3) + (xy 0.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)) + (fp_poly (pts + (xy -5.1 -5.7) + (xy -5.1 -5.1) + (xy -4.5 -5.1) + (xy -4.5 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49)) + (fp_poly (pts + (xy 0.9 -4.5) + (xy 0.9 -3.9) + (xy 1.5 -3.9) + (xy 1.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)) + (fp_poly (pts + (xy 0.9 -6.3) + (xy 0.9 -5.7) + (xy 1.5 -5.7) + (xy 1.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)) + (fp_poly (pts + (xy 6.3 -2.7) + (xy 6.3 -2.1) + (xy 6.9 -2.1) + (xy 6.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23)) + (fp_poly (pts + (xy 5.7 -7.5) + (xy 5.7 -6.9) + (xy 6.3 -6.9) + (xy 6.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42)) + (fp_poly (pts + (xy 4.5 5.1) + (xy 4.5 5.7) + (xy 5.1 5.7) + (xy 5.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)) + (fp_poly (pts + (xy -3.9 0.9) + (xy -3.9 1.5) + (xy -3.3 1.5) + (xy -3.3 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380)) + (fp_poly (pts + (xy -3.3 2.1) + (xy -3.3 2.7) + (xy -2.7 2.7) + (xy -2.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953)) + (fp_poly (pts + (xy 3.3 3.3) + (xy 3.3 3.9) + (xy 3.9 3.9) + (xy 3.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)) + (fp_poly (pts + (xy -5.7 0.9) + (xy -5.7 1.5) + (xy -5.1 1.5) + (xy -5.1 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)) + (fp_poly (pts + (xy 0.3 3.3) + (xy 0.3 3.9) + (xy 0.9 3.9) + (xy 0.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8)) + (fp_poly (pts + (xy 1.5 2.7) + (xy 1.5 3.3) + (xy 2.1 3.3) + (xy 2.1 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908)) + (fp_poly (pts + (xy 4.5 -7.5) + (xy 4.5 -6.9) + (xy 5.1 -6.9) + (xy 5.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)) + (fp_poly (pts + (xy -5.1 -3.9) + (xy -5.1 -3.3) + (xy -4.5 -3.3) + (xy -4.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)) + (fp_poly (pts + (xy -2.1 5.1) + (xy -2.1 5.7) + (xy -1.5 5.7) + (xy -1.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)) + (fp_poly (pts + (xy 5.1 -5.1) + (xy 5.1 -4.5) + (xy 5.7 -4.5) + (xy 5.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d)) + (fp_poly (pts + (xy 5.1 5.1) + (xy 5.1 5.7) + (xy 5.7 5.7) + (xy 5.7 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935057d5-6882-4c15-9a35-54677912ba12)) + (fp_poly (pts + (xy 6.9 -6.3) + (xy 6.9 -5.7) + (xy 7.5 -5.7) + (xy 7.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)) + (fp_poly (pts + (xy -0.3 -3.3) + (xy -0.3 -2.7) + (xy 0.3 -2.7) + (xy 0.3 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)) + (fp_poly (pts + (xy -0.9 3.9) + (xy -0.9 4.5) + (xy -0.3 4.5) + (xy -0.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)) + (fp_poly (pts + (xy -7.5 5.1) + (xy -7.5 5.7) + (xy -6.9 5.7) + (xy -6.9 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145)) + (fp_poly (pts + (xy -3.9 3.3) + (xy -3.9 3.9) + (xy -3.3 3.9) + (xy -3.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)) + (fp_poly (pts + (xy 1.5 4.5) + (xy 1.5 5.1) + (xy 2.1 5.1) + (xy 2.1 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c)) + (fp_poly (pts + (xy -5.7 3.3) + (xy -5.7 3.9) + (xy -5.1 3.9) + (xy -5.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790)) + (fp_poly (pts + (xy -2.7 -2.7) + (xy -2.7 -2.1) + (xy -2.1 -2.1) + (xy -2.1 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)) + (fp_poly (pts + (xy 3.3 4.5) + (xy 3.3 5.1) + (xy 3.9 5.1) + (xy 3.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656)) + (fp_poly (pts + (xy 1.5 0.3) + (xy 1.5 0.9) + (xy 2.1 0.9) + (xy 2.1 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422)) + (fp_poly (pts + (xy 5.1 6.3) + (xy 5.1 6.9) + (xy 5.7 6.9) + (xy 5.7 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b)) + (fp_poly (pts + (xy 5.7 3.3) + (xy 5.7 3.9) + (xy 6.3 3.9) + (xy 6.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b)) + (fp_poly (pts + (xy -6.9 -7.5) + (xy -6.9 -6.9) + (xy -6.3 -6.9) + (xy -6.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)) + (fp_poly (pts + (xy 2.1 1.5) + (xy 2.1 2.1) + (xy 2.7 2.1) + (xy 2.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68)) + (fp_poly (pts + (xy 0.3 -4.5) + (xy 0.3 -3.9) + (xy 0.9 -3.9) + (xy 0.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)) + (fp_poly (pts + (xy -5.7 5.1) + (xy -5.7 5.7) + (xy -5.1 5.7) + (xy -5.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)) + (fp_poly (pts + (xy -4.5 -0.9) + (xy -4.5 -0.3) + (xy -3.9 -0.3) + (xy -3.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8)) + (fp_poly (pts + (xy -1.5 3.3) + (xy -1.5 3.9) + (xy -0.9 3.9) + (xy -0.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)) + (fp_poly (pts + (xy 5.7 -3.9) + (xy 5.7 -3.3) + (xy 6.3 -3.3) + (xy 6.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)) + (fp_poly (pts + (xy 2.1 -5.1) + (xy 2.1 -4.5) + (xy 2.7 -4.5) + (xy 2.7 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)) + (fp_poly (pts + (xy 5.1 -5.7) + (xy 5.1 -5.1) + (xy 5.7 -5.1) + (xy 5.7 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114)) + (fp_poly (pts + (xy -6.3 -2.7) + (xy -6.3 -2.1) + (xy -5.7 -2.1) + (xy -5.7 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)) + (fp_poly (pts + (xy -3.9 -5.7) + (xy -3.9 -5.1) + (xy -3.3 -5.1) + (xy -3.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269)) + (fp_poly (pts + (xy -0.9 -7.5) + (xy -0.9 -6.9) + (xy -0.3 -6.9) + (xy -0.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110)) + (fp_poly (pts + (xy 6.3 -3.9) + (xy 6.3 -3.3) + (xy 6.9 -3.3) + (xy 6.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3)) + (fp_poly (pts + (xy 6.3 -0.9) + (xy 6.3 -0.3) + (xy 6.9 -0.3) + (xy 6.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6)) + (fp_poly (pts + (xy -3.9 5.7) + (xy -3.9 6.3) + (xy -3.3 6.3) + (xy -3.3 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)) + (fp_poly (pts + (xy -0.3 -7.5) + (xy -0.3 -6.9) + (xy 0.3 -6.9) + (xy 0.3 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)) + (fp_poly (pts + (xy 0.9 2.7) + (xy 0.9 3.3) + (xy 1.5 3.3) + (xy 1.5 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83)) + (fp_poly (pts + (xy 5.7 -0.3) + (xy 5.7 0.3) + (xy 6.3 0.3) + (xy 6.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75)) + (fp_poly (pts + (xy 4.5 3.9) + (xy 4.5 4.5) + (xy 5.1 4.5) + (xy 5.1 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd)) + (fp_poly (pts + (xy -0.9 1.5) + (xy -0.9 2.1) + (xy -0.3 2.1) + (xy -0.3 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp af347946-e3da-4427-87ab-77b747929f50)) + (fp_poly (pts + (xy -5.1 3.3) + (xy -5.1 3.9) + (xy -4.5 3.9) + (xy -4.5 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe)) + (fp_poly (pts + (xy -6.3 4.5) + (xy -6.3 5.1) + (xy -5.7 5.1) + (xy -5.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)) + (fp_poly (pts + (xy 0.9 -6.9) + (xy 0.9 -6.3) + (xy 1.5 -6.3) + (xy 1.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)) + (fp_poly (pts + (xy 5.1 2.7) + (xy 5.1 3.3) + (xy 5.7 3.3) + (xy 5.7 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca)) + (fp_poly (pts + (xy 2.1 -4.5) + (xy 2.1 -3.9) + (xy 2.7 -3.9) + (xy 2.7 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)) + (fp_poly (pts + (xy -1.5 -2.1) + (xy -1.5 -1.5) + (xy -0.9 -1.5) + (xy -0.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc)) + (fp_poly (pts + (xy -6.3 5.7) + (xy -6.3 6.3) + (xy -5.7 6.3) + (xy -5.7 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)) + (fp_poly (pts + (xy -7.5 -0.9) + (xy -7.5 -0.3) + (xy -6.9 -0.3) + (xy -6.9 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b5071759-a4d7-4769-be02-251f23cd4454)) + (fp_poly (pts + (xy 5.7 2.1) + (xy 5.7 2.7) + (xy 6.3 2.7) + (xy 6.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)) + (fp_poly (pts + (xy 0.3 -3.3) + (xy 0.3 -2.7) + (xy 0.9 -2.7) + (xy 0.9 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1)) + (fp_poly (pts + (xy -1.5 1.5) + (xy -1.5 2.1) + (xy -0.9 2.1) + (xy -0.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b6cd701f-4223-4e72-a305-466869ccb250)) + (fp_poly (pts + (xy 3.9 -3.9) + (xy 3.9 -3.3) + (xy 4.5 -3.3) + (xy 4.5 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91)) + (fp_poly (pts + (xy 2.1 -2.1) + (xy 2.1 -1.5) + (xy 2.7 -1.5) + (xy 2.7 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120)) + (fp_poly (pts + (xy -2.7 -1.5) + (xy -2.7 -0.9) + (xy -2.1 -0.9) + (xy -2.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)) + (fp_poly (pts + (xy -5.1 -0.3) + (xy -5.1 0.3) + (xy -4.5 0.3) + (xy -4.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)) + (fp_poly (pts + (xy 2.7 2.1) + (xy 2.7 2.7) + (xy 3.3 2.7) + (xy 3.3 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)) + (fp_poly (pts + (xy -3.9 -6.3) + (xy -3.9 -5.7) + (xy -3.3 -5.7) + (xy -3.3 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3)) + (fp_poly (pts + (xy -0.3 6.9) + (xy -0.3 7.5) + (xy 0.3 7.5) + (xy 0.3 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b)) + (fp_poly (pts + (xy -5.1 -6.3) + (xy -5.1 -5.7) + (xy -4.5 -5.7) + (xy -4.5 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb)) + (fp_poly (pts + (xy -3.3 -1.5) + (xy -3.3 -0.9) + (xy -2.7 -0.9) + (xy -2.7 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb)) + (fp_poly (pts + (xy -2.1 5.7) + (xy -2.1 6.3) + (xy -1.5 6.3) + (xy -1.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa)) + (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) (fill solid) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a)) + (fp_poly (pts + (xy -5.7 -5.1) + (xy -5.7 -4.5) + (xy -5.1 -4.5) + (xy -5.1 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c09938fd-06b9-4771-9f63-2311626243b3)) + (fp_poly (pts + (xy 6.9 0.9) + (xy 6.9 1.5) + (xy 7.5 1.5) + (xy 7.5 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)) + (fp_poly (pts + (xy -7.5 -3.9) + (xy -7.5 -3.3) + (xy -6.9 -3.3) + (xy -6.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b)) + (fp_poly (pts + (xy -0.9 -5.7) + (xy -0.9 -5.1) + (xy -0.3 -5.1) + (xy -0.3 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee)) + (fp_poly (pts + (xy -6.9 -3.9) + (xy -6.9 -3.3) + (xy -6.3 -3.3) + (xy -6.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865)) + (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) (fill solid) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)) + (fp_poly (pts + (xy 2.1 3.9) + (xy 2.1 4.5) + (xy 2.7 4.5) + (xy 2.7 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9)) + (fp_poly (pts + (xy 3.9 -0.3) + (xy 3.9 0.3) + (xy 4.5 0.3) + (xy 4.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9)) + (fp_poly (pts + (xy 6.9 6.3) + (xy 6.9 6.9) + (xy 7.5 6.9) + (xy 7.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)) + (fp_poly (pts + (xy 6.9 3.9) + (xy 6.9 4.5) + (xy 7.5 4.5) + (xy 7.5 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2)) + (fp_poly (pts + (xy 0.3 -2.1) + (xy 0.3 -1.5) + (xy 0.9 -1.5) + (xy 0.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb)) + (fp_poly (pts + (xy 4.5 -0.3) + (xy 4.5 0.3) + (xy 5.1 0.3) + (xy 5.1 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995)) + (fp_poly (pts + (xy -2.7 5.1) + (xy -2.7 5.7) + (xy -2.1 5.7) + (xy -2.1 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604)) + (fp_poly (pts + (xy 2.1 2.1) + (xy 2.1 2.7) + (xy 2.7 2.7) + (xy 2.7 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f)) + (fp_poly (pts + (xy -4.5 3.3) + (xy -4.5 3.9) + (xy -3.9 3.9) + (xy -3.9 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef)) + (fp_poly (pts + (xy -6.3 -6.3) + (xy -6.3 -5.7) + (xy -5.7 -5.7) + (xy -5.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63)) + (fp_poly (pts + (xy -1.5 6.9) + (xy -1.5 7.5) + (xy -0.9 7.5) + (xy -0.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2)) + (fp_poly (pts + (xy -6.9 -0.9) + (xy -6.9 -0.3) + (xy -6.3 -0.3) + (xy -6.3 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50)) + (fp_poly (pts + (xy 5.1 -6.3) + (xy 5.1 -5.7) + (xy 5.7 -5.7) + (xy 5.7 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea)) + (fp_poly (pts + (xy -4.5 6.9) + (xy -4.5 7.5) + (xy -3.9 7.5) + (xy -3.9 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213)) + (fp_poly (pts + (xy -0.3 -5.1) + (xy -0.3 -4.5) + (xy 0.3 -4.5) + (xy 0.3 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510)) + (fp_poly (pts + (xy -2.1 6.3) + (xy -2.1 6.9) + (xy -1.5 6.9) + (xy -1.5 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7)) + (fp_poly (pts + (xy -6.9 3.3) + (xy -6.9 3.9) + (xy -6.3 3.9) + (xy -6.3 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc15f583-a41b-43af-ba94-a75455506a96)) + (fp_poly (pts + (xy -5.7 5.7) + (xy -5.7 6.3) + (xy -5.1 6.3) + (xy -5.1 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d)) + (fp_poly (pts + (xy -0.3 3.9) + (xy -0.3 4.5) + (xy 0.3 4.5) + (xy 0.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)) + (fp_poly (pts + (xy -3.9 -3.9) + (xy -3.9 -3.3) + (xy -3.3 -3.3) + (xy -3.3 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce)) + (fp_poly (pts + (xy 6.9 -6.9) + (xy 6.9 -6.3) + (xy 7.5 -6.3) + (xy 7.5 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)) + (fp_poly (pts + (xy -3.9 3.9) + (xy -3.9 4.5) + (xy -3.3 4.5) + (xy -3.3 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)) + (fp_poly (pts + (xy 3.3 -6.9) + (xy 3.3 -6.3) + (xy 3.9 -6.3) + (xy 3.9 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)) + (fp_poly (pts + (xy -0.3 -0.9) + (xy -0.3 -0.3) + (xy 0.3 -0.3) + (xy 0.3 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)) + (fp_poly (pts + (xy 4.5 -1.5) + (xy 4.5 -0.9) + (xy 5.1 -0.9) + (xy 5.1 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150)) + (fp_poly (pts + (xy 6.9 -5.1) + (xy 6.9 -4.5) + (xy 7.5 -4.5) + (xy 7.5 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)) + (fp_poly (pts + (xy 0.9 5.7) + (xy 0.9 6.3) + (xy 1.5 6.3) + (xy 1.5 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88)) + (fp_poly (pts + (xy -3.9 4.5) + (xy -3.9 5.1) + (xy -3.3 5.1) + (xy -3.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6)) + (fp_poly (pts + (xy -0.9 6.3) + (xy -0.9 6.9) + (xy -0.3 6.9) + (xy -0.3 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)) + (fp_poly (pts + (xy -7.5 -6.3) + (xy -7.5 -5.7) + (xy -6.9 -5.7) + (xy -6.9 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504)) + (fp_poly (pts + (xy -6.3 0.9) + (xy -6.3 1.5) + (xy -5.7 1.5) + (xy -5.7 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)) + (fp_poly (pts + (xy 3.9 -7.5) + (xy 3.9 -6.9) + (xy 4.5 -6.9) + (xy 4.5 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b)) + (fp_poly (pts + (xy -3.3 1.5) + (xy -3.3 2.1) + (xy -2.7 2.1) + (xy -2.7 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86)) + (fp_poly (pts + (xy -1.5 -7.5) + (xy -1.5 -6.9) + (xy -0.9 -6.9) + (xy -0.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)) + (fp_poly (pts + (xy 0.9 -0.3) + (xy 0.9 0.3) + (xy 1.5 0.3) + (xy 1.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)) + (fp_poly (pts + (xy -5.1 5.1) + (xy -5.1 5.7) + (xy -4.5 5.7) + (xy -4.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba)) + (fp_poly (pts + (xy -2.7 -3.3) + (xy -2.7 -2.7) + (xy -2.1 -2.7) + (xy -2.1 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df)) + (fp_poly (pts + (xy 6.9 5.1) + (xy 6.9 5.7) + (xy 7.5 5.7) + (xy 7.5 5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e091e263-c616-48ef-a460-465c70218987)) + (fp_poly (pts + (xy 0.9 -1.5) + (xy 0.9 -0.9) + (xy 1.5 -0.9) + (xy 1.5 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35)) + (fp_poly (pts + (xy -2.7 -7.5) + (xy -2.7 -6.9) + (xy -2.1 -6.9) + (xy -2.1 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1535036-5d36-405f-bb86-3819621c4f23)) + (fp_poly (pts + (xy -1.5 4.5) + (xy -1.5 5.1) + (xy -0.9 5.1) + (xy -0.9 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)) + (fp_poly (pts + (xy 1.5 -0.9) + (xy 1.5 -0.3) + (xy 2.1 -0.3) + (xy 2.1 -0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)) + (fp_poly (pts + (xy -2.1 -0.3) + (xy -2.1 0.3) + (xy -1.5 0.3) + (xy -1.5 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)) + (fp_poly (pts + (xy 3.3 -5.1) + (xy 3.3 -4.5) + (xy 3.9 -4.5) + (xy 3.9 -5.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e)) + (fp_poly (pts + (xy -6.3 -7.5) + (xy -6.3 -6.9) + (xy -5.7 -6.9) + (xy -5.7 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469)) + (fp_poly (pts + (xy 1.5 -3.3) + (xy 1.5 -2.7) + (xy 2.1 -2.7) + (xy 2.1 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391)) + (fp_poly (pts + (xy -2.1 -2.7) + (xy -2.1 -2.1) + (xy -1.5 -2.1) + (xy -1.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558)) + (fp_poly (pts + (xy -0.9 4.5) + (xy -0.9 5.1) + (xy -0.3 5.1) + (xy -0.3 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e4e20505-1208-4100-a4aa-676f50844c06)) + (fp_poly (pts + (xy 0.3 -2.7) + (xy 0.3 -2.1) + (xy 0.9 -2.1) + (xy 0.9 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)) + (fp_poly (pts + (xy -3.3 -2.1) + (xy -3.3 -1.5) + (xy -2.7 -1.5) + (xy -2.7 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5203297-b913-4288-a576-12a92185cb52)) + (fp_poly (pts + (xy 0.9 6.9) + (xy 0.9 7.5) + (xy 1.5 7.5) + (xy 1.5 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b)) + (fp_poly (pts + (xy 3.3 -3.9) + (xy 3.3 -3.3) + (xy 3.9 -3.3) + (xy 3.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)) + (fp_poly (pts + (xy -5.1 1.5) + (xy -5.1 2.1) + (xy -4.5 2.1) + (xy -4.5 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580)) + (fp_poly (pts + (xy 2.1 6.3) + (xy 2.1 6.9) + (xy 2.7 6.9) + (xy 2.7 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6)) + (fp_poly (pts + (xy -4.5 -7.5) + (xy -4.5 -6.9) + (xy -3.9 -6.9) + (xy -3.9 -7.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)) + (fp_poly (pts + (xy 2.7 -2.7) + (xy 2.7 -2.1) + (xy 3.3 -2.1) + (xy 3.3 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128)) + (fp_poly (pts + (xy -0.9 2.7) + (xy -0.9 3.3) + (xy -0.3 3.3) + (xy -0.3 2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8)) + (fp_poly (pts + (xy 3.3 -1.5) + (xy 3.3 -0.9) + (xy 3.9 -0.9) + (xy 3.9 -1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905)) + (fp_poly (pts + (xy 0.3 1.5) + (xy 0.3 2.1) + (xy 0.9 2.1) + (xy 0.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67)) + (fp_poly (pts + (xy 6.9 3.3) + (xy 6.9 3.9) + (xy 7.5 3.9) + (xy 7.5 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)) + (fp_poly (pts + (xy -1.5 5.7) + (xy -1.5 6.3) + (xy -0.9 6.3) + (xy -0.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e)) + (fp_poly (pts + (xy 5.1 5.7) + (xy 5.1 6.3) + (xy 5.7 6.3) + (xy 5.7 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)) + (fp_poly (pts + (xy -1.5 -3.9) + (xy -1.5 -3.3) + (xy -0.9 -3.3) + (xy -0.9 -3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7)) + (fp_poly (pts + (xy 2.1 0.3) + (xy 2.1 0.9) + (xy 2.7 0.9) + (xy 2.7 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)) + (fp_poly (pts + (xy -5.7 6.9) + (xy -5.7 7.5) + (xy -5.1 7.5) + (xy -5.1 6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b)) + (fp_poly (pts + (xy -5.7 -6.3) + (xy -5.7 -5.7) + (xy -5.1 -5.7) + (xy -5.1 -6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733)) + (fp_poly (pts + (xy 3.3 -5.7) + (xy 3.3 -5.1) + (xy 3.9 -5.1) + (xy 3.9 -5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a)) + (fp_poly (pts + (xy 3.3 -4.5) + (xy 3.3 -3.9) + (xy 3.9 -3.9) + (xy 3.9 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)) + (fp_poly (pts + (xy 6.9 -2.7) + (xy 6.9 -2.1) + (xy 7.5 -2.1) + (xy 7.5 -2.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c)) + (fp_poly (pts + (xy 1.5 3.3) + (xy 1.5 3.9) + (xy 2.1 3.9) + (xy 2.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)) + (fp_poly (pts + (xy 6.9 -4.5) + (xy 6.9 -3.9) + (xy 7.5 -3.9) + (xy 7.5 -4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a)) + (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) (fill solid) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a)) + (fp_poly (pts + (xy -1.5 0.3) + (xy -1.5 0.9) + (xy -0.9 0.9) + (xy -0.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)) + (fp_poly (pts + (xy -7.5 -2.1) + (xy -7.5 -1.5) + (xy -6.9 -1.5) + (xy -6.9 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd)) + (fp_poly (pts + (xy 0.3 5.7) + (xy 0.3 6.3) + (xy 0.9 6.3) + (xy 0.9 5.7) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f)) + (fp_poly (pts + (xy 0.9 -2.1) + (xy 0.9 -1.5) + (xy 1.5 -1.5) + (xy 1.5 -2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f7667b23-296e-4362-a7e3-949632c8954b)) + (fp_poly (pts + (xy -7.5 0.3) + (xy -7.5 0.9) + (xy -6.9 0.9) + (xy -6.9 0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f)) + (fp_poly (pts + (xy 5.1 4.5) + (xy 5.1 5.1) + (xy 5.7 5.1) + (xy 5.7 4.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242)) + (fp_poly (pts + (xy -6.9 -0.3) + (xy -6.9 0.3) + (xy -6.3 0.3) + (xy -6.3 -0.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)) + (fp_poly (pts + (xy 2.1 -3.3) + (xy 2.1 -2.7) + (xy 2.7 -2.7) + (xy 2.7 -3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386)) + (fp_poly (pts + (xy -3.9 6.3) + (xy -3.9 6.9) + (xy -3.3 6.9) + (xy -3.3 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f959907b-1cef-4760-b043-4260a660a2ae)) + (fp_poly (pts + (xy -7.5 1.5) + (xy -7.5 2.1) + (xy -6.9 2.1) + (xy -6.9 1.5) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe)) + (fp_poly (pts + (xy 4.5 3.3) + (xy 4.5 3.9) + (xy 5.1 3.9) + (xy 5.1 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e)) + (fp_poly (pts + (xy 0.3 6.3) + (xy 0.3 6.9) + (xy 0.9 6.9) + (xy 0.9 6.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)) + (fp_poly (pts + (xy 1.5 3.9) + (xy 1.5 4.5) + (xy 2.1 4.5) + (xy 2.1 3.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)) + (fp_poly (pts + (xy -0.3 0.9) + (xy -0.3 1.5) + (xy 0.3 1.5) + (xy 0.3 0.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)) + (fp_poly (pts + (xy -7.5 2.1) + (xy -7.5 2.7) + (xy -6.9 2.7) + (xy -6.9 2.1) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde)) + (fp_poly (pts + (xy 2.1 3.3) + (xy 2.1 3.9) + (xy 2.7 3.9) + (xy 2.7 3.3) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)) + (fp_poly (pts + (xy -2.7 -6.9) + (xy -2.7 -6.3) + (xy -2.1 -6.3) + (xy -2.1 -6.9) + ) (layer "F.SilkS") (width 0) (fill solid) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)) + (fp_poly (pts + (xy -1.5 -0.9) + (xy -1.5 -0.3) + (xy -0.9 -0.3) + (xy -0.9 -0.9) ) (layer "F.SilkS") (width 0) (fill solid) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a)) ) diff --git a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_prl b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_prl index a1584a37..b181e176 100644 --- a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_prl +++ b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_prl @@ -1,7 +1,7 @@ { "board": { "active_layer": 0, - "active_layer_preset": "", + "active_layer_preset": "All Layers", "auto_track_width": true, "hidden_nets": [], "high_contrast_mode": 0, @@ -62,7 +62,7 @@ 35, 36 ], - "visible_layers": "003ffff_80000001", + "visible_layers": "fffffff_ffffffff", "zone_display_mode": 0 }, "meta": { diff --git a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pro b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pro index 3c4d61a3..2a5dac26 100644 --- a/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pro +++ b/tests/board_samples/kicad_6/qr_test/qr_test.kicad_pro @@ -2,7 +2,7 @@ "board": { "design_settings": { "defaults": { - "board_outline_line_width": 0.09999999999999999, + "board_outline_line_width": 0.049999999999999996, "copper_line_width": 0.19999999999999998, "copper_text_italic": false, "copper_text_size_h": 1.5, @@ -37,7 +37,7 @@ "height": 1.524, "width": 1.524 }, - "silk_line_width": 0.15, + "silk_line_width": 0.12, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, @@ -51,7 +51,6 @@ "diff_pair_dimensions": [], "drc_exclusions": [], "meta": { - "filename": "board_design_settings.json", "version": 2 }, "rule_severities": { @@ -99,7 +98,7 @@ "allow_microvias": false, "max_error": 0.005, "min_clearance": 0.0, - "min_copper_edge_clearance": 0.0, + "min_copper_edge_clearance": 0.01, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.19999999999999998, @@ -122,211 +121,6 @@ "cvpcb": { "equivalence_files": [] }, - "erc": { - "erc_exclusions": [], - "meta": { - "version": 0 - }, - "pin_map": [ - [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 2 - ], - [ - 0, - 2, - 0, - 1, - 0, - 0, - 1, - 0, - 2, - 2, - 2, - 2 - ], - [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 1, - 0, - 1, - 2 - ], - [ - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 1, - 2, - 1, - 1, - 2 - ], - [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 2 - ], - [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2 - ], - [ - 1, - 1, - 1, - 1, - 1, - 0, - 1, - 1, - 1, - 1, - 1, - 2 - ], - [ - 0, - 0, - 0, - 1, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 2 - ], - [ - 0, - 2, - 1, - 2, - 0, - 0, - 1, - 0, - 2, - 2, - 2, - 2 - ], - [ - 0, - 2, - 0, - 1, - 0, - 0, - 1, - 0, - 2, - 0, - 0, - 2 - ], - [ - 0, - 2, - 1, - 1, - 0, - 0, - 1, - 0, - 2, - 0, - 0, - 2 - ], - [ - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2, - 2 - ] - ], - "rule_severities": { - "bus_definition_conflict": "error", - "bus_entry_needed": "error", - "bus_label_syntax": "error", - "bus_to_bus_conflict": "error", - "bus_to_net_conflict": "error", - "different_unit_footprint": "error", - "different_unit_net": "error", - "duplicate_reference": "error", - "duplicate_sheet_names": "error", - "extra_units": "error", - "global_label_dangling": "warning", - "hier_label_mismatch": "error", - "label_dangling": "error", - "lib_symbol_issues": "warning", - "multiple_net_names": "warning", - "net_not_bus_member": "warning", - "no_connect_connected": "warning", - "no_connect_dangling": "warning", - "pin_not_connected": "error", - "pin_not_driven": "error", - "pin_to_pin": "warning", - "power_pin_not_driven": "error", - "similar_labels": "warning", - "unannotated": "error", - "unit_value_mismatch": "error", - "unresolved_variable": "error", - "wire_dangling": "error" - } - }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] @@ -372,43 +166,9 @@ "page_layout_descr_file": "" }, "schematic": { - "annotate_start_num": 0, - "drawing": { - "default_line_thickness": 6.0, - "default_text_size": 50.0, - "field_names": [], - "intersheets_ref_own_page": false, - "intersheets_ref_prefix": "", - "intersheets_ref_short": false, - "intersheets_ref_show": false, - "intersheets_ref_suffix": "", - "junction_size_choice": 3, - "label_size_ratio": 0.25, - "pin_symbol_size": 25.0, - "text_offset_ratio": 0.08 - }, "legacy_lib_dir": "", - "legacy_lib_list": [], - "meta": { - "version": 1 - }, - "net_format_name": "", - "page_layout_descr_file": "", - "plot_directory": "", - "spice_adjust_passive_values": false, - "spice_external_command": "spice \"%I\"", - "subpart_first_id": 65, - "subpart_id_separator": 0 + "legacy_lib_list": [] }, - "sheets": [ - [ - "8efee08b-b92e-4ba6-8722-c058e18114fe", - "" - ], - [ - "00000000-0000-0000-0000-000061d2163a", - "Subsheet" - ] - ], + "sheets": [], "text_variables": {} } 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 20c33c15..0b0ebcc2 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,133 +1,24 @@ -(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 -11.5) (end -11.49 -12.71) - (stroke (width 0.001) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -12.7 -10.29) (end -11.49 -11.5) - (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 -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 -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 -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 -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 -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)) - ) - (rectangle (start -11.49 -11.5) (end -10.28 -12.71) - (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) + (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)) ) @@ -135,579 +26,31 @@ (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 -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 -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)) - ) - (rectangle (start 1.82 -11.5) (end 3.03 -12.71) - (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) + (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)) ) @@ -715,354 +58,910 @@ (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 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)) ) + (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) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -12.7 -10.29) (end -11.49 -11.5) + (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) + (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) + (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 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 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 -12.7 -11.5) (end -11.49 -12.71) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -11.49 -11.5) (end -10.28 -12.71) + (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 -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 -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 -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 -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) + (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) + (stroke (width 0.001) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.82 -11.5) (end 3.03 -12.71) + (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 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 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) + (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.0000)) + (fill (color 0 0 0 0.0)) (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 ccf9b5aa..a2aad37f 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,1365 +1,2825 @@ -(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 -6.9) (end -6.9 -7.5) + (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) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -6.3) (end -6.9 -6.9) + (rectangle (start -7.09 7.5) (end -6.68 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -5.7) (end -6.9 -6.3) + (rectangle (start -6.68 7.5) (end -6.27 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -5.1) (end -6.9 -5.7) + (rectangle (start -6.27 7.5) (end -5.86 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -4.5) (end -6.9 -5.1) + (rectangle (start -5.86 7.5) (end -5.45 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -3.9) (end -6.9 -4.5) + (rectangle (start -5.45 7.5) (end -5.04 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -3.3) (end -6.9 -3.9) + (rectangle (start -5.04 7.5) (end -4.63 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -2.1) (end -6.9 -2.7) + (rectangle (start -4.22 7.5) (end -3.81 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -1.5) (end -6.9 -2.1) + (rectangle (start -3.81 7.5) (end -3.4 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -0.9) (end -6.9 -1.5) + (rectangle (start -3.4 7.5) (end -2.99 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 -0.3) (end -6.9 -0.9) + (rectangle (start -2.58 7.5) (end -2.17 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 0.9) (end -6.9 0.3) + (rectangle (start -2.17 7.5) (end -1.76 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 2.1) (end -6.9 1.5) + (rectangle (start -1.76 7.5) (end -1.35 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 3.9) (end -6.9 3.3) + (rectangle (start -1.35 7.5) (end -0.94 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 4.5) (end -6.9 3.9) + (rectangle (start -0.53 7.5) (end -0.12 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 5.1) (end -6.9 4.5) + (rectangle (start 1.11 7.5) (end 1.52 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 5.7) (end -6.9 5.1) + (rectangle (start 1.93 7.5) (end 2.34 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 6.3) (end -6.9 5.7) + (rectangle (start 3.16 7.5) (end 3.57 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 6.9) (end -6.9 6.3) + (rectangle (start 3.98 7.5) (end 4.39 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -7.5 7.5) (end -6.9 6.9) + (rectangle (start 4.8 7.5) (end 5.21 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 -6.9) (end -6.3 -7.5) + (rectangle (start 5.21 7.5) (end 5.62 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 -3.3) (end -6.3 -3.9) + (rectangle (start 5.62 7.5) (end 6.03 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 0.3) (end -6.3 -0.3) + (rectangle (start 6.03 7.5) (end 6.44 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 0.9) (end -6.3 0.3) + (rectangle (start 6.44 7.5) (end 6.85 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 3.9) (end -6.3 3.3) + (rectangle (start 6.85 7.5) (end 7.26 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.9 7.5) (end -6.3 6.9) + (rectangle (start 7.26 7.5) (end 7.67 7.09) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -6.9) (end -5.7 -7.5) + (rectangle (start -7.5 7.09) (end -7.09 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -5.7) (end -5.7 -6.3) + (rectangle (start -5.04 7.09) (end -4.63 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -5.1) (end -5.7 -5.7) + (rectangle (start -3.4 7.09) (end -2.99 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -4.5) (end -5.7 -5.1) + (rectangle (start -2.17 7.09) (end -1.76 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -3.3) (end -5.7 -3.9) + (rectangle (start -1.76 7.09) (end -1.35 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -2.1) (end -5.7 -2.7) + (rectangle (start -0.94 7.09) (end -0.53 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -1.5) (end -5.7 -2.1) + (rectangle (start 1.52 7.09) (end 1.93 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 -0.9) (end -5.7 -1.5) + (rectangle (start 2.75 7.09) (end 3.16 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 0.3) (end -5.7 -0.3) + (rectangle (start 3.16 7.09) (end 3.57 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 2.1) (end -5.7 1.5) + (rectangle (start 3.98 7.09) (end 4.39 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 2.7) (end -5.7 2.1) + (rectangle (start 4.8 7.09) (end 5.21 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 3.9) (end -5.7 3.3) + (rectangle (start 7.26 7.09) (end 7.67 6.68) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 5.1) (end -5.7 4.5) + (rectangle (start -7.5 6.68) (end -7.09 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 5.7) (end -5.7 5.1) + (rectangle (start -6.68 6.68) (end -6.27 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 6.3) (end -5.7 5.7) + (rectangle (start -6.27 6.68) (end -5.86 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -6.3 7.5) (end -5.7 6.9) + (rectangle (start -5.86 6.68) (end -5.45 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -6.9) (end -5.1 -7.5) + (rectangle (start -5.04 6.68) (end -4.63 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -5.7) (end -5.1 -6.3) + (rectangle (start -4.22 6.68) (end -3.81 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -5.1) (end -5.1 -5.7) + (rectangle (start -3.81 6.68) (end -3.4 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -4.5) (end -5.1 -5.1) + (rectangle (start -3.4 6.68) (end -2.99 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -3.3) (end -5.1 -3.9) + (rectangle (start -2.99 6.68) (end -2.58 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -2.1) (end -5.1 -2.7) + (rectangle (start -2.58 6.68) (end -2.17 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 -0.9) (end -5.1 -1.5) + (rectangle (start -1.35 6.68) (end -0.94 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 0.9) (end -5.1 0.3) + (rectangle (start -0.94 6.68) (end -0.53 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 2.7) (end -5.1 2.1) + (rectangle (start -0.53 6.68) (end -0.12 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 3.9) (end -5.1 3.3) + (rectangle (start 0.29 6.68) (end 0.7 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 5.1) (end -5.1 4.5) + (rectangle (start 1.52 6.68) (end 1.93 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 5.7) (end -5.1 5.1) + (rectangle (start 2.34 6.68) (end 2.75 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 6.3) (end -5.1 5.7) + (rectangle (start 3.16 6.68) (end 3.57 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.7 7.5) (end -5.1 6.9) + (rectangle (start 3.57 6.68) (end 3.98 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -6.9) (end -4.5 -7.5) + (rectangle (start 3.98 6.68) (end 4.39 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -5.7) (end -4.5 -6.3) + (rectangle (start 4.8 6.68) (end 5.21 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -5.1) (end -4.5 -5.7) + (rectangle (start 5.62 6.68) (end 6.03 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -4.5) (end -4.5 -5.1) + (rectangle (start 6.03 6.68) (end 6.44 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -3.3) (end -4.5 -3.9) + (rectangle (start 6.44 6.68) (end 6.85 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -1.5) (end -4.5 -2.1) + (rectangle (start 7.26 6.68) (end 7.67 6.27) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 -0.3) (end -4.5 -0.9) + (rectangle (start -7.5 6.27) (end -7.09 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 0.3) (end -4.5 -0.3) + (rectangle (start -6.68 6.27) (end -6.27 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 2.1) (end -4.5 1.5) + (rectangle (start -6.27 6.27) (end -5.86 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 2.7) (end -4.5 2.1) + (rectangle (start -5.86 6.27) (end -5.45 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 3.9) (end -4.5 3.3) + (rectangle (start -5.04 6.27) (end -4.63 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 5.1) (end -4.5 4.5) + (rectangle (start -3.81 6.27) (end -3.4 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 5.7) (end -4.5 5.1) + (rectangle (start -2.99 6.27) (end -2.58 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 6.3) (end -4.5 5.7) + (rectangle (start -2.58 6.27) (end -2.17 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -5.1 7.5) (end -4.5 6.9) + (rectangle (start -2.17 6.27) (end -1.76 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 -6.9) (end -3.9 -7.5) + (rectangle (start -1.35 6.27) (end -0.94 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 -3.3) (end -3.9 -3.9) + (rectangle (start -0.12 6.27) (end 0.29 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 -1.5) (end -3.9 -2.1) + (rectangle (start 0.7 6.27) (end 1.11 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 0.9) (end -3.9 0.3) + (rectangle (start 1.11 6.27) (end 1.52 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 2.1) (end -3.9 1.5) + (rectangle (start 2.34 6.27) (end 2.75 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 3.9) (end -3.9 3.3) + (rectangle (start 3.57 6.27) (end 3.98 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -4.5 7.5) (end -3.9 6.9) + (rectangle (start 3.98 6.27) (end 4.39 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -6.9) (end -3.3 -7.5) + (rectangle (start 4.8 6.27) (end 5.21 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -6.3) (end -3.3 -6.9) + (rectangle (start 5.62 6.27) (end 6.03 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -5.7) (end -3.3 -6.3) + (rectangle (start 6.03 6.27) (end 6.44 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -5.1) (end -3.3 -5.7) + (rectangle (start 6.44 6.27) (end 6.85 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -4.5) (end -3.3 -5.1) + (rectangle (start 7.26 6.27) (end 7.67 5.86) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -3.9) (end -3.3 -4.5) + (rectangle (start -7.5 5.86) (end -7.09 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -3.3) (end -3.3 -3.9) + (rectangle (start -6.68 5.86) (end -6.27 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -2.1) (end -3.3 -2.7) + (rectangle (start -6.27 5.86) (end -5.86 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 -0.9) (end -3.3 -1.5) + (rectangle (start -5.86 5.86) (end -5.45 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 0.3) (end -3.3 -0.3) + (rectangle (start -5.04 5.86) (end -4.63 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 1.5) (end -3.3 0.9) + (rectangle (start -4.22 5.86) (end -3.81 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 2.7) (end -3.3 2.1) + (rectangle (start -3.81 5.86) (end -3.4 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 3.9) (end -3.3 3.3) + (rectangle (start -2.99 5.86) (end -2.58 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 4.5) (end -3.3 3.9) + (rectangle (start -1.35 5.86) (end -0.94 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 5.1) (end -3.3 4.5) + (rectangle (start -0.94 5.86) (end -0.53 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 5.7) (end -3.3 5.1) + (rectangle (start -0.53 5.86) (end -0.12 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 6.3) (end -3.3 5.7) + (rectangle (start 0.29 5.86) (end 0.7 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 6.9) (end -3.3 6.3) + (rectangle (start 1.11 5.86) (end 1.52 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.9 7.5) (end -3.3 6.9) + (rectangle (start 1.93 5.86) (end 2.34 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.3 -2.1) (end -2.7 -2.7) + (rectangle (start 4.8 5.86) (end 5.21 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.3 -1.5) (end -2.7 -2.1) + (rectangle (start 5.62 5.86) (end 6.03 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.3 -0.9) (end -2.7 -1.5) + (rectangle (start 6.03 5.86) (end 6.44 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.3 1.5) (end -2.7 0.9) + (rectangle (start 6.44 5.86) (end 6.85 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -3.3 2.1) (end -2.7 1.5) + (rectangle (start 7.26 5.86) (end 7.67 5.45) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 -5.7) (end -2.1 -6.3) + (rectangle (start -7.5 5.45) (end -7.09 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 -5.1) (end -2.1 -5.7) + (rectangle (start -5.04 5.45) (end -4.63 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 -4.5) (end -2.1 -5.1) + (rectangle (start -2.58 5.45) (end -2.17 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 -2.7) (end -2.1 -3.3) + (rectangle (start -2.17 5.45) (end -1.76 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 -0.9) (end -2.1 -1.5) + (rectangle (start -1.76 5.45) (end -1.35 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 0.3) (end -2.1 -0.3) + (rectangle (start -1.35 5.45) (end -0.94 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 1.5) (end -2.1 0.9) + (rectangle (start -0.12 5.45) (end 0.29 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 2.1) (end -2.1 1.5) + (rectangle (start 1.11 5.45) (end 1.52 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 2.7) (end -2.1 2.1) + (rectangle (start 1.52 5.45) (end 1.93 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 3.3) (end -2.1 2.7) + (rectangle (start 1.93 5.45) (end 2.34 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 3.9) (end -2.1 3.3) + (rectangle (start 2.34 5.45) (end 2.75 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 4.5) (end -2.1 3.9) + (rectangle (start 3.98 5.45) (end 4.39 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 6.3) (end -2.1 5.7) + (rectangle (start 4.8 5.45) (end 5.21 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 6.9) (end -2.1 6.3) + (rectangle (start 7.26 5.45) (end 7.67 5.04) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.7 7.5) (end -2.1 6.9) + (rectangle (start -7.5 5.04) (end -7.09 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 -6.9) (end -1.5 -7.5) + (rectangle (start -7.09 5.04) (end -6.68 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 -6.3) (end -1.5 -6.9) + (rectangle (start -6.68 5.04) (end -6.27 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 -5.7) (end -1.5 -6.3) + (rectangle (start -6.27 5.04) (end -5.86 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 -5.1) (end -1.5 -5.7) + (rectangle (start -5.86 5.04) (end -5.45 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 -0.9) (end -1.5 -1.5) + (rectangle (start -5.45 5.04) (end -5.04 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 0.3) (end -1.5 -0.3) + (rectangle (start -5.04 5.04) (end -4.63 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 0.9) (end -1.5 0.3) + (rectangle (start -4.22 5.04) (end -3.81 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 2.1) (end -1.5 1.5) + (rectangle (start -3.4 5.04) (end -2.99 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 2.7) (end -1.5 2.1) + (rectangle (start -2.58 5.04) (end -2.17 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 4.5) (end -1.5 3.9) + (rectangle (start -1.76 5.04) (end -1.35 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 5.7) (end -1.5 5.1) + (rectangle (start -0.94 5.04) (end -0.53 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -2.1 6.9) (end -1.5 6.3) + (rectangle (start -0.12 5.04) (end 0.29 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -6.9) (end -0.9 -7.5) + (rectangle (start 0.7 5.04) (end 1.11 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -5.7) (end -0.9 -6.3) + (rectangle (start 1.52 5.04) (end 1.93 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -4.5) (end -0.9 -5.1) + (rectangle (start 2.34 5.04) (end 2.75 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -3.9) (end -0.9 -4.5) + (rectangle (start 3.16 5.04) (end 3.57 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -3.3) (end -0.9 -3.9) + (rectangle (start 3.98 5.04) (end 4.39 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -1.5) (end -0.9 -2.1) + (rectangle (start 4.8 5.04) (end 5.21 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -0.9) (end -0.9 -1.5) + (rectangle (start 5.21 5.04) (end 5.62 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 -0.3) (end -0.9 -0.9) + (rectangle (start 5.62 5.04) (end 6.03 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 0.9) (end -0.9 0.3) + (rectangle (start 6.03 5.04) (end 6.44 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 1.5) (end -0.9 0.9) + (rectangle (start 6.44 5.04) (end 6.85 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 2.1) (end -0.9 1.5) + (rectangle (start 6.85 5.04) (end 7.26 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 3.9) (end -0.9 3.3) + (rectangle (start 7.26 5.04) (end 7.67 4.63) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 4.5) (end -0.9 3.9) + (rectangle (start -4.22 4.63) (end -3.81 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 5.1) (end -0.9 4.5) + (rectangle (start -3.81 4.63) (end -3.4 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -1.5 7.5) (end -0.9 6.9) + (rectangle (start -3.4 4.63) (end -2.99 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -6.3) (end -0.3 -6.9) + (rectangle (start -2.99 4.63) (end -2.58 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -5.1) (end -0.3 -5.7) + (rectangle (start -2.58 4.63) (end -2.17 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -4.5) (end -0.3 -5.1) + (rectangle (start -1.35 4.63) (end -0.94 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -3.9) (end -0.3 -4.5) + (rectangle (start 0.29 4.63) (end 0.7 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -3.3) (end -0.3 -3.9) + (rectangle (start 0.7 4.63) (end 1.11 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -2.7) (end -0.3 -3.3) + (rectangle (start 1.11 4.63) (end 1.52 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 -1.5) (end -0.3 -2.1) + (rectangle (start 1.52 4.63) (end 1.93 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 0.3) (end -0.3 -0.3) + (rectangle (start 1.93 4.63) (end 2.34 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 1.5) (end -0.3 0.9) + (rectangle (start 2.34 4.63) (end 2.75 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 2.1) (end -0.3 1.5) + (rectangle (start 3.16 4.63) (end 3.57 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 5.1) (end -0.3 4.5) + (rectangle (start 3.57 4.63) (end 3.98 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 5.7) (end -0.3 5.1) + (rectangle (start 3.98 4.63) (end 4.39 4.22) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.9 7.5) (end -0.3 6.9) + (rectangle (start -5.45 4.22) (end -5.04 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 -6.9) (end 0.3 -7.5) + (rectangle (start -5.04 4.22) (end -4.63 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 -5.1) (end 0.3 -5.7) + (rectangle (start -2.17 4.22) (end -1.76 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 -4.5) (end 0.3 -5.1) + (rectangle (start -1.35 4.22) (end -0.94 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 -3.9) (end 0.3 -4.5) + (rectangle (start -0.94 4.22) (end -0.53 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 -0.9) (end 0.3 -1.5) + (rectangle (start -0.53 4.22) (end -0.12 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 0.3) (end 0.3 -0.3) + (rectangle (start -0.12 4.22) (end 0.29 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 0.9) (end 0.3 0.3) + (rectangle (start 0.7 4.22) (end 1.11 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 3.3) (end 0.3 2.7) + (rectangle (start 2.34 4.22) (end 2.75 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 3.9) (end 0.3 3.3) + (rectangle (start 4.8 4.22) (end 5.21 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 5.1) (end 0.3 4.5) + (rectangle (start 5.62 4.22) (end 6.03 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 5.7) (end 0.3 5.1) + (rectangle (start 6.44 4.22) (end 6.85 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start -0.3 7.5) (end 0.3 6.9) + (rectangle (start 7.26 4.22) (end 7.67 3.81) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -6.9) (end 0.9 -7.5) + (rectangle (start -7.5 3.81) (end -7.09 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -6.3) (end 0.9 -6.9) + (rectangle (start -7.09 3.81) (end -6.68 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -5.7) (end 0.9 -6.3) + (rectangle (start -6.68 3.81) (end -6.27 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -3.3) (end 0.9 -3.9) + (rectangle (start -6.27 3.81) (end -5.86 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -2.1) (end 0.9 -2.7) + (rectangle (start -5.86 3.81) (end -5.45 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -1.5) (end 0.9 -2.1) + (rectangle (start -5.45 3.81) (end -5.04 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -0.9) (end 0.9 -1.5) + (rectangle (start -3.81 3.81) (end -3.4 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 -0.3) (end 0.9 -0.9) + (rectangle (start -2.17 3.81) (end -1.76 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 0.9) (end 0.9 0.3) + (rectangle (start -1.35 3.81) (end -0.94 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 1.5) (end 0.9 0.9) + (rectangle (start -0.94 3.81) (end -0.53 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 2.1) (end 0.9 1.5) + (rectangle (start 0.7 3.81) (end 1.11 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 2.7) (end 0.9 2.1) + (rectangle (start 1.52 3.81) (end 1.93 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 3.3) (end 0.9 2.7) + (rectangle (start 1.93 3.81) (end 2.34 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 4.5) (end 0.9 3.9) + (rectangle (start 2.34 3.81) (end 2.75 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 5.1) (end 0.9 4.5) + (rectangle (start 2.75 3.81) (end 3.16 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 6.9) (end 0.9 6.3) + (rectangle (start 4.39 3.81) (end 4.8 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.3 7.5) (end 0.9 6.9) + (rectangle (start 4.8 3.81) (end 5.21 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -6.9) (end 1.5 -7.5) + (rectangle (start 5.62 3.81) (end 6.03 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -6.3) (end 1.5 -6.9) + (rectangle (start 6.03 3.81) (end 6.44 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -5.7) (end 1.5 -6.3) + (rectangle (start 6.44 3.81) (end 6.85 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -2.7) (end 1.5 -3.3) + (rectangle (start 7.26 3.81) (end 7.67 3.4) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -2.1) (end 1.5 -2.7) + (rectangle (start -7.5 3.4) (end -7.09 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 -0.3) (end 1.5 -0.9) + (rectangle (start -7.09 3.4) (end -6.68 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 0.3) (end 1.5 -0.3) + (rectangle (start -6.27 3.4) (end -5.86 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 1.5) (end 1.5 0.9) + (rectangle (start -5.04 3.4) (end -4.63 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 2.1) (end 1.5 1.5) + (rectangle (start -4.22 3.4) (end -3.81 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 3.3) (end 1.5 2.7) + (rectangle (start -3.81 3.4) (end -3.4 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 3.9) (end 1.5 3.3) + (rectangle (start -2.99 3.4) (end -2.58 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 4.5) (end 1.5 3.9) + (rectangle (start -2.58 3.4) (end -2.17 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 5.1) (end 1.5 4.5) + (rectangle (start -1.76 3.4) (end -1.35 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 6.3) (end 1.5 5.7) + (rectangle (start -0.12 3.4) (end 0.29 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 6.9) (end 1.5 6.3) + (rectangle (start 1.52 3.4) (end 1.93 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 0.9 7.5) (end 1.5 6.9) + (rectangle (start 1.93 3.4) (end 2.34 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -6.9) (end 2.1 -7.5) + (rectangle (start 2.34 3.4) (end 2.75 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -5.1) (end 2.1 -5.7) + (rectangle (start 2.75 3.4) (end 3.16 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -4.5) (end 2.1 -5.1) + (rectangle (start 3.16 3.4) (end 3.57 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -3.9) (end 2.1 -4.5) + (rectangle (start 4.8 3.4) (end 5.21 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -3.3) (end 2.1 -3.9) + (rectangle (start 5.21 3.4) (end 5.62 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -2.7) (end 2.1 -3.3) + (rectangle (start 6.03 3.4) (end 6.44 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 -0.3) (end 2.1 -0.9) + (rectangle (start 6.85 3.4) (end 7.26 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 0.9) (end 2.1 0.3) + (rectangle (start 7.26 3.4) (end 7.67 2.99) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 1.5) (end 2.1 0.9) + (rectangle (start -6.68 2.99) (end -6.27 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 2.7) (end 2.1 2.1) + (rectangle (start -4.22 2.99) (end -3.81 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 3.3) (end 2.1 2.7) + (rectangle (start -3.81 2.99) (end -3.4 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 5.7) (end 2.1 5.1) + (rectangle (start -3.4 2.99) (end -2.99 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 1.5 6.9) (end 2.1 6.3) + (rectangle (start -2.99 2.99) (end -2.58 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -6.3) (end 2.7 -6.9) + (rectangle (start -1.76 2.99) (end -1.35 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -4.5) (end 2.7 -5.1) + (rectangle (start -0.94 2.99) (end -0.53 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -3.9) (end 2.7 -4.5) + (rectangle (start -0.53 2.99) (end -0.12 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -3.3) (end 2.7 -3.9) + (rectangle (start -0.12 2.99) (end 0.29 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -2.7) (end 2.7 -3.3) + (rectangle (start 0.29 2.99) (end 0.7 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -2.1) (end 2.7 -2.7) + (rectangle (start 1.93 2.99) (end 2.34 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -1.5) (end 2.7 -2.1) + (rectangle (start 2.34 2.99) (end 2.75 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 -0.3) (end 2.7 -0.9) + (rectangle (start 3.16 2.99) (end 3.57 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 2.1) (end 2.7 1.5) + (rectangle (start 3.57 2.99) (end 3.98 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 3.3) (end 2.7 2.7) + (rectangle (start 3.98 2.99) (end 4.39 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 3.9) (end 2.7 3.3) + (rectangle (start 4.8 2.99) (end 5.21 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 4.5) (end 2.7 3.9) + (rectangle (start 7.26 2.99) (end 7.67 2.58) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 5.1) (end 2.7 4.5) + (rectangle (start -7.5 2.58) (end -7.09 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 6.3) (end 2.7 5.7) + (rectangle (start -6.68 2.58) (end -6.27 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.1 6.9) (end 2.7 6.3) + (rectangle (start -5.86 2.58) (end -5.45 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.7 -4.5) (end 3.3 -5.1) + (rectangle (start -5.45 2.58) (end -5.04 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.7 -2.1) (end 3.3 -2.7) + (rectangle (start -5.04 2.58) (end -4.63 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.7 -1.5) (end 3.3 -2.1) + (rectangle (start -4.22 2.58) (end -3.81 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.7 -0.3) (end 3.3 -0.9) + (rectangle (start -2.99 2.58) (end -2.58 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 2.7 2.7) (end 3.3 2.1) + (rectangle (start -2.17 2.58) (end -1.76 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -6.9) (end 3.9 -7.5) + (rectangle (start -1.76 2.58) (end -1.35 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -6.3) (end 3.9 -6.9) + (rectangle (start -0.94 2.58) (end -0.53 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -5.1) (end 3.9 -5.7) + (rectangle (start 0.29 2.58) (end 0.7 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -4.5) (end 3.9 -5.1) + (rectangle (start 0.7 2.58) (end 1.11 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -3.3) (end 3.9 -3.9) + (rectangle (start 2.34 2.58) (end 2.75 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -2.1) (end 3.9 -2.7) + (rectangle (start 3.98 2.58) (end 4.39 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 -0.9) (end 3.9 -1.5) + (rectangle (start 4.8 2.58) (end 5.21 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 0.3) (end 3.9 -0.3) + (rectangle (start 5.21 2.58) (end 5.62 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 0.9) (end 3.9 0.3) + (rectangle (start 5.62 2.58) (end 6.03 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 1.5) (end 3.9 0.9) + (rectangle (start 6.03 2.58) (end 6.44 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 2.7) (end 3.9 2.1) + (rectangle (start 7.26 2.58) (end 7.67 2.17) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 3.9) (end 3.9 3.3) + (rectangle (start -7.5 2.17) (end -7.09 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 4.5) (end 3.9 3.9) + (rectangle (start -7.09 2.17) (end -6.68 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 5.1) (end 3.9 4.5) + (rectangle (start -5.45 2.17) (end -5.04 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 5.7) (end 3.9 5.1) + (rectangle (start -4.63 2.17) (end -4.22 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 6.3) (end 3.9 5.7) + (rectangle (start -4.22 2.17) (end -3.81 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 6.9) (end 3.9 6.3) + (rectangle (start -3.4 2.17) (end -2.99 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.3 7.5) (end 3.9 6.9) + (rectangle (start -2.58 2.17) (end -2.17 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 -6.3) (end 4.5 -6.9) + (rectangle (start -1.35 2.17) (end -0.94 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 -4.5) (end 4.5 -5.1) + (rectangle (start 0.29 2.17) (end 0.7 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 -2.1) (end 4.5 -2.7) + (rectangle (start 0.7 2.17) (end 1.11 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 0.3) (end 4.5 -0.3) + (rectangle (start 2.75 2.17) (end 3.16 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 2.7) (end 4.5 2.1) + (rectangle (start 3.57 2.17) (end 3.98 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 3.9) (end 4.5 3.3) + (rectangle (start 4.39 2.17) (end 4.8 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 3.9 7.5) (end 4.5 6.9) + (rectangle (start 5.21 2.17) (end 5.62 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -5.1) (end 5.1 -5.7) + (rectangle (start 6.44 2.17) (end 6.85 1.76) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -4.5) (end 5.1 -5.1) + (rectangle (start -7.5 1.76) (end -7.09 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -3.9) (end 5.1 -4.5) + (rectangle (start -7.09 1.76) (end -6.68 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -3.3) (end 5.1 -3.9) + (rectangle (start -6.68 1.76) (end -6.27 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -2.7) (end 5.1 -3.3) + (rectangle (start -5.86 1.76) (end -5.45 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 -2.1) (end 5.1 -2.7) + (rectangle (start -5.45 1.76) (end -5.04 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 0.3) (end 5.1 -0.3) + (rectangle (start -5.04 1.76) (end -4.63 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 1.5) (end 5.1 0.9) + (rectangle (start -4.63 1.76) (end -4.22 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 3.9) (end 5.1 3.3) + (rectangle (start -3.81 1.76) (end -3.4 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 5.1) (end 5.1 4.5) + (rectangle (start -2.99 1.76) (end -2.58 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 5.7) (end 5.1 5.1) + (rectangle (start -2.58 1.76) (end -2.17 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 6.3) (end 5.1 5.7) + (rectangle (start -0.94 1.76) (end -0.53 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 4.5 7.5) (end 5.1 6.9) + (rectangle (start -0.12 1.76) (end 0.29 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -6.3) (end 5.7 -6.9) + (rectangle (start 0.7 1.76) (end 1.11 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -5.7) (end 5.7 -6.3) + (rectangle (start 1.11 1.76) (end 1.52 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -5.1) (end 5.7 -5.7) + (rectangle (start 1.52 1.76) (end 1.93 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -4.5) (end 5.7 -5.1) + (rectangle (start 2.75 1.76) (end 3.16 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -3.9) (end 5.7 -4.5) + (rectangle (start 3.16 1.76) (end 3.57 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 -2.7) (end 5.7 -3.3) + (rectangle (start 3.57 1.76) (end 3.98 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 3.9) (end 5.7 3.3) + (rectangle (start 4.39 1.76) (end 4.8 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 5.1) (end 5.7 4.5) + (rectangle (start 5.21 1.76) (end 5.62 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 5.7) (end 5.7 5.1) + (rectangle (start 5.62 1.76) (end 6.03 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 6.3) (end 5.7 5.7) + (rectangle (start 6.03 1.76) (end 6.44 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.1 7.5) (end 5.7 6.9) + (rectangle (start 6.85 1.76) (end 7.26 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 -6.9) (end 6.3 -7.5) + (rectangle (start 7.26 1.76) (end 7.67 1.35) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 -4.5) (end 6.3 -5.1) + (rectangle (start -7.5 1.35) (end -7.09 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 -3.3) (end 6.3 -3.9) + (rectangle (start -5.86 1.35) (end -5.45 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 -2.1) (end 6.3 -2.7) + (rectangle (start -3.4 1.35) (end -2.99 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 0.3) (end 6.3 -0.3) + (rectangle (start -2.58 1.35) (end -2.17 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 1.5) (end 6.3 0.9) + (rectangle (start -2.17 1.35) (end -1.76 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 2.7) (end 6.3 2.1) + (rectangle (start -1.35 1.35) (end -0.94 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 3.9) (end 6.3 3.3) + (rectangle (start -0.53 1.35) (end -0.12 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 5.1) (end 6.3 4.5) + (rectangle (start 0.7 1.35) (end 1.11 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 5.7) (end 6.3 5.1) + (rectangle (start 1.52 1.35) (end 1.93 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 6.3) (end 6.3 5.7) + (rectangle (start 1.93 1.35) (end 2.34 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 5.7 7.5) (end 6.3 6.9) + (rectangle (start 3.57 1.35) (end 3.98 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 -6.9) (end 6.9 -7.5) + (rectangle (start 3.98 1.35) (end 4.39 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 -4.5) (end 6.9 -5.1) + (rectangle (start 5.62 1.35) (end 6.03 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 -3.9) (end 6.9 -4.5) + (rectangle (start 6.03 1.35) (end 6.44 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 -3.3) (end 6.9 -3.9) + (rectangle (start 6.44 1.35) (end 6.85 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 -0.9) (end 6.9 -1.5) + (rectangle (start 7.26 1.35) (end 7.67 0.94) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 0.3) (end 6.9 -0.3) + (rectangle (start -7.5 0.94) (end -7.09 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 0.9) (end 6.9 0.3) + (rectangle (start -6.27 0.94) (end -5.86 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 1.5) (end 6.9 0.9) + (rectangle (start -5.04 0.94) (end -4.63 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 2.7) (end 6.9 2.1) + (rectangle (start -4.63 0.94) (end -4.22 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 3.9) (end 6.9 3.3) + (rectangle (start -2.99 0.94) (end -2.58 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.3 7.5) (end 6.9 6.9) + (rectangle (start -2.58 0.94) (end -2.17 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -6.9) (end 7.5 -7.5) + (rectangle (start -1.76 0.94) (end -1.35 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -6.3) (end 7.5 -6.9) + (rectangle (start -0.12 0.94) (end 0.29 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -5.7) (end 7.5 -6.3) + (rectangle (start 0.7 0.94) (end 1.11 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -5.1) (end 7.5 -5.7) + (rectangle (start 1.52 0.94) (end 1.93 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -3.9) (end 7.5 -4.5) + (rectangle (start 1.93 0.94) (end 2.34 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -3.3) (end 7.5 -3.9) + (rectangle (start 2.34 0.94) (end 2.75 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -2.1) (end 7.5 -2.7) + (rectangle (start 3.16 0.94) (end 3.57 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 -0.9) (end 7.5 -1.5) + (rectangle (start 3.57 0.94) (end 3.98 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 1.5) (end 7.5 0.9) + (rectangle (start 4.39 0.94) (end 4.8 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 2.7) (end 7.5 2.1) + (rectangle (start 4.8 0.94) (end 5.21 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 3.9) (end 7.5 3.3) + (rectangle (start 5.62 0.94) (end 6.03 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 4.5) (end 7.5 3.9) + (rectangle (start 6.44 0.94) (end 6.85 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 5.1) (end 7.5 4.5) + (rectangle (start 6.85 0.94) (end 7.26 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 5.7) (end 7.5 5.1) + (rectangle (start 7.26 0.94) (end 7.67 0.53) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 6.3) (end 7.5 5.7) + (rectangle (start -7.09 0.53) (end -6.68 0.12) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 6.9) (end 7.5 6.3) + (rectangle (start -5.45 0.53) (end -5.04 0.12) (stroke (width 0.001) (type default) (color 0 0 0 0)) (fill (type outline)) ) - (rectangle (start 6.9 7.5) (end 7.5 6.9) + (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) (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 ec6a3cc0..6abe175b 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -980,5 +980,12 @@ def test_qr_lib_1(test_dir): bogus = os.path.join(bd, 'qr_test/'+f+'.bogus') if os.path.isfile(bogus): shutil.copy2(bogus, os.path.join(bd, 'qr_test/'+f)) - os.remove(os.path.join(bd, 'qr_test/qr_test.kicad_pcb-bak')) - os.remove(os.path.join(bd, 'qr_test/qr_test.pro-bak')) + if context.ki5(): + os.remove(os.path.join(bd, 'qr_test/qr_test.pro-bak')) + else: + os.remove(os.path.join(bd, 'qr_test/qr_test.kicad_sch-bak')) + os.remove(os.path.join(bd, 'qr_test/sub_1.kicad_sch-bak')) + bkp = os.path.join(bd, 'qr_test/qr_test.kicad_pcb-bak') + if os.path.isfile(bkp): + # Not always there, pcbnew_do can remove it + os.remove(bkp)