text
stringlengths
10
968k
id
stringlengths
14
122
metadata
dict
__index_level_0__
int64
0
242
```{include} ../CHANGELOG.md ```
gf180/docs/changelog.md/0
{ "file_path": "gf180/docs/changelog.md", "repo_id": "gf180", "token_count": 17 }
72
# Copyright 2022 GlobalFoundries PDK Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ######################################################################################################################## # EFuse Generator for GF180MCU ######################################################################################################################## import pya from .draw_efuse import draw_efuse class efuse(pya.PCellDeclarationHelper): """ eFuse Generator for GF180MCU """ def __init__(self): # Important: initialize the super class super().__init__() self.param( "Model", self.TypeString, "Model", default="gf180mcu_fd_pr__efuse", readonly=True, ) self.param("array_x", self.TypeInt, "Elements in x_direction", default=1) self.param("array_y", self.TypeInt, "Elements in y_direction", default=1) self.param( "x_spacing", self.TypeDouble, "Spacing in x_direction", default=1, unit="um" ) self.param( "y_spacing", self.TypeDouble, "Spacing in y_direction", default=1, unit="um" ) def display_text_impl(self): # Provide a descriptive text for the cell return "efuse" def coerce_parameters_impl(self): # We employ coerce_parameters_impl to decide whether the handle or the # numeric parameter has changed (by comparing against the effective # radius ru) and set ru to the effective radius. We also update the # numerical value or the shape, depending on which on has not changed. pass def can_create_from_shape_impl(self): # Implement the "Create PCell from shape" protocol: we can use any shape which # has a finite bounding box # return self.shape.is_box() or self.shape.is_polygon() or self.shape.is_path() pass def parameters_from_shape_impl(self): # Implement the "Create PCell from shape" protocol: we set r and l from the shape's # bounding box width and layer # self.r = self.shape.bbox().width() * self.layout.dbu / 2 # self.l = self.layout.get_info(self.layer) pass def transformation_from_shape_impl(self): # Implement the "Create PCell from shape" protocol: we use the center of the shape's # bounding box to determine the transformation # return pya.Trans(self.shape.bbox().center()) pass def produce_impl(self): # This is the main part of the implementation: create the layout self.precision = 1 / self.layout.dbu efuse_instance = draw_efuse(layout=self.layout) write_cells = pya.CellInstArray( efuse_instance.cell_index(), pya.Trans(pya.Point(0, 0)), pya.Vector(self.x_spacing * self.precision, 0), pya.Vector(0, self.y_spacing * self.precision), self.array_x, self.array_y, ) self.cell.flatten(1) self.cell.insert(write_cells) self.layout.cleanup()
gf180/gf180/cells/klayout/pymacros/cells/efuse.py/0
{ "file_path": "gf180/gf180/cells/klayout/pymacros/cells/efuse.py", "repo_id": "gf180", "token_count": 1350 }
73
import gdsfactory as gf from gdsfactory.typings import Layer from pydantic import BaseModel from gf180.config import PATH class LayerMap(BaseModel): comp: Layer = (22, 0) dnwell: Layer = (12, 0) nwell: Layer = (21, 0) lvpwell: Layer = (204, 0) dualgate: Layer = (55, 0) poly2: Layer = (30, 0) nplus: Layer = (32, 0) pplus: Layer = (31, 0) sab: Layer = (49, 0) esd: Layer = (24, 0) contact: Layer = (33, 0) metal1: Layer = (34, 0) via1: Layer = (35, 0) metal2: Layer = (36, 0) via2: Layer = (38, 0) metal3: Layer = (42, 0) via3: Layer = (40, 0) metal4: Layer = (46, 0) via4: Layer = (41, 0) metal5: Layer = (81, 0) via5: Layer = (82, 0) metaltop: Layer = (53, 0) pad: Layer = (37, 0) resistor: Layer = (62, 0) fhres: Layer = (227, 0) fusetop: Layer = (75, 0) fusewindow_d: Layer = (96, 1) polyfuse: Layer = (220, 0) mvsd: Layer = (210, 0) mvpsd: Layer = (11, 39) nat: Layer = (5, 0) comp_dummy: Layer = (22, 4) poly2_dummy: Layer = (30, 4) metal1_dummy: Layer = (34, 4) metal2_dummy: Layer = (36, 4) metal3_dummy: Layer = (42, 4) metal4_dummy: Layer = (46, 4) metal5_dummy: Layer = (81, 4) metaltop_dummy: Layer = (53, 4) comp_label: Layer = (22, 10) poly2_label: Layer = (30, 10) metal1_label: Layer = (34, 10) metal2_label: Layer = (36, 10) metal3_label: Layer = (42, 10) metal4_label: Layer = (46, 10) metal5_label: Layer = (81, 10) metaltop_label: Layer = (53, 10) metal1_slot: Layer = (34, 3) metal2_slot: Layer = (36, 3) metal3_slot: Layer = (42, 3) metal4_slot: Layer = (46, 3) metal5_slot: Layer = (81, 3) metaltop_slot: Layer = (53, 3) ubmpperi: Layer = (183, 0) ubmparray: Layer = (184, 0) ubmeplate: Layer = (185, 0) schottky_diode: Layer = (241, 0) zener: Layer = (178, 0) res_mk: Layer = (110, 5) opc_drc: Layer = (124, 5) ndmy: Layer = (111, 5) pmndmy: Layer = (152, 5) v5_xtor: Layer = (112, 1) cap_mk: Layer = (117, 5) mos_cap_mk: Layer = (166, 5) ind_mk: Layer = (151, 5) diode_mk: Layer = (115, 5) drc_bjt: Layer = (127, 5) lvs_bjt: Layer = (118, 5) mim_l_mk: Layer = (117, 10) latchup_mk: Layer = (137, 5) guard_ring_mk: Layer = (167, 5) otp_mk: Layer = (173, 5) mtpmark: Layer = (122, 5) neo_ee_mk: Layer = (88, 17) sramcore: Layer = (108, 5) lvs_rf: Layer = (100, 5) lvs_drain: Layer = (100, 7) ind_mk1: Layer = (151, 5) hvpolyrs: Layer = (123, 5) lvs_io: Layer = (119, 5) probe_mk: Layer = (13, 17) esd_mk: Layer = (24, 5) lvs_source: Layer = (100, 8) well_diode_mk: Layer = (153, 51) ldmos_xtor: Layer = (226, 0) plfuse: Layer = (125, 5) efuse_mk: Layer = (80, 5) mcell_feol_mk: Layer = (11, 17) ymtp_mk: Layer = (86, 17) dev_wf_mk: Layer = (128, 17) metal1_blk: Layer = (34, 5) metal2_blk: Layer = (36, 5) metal3_blk: Layer = (42, 5) metal4_blk: Layer = (46, 5) metal5_blk: Layer = (81, 5) metalt_blk: Layer = (53, 5) pr_bndry: Layer = (0, 0) mdiode: Layer = (116, 5) metal1_res: Layer = (110, 11) metal2_res: Layer = (110, 12) metal3_res: Layer = (110, 13) metal4_res: Layer = (110, 14) metal5_res: Layer = (110, 15) metal6_res: Layer = (110, 16) border: Layer = (63, 0) LAYER = LayerMap() layer = dict(LAYER) LAYER_VIEWS = gf.technology.LayerViews(PATH.lyp_yaml) if __name__ == "__main__": LAYER_VIEWS.to_lyp(PATH.lyp)
gf180/gf180/layers.py/0
{ "file_path": "gf180/gf180/layers.py", "repo_id": "gf180", "token_count": 1785 }
74
function: interdigit info: {} module: gf180.fet name: interdigit settings: g_label: null gate_con_pos: top label: false nf: 1 patt: - '' patt_label: false pc1: function: array module: gdsfactory.components.array_component settings: component: function: rectangle module: gdsfactory.components.rectangle settings: layer: - 22 - 0 pc2: function: array module: gdsfactory.components.array_component settings: component: function: rectangle module: gdsfactory.components.rectangle settings: layer: - 22 - 0 pc_spacing: 0.1 pc_x: 0.1 poly_con: function: rectangle module: gdsfactory.components.rectangle settings: layer: - 22 - 0 sd_diff: function: rectangle module: gdsfactory.components.rectangle settings: layer: - 22 - 0 sd_l: 0.15
gf180/tests/test_components/test_pdk_settings_interdigit_.yml/0
{ "file_path": "gf180/tests/test_components/test_pdk_settings_interdigit_.yml", "repo_id": "gf180", "token_count": 455 }
75
function: sc_diode info: {} module: gf180.diode name: sc_diode settings: cw: 0.1 la: 0.1 label: false m: 1 n_label: '' p_label: '' pcmpgr: false wa: 0.1
gf180/tests/test_components/test_pdk_settings_sc_diode_.yml/0
{ "file_path": "gf180/tests/test_components/test_pdk_settings_sc_diode_.yml", "repo_id": "gf180", "token_count": 83 }
76
# Table of contents # Learn more at https://jupyterbook.org/customize/toc.html format: jb-book root: index parts: - caption: Design chapters: - file: plugins_optimization sections: - file: notebooks/ray_optimiser - file: notebooks/pso - file: plugins_mesh sections: - file: notebooks/meshing_01_intro - file: notebooks/meshing_02_2D_xy_mesh - file: notebooks/meshing_03_2D_uz_mesh - file: notebooks/meshing_04_refinement - file: notebooks/meshing_05_3D - file: plugins_process sections: - file: notebooks/femwell_02_heater - file: notebooks/devsim_01_pin_waveguide - file: notebooks/tcad_02_analytical_process - file: notebooks/tcad_03_numerical_implantation - file: notebooks/elmer_01_electrostatic - file: notebooks/palace_01_electrostatic - file: notebooks/palace_02_fullwave - file: plugins_mode_solver sections: - file: notebooks/femwell_01_modes - file: notebooks/tidy3d_01_tidy3d_modes - file: notebooks/mpb_001_mpb_waveguide - file: notebooks/meow_01 - file: plugins_fdtd sections: - file: notebooks/tidy3d_00_tidy3d - file: notebooks/fdtdz_01 - file: notebooks/meep_01_sparameters - file: notebooks/meep_02_gratings - file: notebooks/meep_03_fields - file: notebooks/lumerical_1_fdtd_sparameters - file: plugins_circuits sections: - file: notebooks/sax_01_sax - file: notebooks/sax_02_model_extraction - file: notebooks/sax_03_variability_analysis - file: notebooks/lumerical_2_interconnect - file: notebooks/vlsir_netlist - file: notebooks/20_schematic_driven_layout - caption: Verification chapters: - file: notebooks/klayout_dataprep - file: notebooks/klayout_drc - file: notebooks/11_get_netlist - file: notebooks/11_get_netlist_spice - file: notebooks/path_length_analysis - caption: Workflows chapters: - file: workflow sections: - file: notebooks/workflow_1_mzi - file: notebooks/workflow_2_ring - file: notebooks/workflow_3_cascaded_mzi - caption: Reference chapters: - file: api_design - file: api_verification - file: changelog - url: https://gdsfactory.github.io/gdsfactory title: gdsfactory - url: https://github.com/gdsfactory/gdsfactory-photonics-training title: gdsfactory-photonics-training - url: https://piel.readthedocs.io/en/latest/index.html title: electronics-integration
gplugins/docs/_toc.yml/0
{ "file_path": "gplugins/docs/_toc.yml", "repo_id": "gplugins", "token_count": 1264 }
77
from __future__ import annotations import hashlib import pathlib from functools import partial from pathlib import Path import gdsfactory as gf import numpy as np from gdsfactory.config import GDSDIR_TEMP, PATH from gdsfactory.name import clean_value from gdsfactory.typings import ComponentSpec, PathType def get_kwargs_hash(**kwargs) -> str: """Returns kwargs parameters hash.""" kwargs_list = [f"{key}={clean_value(kwargs[key])}" for key in sorted(kwargs.keys())] kwargs_string = "_".join(kwargs_list) return hashlib.md5(kwargs_string.encode()).hexdigest() def get_component_hash(component: gf.Component) -> str: gdspath = pathlib.Path(component.write_gds()) h = hashlib.md5(gdspath.read_bytes()).hexdigest() gdspath.unlink() return h def _get_sparameters_path( component: ComponentSpec, dirpath: PathType | None = PATH.sparameters, **kwargs, ) -> Path: """Return Sparameters npz filepath hashing simulation settings for \ a consistent unique name. Args: component: component or component factory. dirpath: directory to store sparameters in CSV. Defaults to active Pdk.sparameters_path. kwargs: simulation settings. """ dirpath = dirpath or GDSDIR_TEMP / "sparameters" dirpath = pathlib.Path(dirpath) component = gf.get_component(component) dirpath = pathlib.Path(dirpath) dirpath = ( dirpath / component.function_name if hasattr(component, "function_name") else dirpath ) component_hash = get_component_hash(component) kwargs_hash = get_kwargs_hash(**kwargs) simulation_hash = hashlib.md5((component_hash + kwargs_hash).encode()).hexdigest() dirpath.mkdir(exist_ok=True, parents=True) return dirpath / f"{component.name}_{simulation_hash}.npz" def _get_sparameters_data(**kwargs) -> np.ndarray: """Returns Sparameters data in a pandas DataFrame. Keyword Args: component: component. dirpath: directory path to store sparameters. kwargs: simulation settings. """ filepath = _get_sparameters_path(**kwargs) return np.load(filepath) get_sparameters_path_meow = partial(_get_sparameters_path, tool="meow") get_sparameters_path_meep = partial(_get_sparameters_path, tool="meep") get_sparameters_path_lumerical = partial(_get_sparameters_path, tool="lumerical") get_sparameters_path_tidy3d = partial(_get_sparameters_path, tool="tidy3d") get_sparameters_data_meep = partial(_get_sparameters_data, tool="meep") get_sparameters_data_lumerical = partial(_get_sparameters_data, tool="lumerical") get_sparameters_data_tidy3d = partial(_get_sparameters_data, tool="tidy3d") if __name__ == "__main__": c = gf.components.mmi1x2() p = get_sparameters_path_lumerical(c) sp = np.load(p) spd = dict(sp) print(spd) # test_get_sparameters_path(test=False) # test_get_sparameters_path(test=True)
gplugins/gplugins/common/utils/get_sparameters_path.py/0
{ "file_path": "gplugins/gplugins/common/utils/get_sparameters_path.py", "repo_id": "gplugins", "token_count": 1151 }
78
from gplugins.elmer.get_capacitance import run_capacitive_simulation_elmer __all__ = [ "run_capacitive_simulation_elmer", ]
gplugins/gplugins/elmer/__init__.py/0
{ "file_path": "gplugins/gplugins/elmer/__init__.py", "repo_id": "gplugins", "token_count": 51 }
79
"""Returns simulation from component.""" from __future__ import annotations import inspect import warnings from typing import Any import gdsfactory as gf import meep as mp import numpy as np from gdsfactory.component import Component from gdsfactory.components.extension import move_polar_rad_copy from gdsfactory.pdk import get_layer_stack from gdsfactory.technology import LayerStack from gplugins.gmeep.get_material import get_material from gplugins.gmeep.get_meep_geometry import ( get_meep_geometry_from_component, ) mp.verbosity(0) sig = inspect.signature(mp.Simulation) settings_meep = set(sig.parameters.keys()) def get_simulation( component: Component, resolution: int = 30, extend_ports_length: float | None = 10.0, layer_stack: LayerStack | None = None, zmargin_top: float = 3.0, zmargin_bot: float = 3.0, tpml: float = 1.5, clad_material: str = "SiO2", is_3d: bool = False, wavelength_start: float = 1.5, wavelength_stop: float = 1.6, wavelength_points: int = 50, dfcen: float = 0.2, port_source_name: str = "o1", port_source_mode: int = 0, port_margin: float = 3, distance_source_to_monitors: float = 0.2, port_source_offset: float = 0, port_monitor_offset: float = 0, dispersive: bool = False, material_name_to_meep: dict[str, str | float] | None = None, continuous_source: bool = False, **settings, ) -> dict[str, Any]: r"""Returns Simulation dict from gdsfactory Component. based on meep directional coupler example https://meep.readthedocs.io/en/latest/Python_Tutorials/GDSII_Import/ https://support.lumerical.com/hc/en-us/articles/360042095873-Metamaterial-S-parameter-extraction .. code:: top view ________________________________ | | | xmargin_left | port_extension |<------> port_margin ||<--> ___|___________ _________||___ | \ / | | \ / | | ====== | | / \ | ___|___________/ \__________|___ | | <-------->| | |ymargin_bot xmargin_right| | | | |___|___________________________| side view ________________________________ | | | | | | | zmargin_top | |ymargin | | |<---> _____ _|___ | | | | | | | | | | | | | | |_____| |_____| | | | | | | | | |zmargin_bot | | | | |_______|_______________________| Args: component: gdsfactory Component. resolution: in pixels/um (20: for coarse, 120: for fine). extend_ports_length: to extend ports beyond the PML. layer_stack: contains layer to thickness, zmin and material. Defaults to active pdk.layer_stack. zmargin_top: thickness for cladding above core. zmargin_bot: thickness for cladding below core. tpml: PML thickness (um). clad_material: material for cladding. is_3d: if True runs in 3D. wavelength_start: wavelength min (um). wavelength_stop: wavelength max (um). wavelength_points: wavelength steps. dfcen: delta frequency. port_source_name: input port name. port_margin: margin on each side of the port. distance_source_to_monitors: in (um) source goes before. port_source_offset: offset between source GDS port and source MEEP port. port_monitor_offset: offset between monitor GDS port and monitor MEEP port. dispersive: use dispersive material models (requires higher resolution). material_name_to_meep: map layer_stack names with meep material database name or refractive index. dispersive materials have a wavelength dependent index. continuous_source: if True, defines a continuous source at (wavelength_start + wavelength_stop)/2 instead of the ramped source Keyword Args: settings: extra simulation settings (resolution, symmetries, etc.) Returns: simulation dict: sim, monitors, sources. Make sure you review the simulation before you simulate a component .. code:: import gdsfactory as gf import gplugins.meep as gm c = gf.components.bend_circular() gm.write_sparameters_meep(c, run=False) """ for setting in settings: if setting not in settings_meep: raise ValueError(f"{setting!r} not in {sorted(settings_meep)}") layer_stack = layer_stack or get_layer_stack() layer_to_thickness = layer_stack.get_layer_to_thickness() component_ref = component.ref() component_ref.x = 0 component_ref.y = 0 wavelength = (wavelength_start + wavelength_stop) / 2 wavelengths = np.linspace(wavelength_start, wavelength_stop, wavelength_points) port_names = list(component_ref.ports.keys()) if port_source_name not in port_names: warnings.warn(f"port_source_name={port_source_name!r} not in {port_names}") port_source = component_ref.get_ports_list()[0] port_source_name = port_source.name warnings.warn(f"Selecting port_source_name={port_source_name!r} instead.") assert isinstance( component, Component ), f"component needs to be a gf.Component, got Type {type(component)}" component_extended = ( gf.components.extension.extend_ports( component=component, length=extend_ports_length, centered=True ) if extend_ports_length else component ) component_extended.show() component_extended = component_extended.flatten() # geometry_center = [component_extended.x, component_extended.y] # geometry_center = [0, 0] # print(geometry_center) layers_thickness = [ layer_to_thickness[layer] for layer in component.layers if layer in layer_to_thickness ] if layers_thickness is None: raise ValueError( f"Component layers {component.layers} not in {layer_to_thickness.keys()}. " "Did you passed the correct layer_stack?" ) t_core = sum( layers_thickness ) # This isn't exactly what we want but I think it's better than max cell_thickness = tpml + zmargin_bot + t_core + zmargin_top + tpml if is_3d else 0 cell_size = mp.Vector3( component.xsize + 2 * tpml, component.ysize + 2 * tpml, cell_thickness, ) geometry = get_meep_geometry_from_component( component=component_extended, layer_stack=layer_stack, material_name_to_meep=material_name_to_meep, wavelength=wavelength, is_3d=is_3d, dispersive=dispersive, ) freqs = 1 / wavelengths fcen = np.mean(freqs) frequency_width = dfcen * fcen # Add source port = component_ref.ports[port_source_name] angle_rad = np.radians(port.orientation) width = port.width + 2 * port_margin size_x = width * abs(np.sin(angle_rad)) size_y = width * abs(np.cos(angle_rad)) size_x = 0 if size_x < 0.001 else size_x size_y = 0 if size_y < 0.001 else size_y size_z = cell_thickness - 2 * tpml if is_3d else 20 size = [size_x, size_y, size_z] xy_shifted = move_polar_rad_copy( np.array(port.center), angle=angle_rad, length=port_source_offset ) center = xy_shifted.tolist() + [0] # (x, y, z=0) if np.isclose(port.orientation, 0): direction = mp.X elif np.isclose(port.orientation, 90): direction = mp.Y elif np.isclose(port.orientation, 180): direction = mp.X elif np.isclose(port.orientation, 270): direction = mp.Y else: raise ValueError( f"Port source {port_source_name!r} orientation {port.orientation} " "not 0, 90, 180, 270 degrees" ) sources = [ mp.EigenModeSource( src=mp.ContinuousSource(fcen) if continuous_source else mp.GaussianSource(fcen, fwidth=frequency_width), size=size, center=center, eig_band=port_source_mode + 1, eig_parity=mp.NO_PARITY if is_3d else mp.EVEN_Y + mp.ODD_Z, eig_match_freq=True, eig_kpoint=-1 * mp.Vector3(x=1).rotate(mp.Vector3(z=1), angle_rad), direction=direction, ) ] sim = mp.Simulation( cell_size=cell_size, boundary_layers=[mp.PML(tpml)], sources=sources, geometry=geometry, default_material=get_material( name=clad_material, material_name_to_meep=material_name_to_meep, wavelength=wavelength, ), resolution=resolution, **settings, ) # Add port monitors dict monitors = {} for port_name in component_ref.ports.keys(): port = component_ref.ports[port_name] angle_rad = np.radians(port.orientation) width = port.width + 2 * port_margin size_x = width * abs(np.sin(angle_rad)) size_y = width * abs(np.cos(angle_rad)) size_x = 0 if size_x < 0.001 else size_x size_y = 0 if size_y < 0.001 else size_y size = mp.Vector3(size_x, size_y, size_z) size = [size_x, size_y, size_z] # if monitor has a source move monitor inwards length = ( -distance_source_to_monitors + port_source_offset if port_name == port_source_name else port_monitor_offset ) xy_shifted = move_polar_rad_copy( np.array(port.center), angle=angle_rad, length=length ) center = xy_shifted.tolist() + [0] # (x, y, z=0) m = sim.add_mode_monitor(freqs, mp.ModeRegion(center=center, size=size)) m.z = 0 monitors[port_name] = m return dict( sim=sim, cell_size=cell_size, freqs=freqs, monitors=monitors, sources=sources, port_source_name=port_source_name, port_source_mode=port_source_mode, initialized=False, ) sig = inspect.signature(get_simulation) settings_get_simulation = set(sig.parameters.keys()).union(settings_meep) if __name__ == "__main__": import matplotlib.pyplot as plt c = gf.components.bend_circular() sim_dict = get_simulation( c, is_3d=False, # resolution=50, # port_source_offset=-0.1, # port_field_monitor_offset=-0.1, # port_margin=2.5, continuous_source=True, ) sim = sim_dict["sim"] sim.plot2D() plt.show() # Plot monitor cross-section (is_3D needs to be True) # sim.init_sim() # eps_data = sim.get_epsilon() # from mayavi import mlab # s = mlab.contour3d(eps_data, colormap="YlGnBu") # mlab.show() print(settings_get_simulation)
gplugins/gplugins/gmeep/get_simulation.py/0
{ "file_path": "gplugins/gplugins/gmeep/get_simulation.py", "repo_id": "gplugins", "token_count": 5315 }
80
from __future__ import annotations from collections.abc import Sequence import gdsfactory as gf import numpy as np from gdsfactory.config import get_number_of_cores from gdsfactory.technology import LayerStack from gdsfactory.typings import ComponentOrReference, Optional from meshwell.gmsh_entity import GMSH_entity from meshwell.model import Model from shapely.geometry import LineString, MultiPolygon, Point, Polygon from shapely.ops import unary_union from gplugins.common.utils.parse_layer_stack import ( list_unique_layer_stack_z, order_layer_stack, ) from gplugins.gmsh.define_polysurfaces import define_polysurfaces from gplugins.gmsh.parse_component import ( process_buffers, ) from gplugins.gmsh.parse_gds import cleanup_component, to_polygons def get_u_bounds_polygons( polygons: MultiPolygon | list[Polygon], xsection_bounds: tuple[tuple[float, float], tuple[float, float]], ): """Performs the bound extraction given a (Multi)Polygon or [Polygon] and cross-sectional line coordinates. Args: layer_polygons_dict: dict containing layernames: shapely polygons pairs xsection_bounds: ( (x1,y1), (x2,y2) ), with x1,y1 beginning point of cross-sectional line and x2,y2 the end. Returns: list of bounding box coordinates (u1,u2)) in xsection line coordinates (distance from xsection_bounds[0]). """ line = LineString(xsection_bounds) linestart = Point(xsection_bounds[0]) return_list = [] for polygon in polygons.geoms if hasattr(polygons, "geoms") else [polygons]: initial_settings = np.seterr() np.seterr(invalid="ignore") intersection = polygon.intersection(line) np.seterr(**initial_settings) if intersection: for entry in ( intersection.geoms if hasattr(intersection, "geoms") else [intersection] ): bounds = entry.bounds p1 = Point([bounds[0], bounds[1]]) p2 = Point([bounds[2], bounds[3]]) return_list.append([linestart.distance(p1), linestart.distance(p2)]) return return_list def get_u_bounds_layers( layer_polygons_dict: dict[tuple(str, str, str), MultiPolygon], xsection_bounds: tuple[tuple[float, float], tuple[float, float]], ): """Given a layer_polygons_dict and two coordinates (x1,y1), (x2,y2), computes the \ bounding box(es) of each layer in the xsection coordinate system (u). Args: layer_polygons_dict: dict containing layernames: shapely polygons pairs xsection_bounds: ( (x1,y1), (x2,y2) ), with x1,y1 beginning point of cross-sectional line and x2,y2 the end. Returns: Dict containing layer(list pairs, with list a list of bounding box coordinates (u1,u2)) in xsection line coordinates. """ bounds_dict = {} for layername, ( gds_layername, next_layername, polygons, next_polygons, ) in layer_polygons_dict.items(): bounds_dict[layername] = [] bounds = get_u_bounds_polygons(polygons, xsection_bounds) next_bounds = get_u_bounds_polygons(next_polygons, xsection_bounds) if bounds: bounds_dict[layername] = ( gds_layername, next_layername, bounds, next_bounds, ) return bounds_dict def get_uz_bounds_layers( layer_polygons_dict: dict[str, tuple[str, MultiPolygon, MultiPolygon]], xsection_bounds: tuple[tuple[float, float], tuple[float, float]], layer_stack: LayerStack, u_offset: float = 0.0, z_bounds: Optional[tuple[float, float]] = None, ): """Given a component and layer stack, computes the bounding box(es) of each \ layer in the xsection coordinate system (u,z). Args: component: Component or ComponentReference. xsection_bounds: ( (x1,y1), (x2,y2) ), with x1,y1 beginning point of cross-sectional line and x2,y2 the end Returns: Dict containing layer: polygon pairs, with (u1,u2) in xsection line coordinates """ if z_bounds is not None: z_min_sim = z_bounds[0] z_max_sim = z_bounds[1] else: z_min_sim = -np.Inf z_max_sim = np.Inf # Get in-plane cross-sections inplane_bounds_dict = get_u_bounds_layers(layer_polygons_dict, xsection_bounds) outplane_bounds_dict = {} layer_dict = layer_stack.to_dict() # Remove empty entries inplane_bounds_dict = { key: value for (key, value) in inplane_bounds_dict.items() if value } for layername, ( gds_layername, next_layername, inplane_bounds_list, next_inplane_bounds_list, ) in inplane_bounds_dict.items(): outplane_polygons_list = [] for inplane_bounds, next_inplane_bounds in zip( inplane_bounds_list, next_inplane_bounds_list ): zmin = layer_dict[layername]["zmin"] zmax = layer_dict[next_layername]["zmin"] # Get bounding box umin_zmin = np.min(inplane_bounds) + u_offset umax_zmin = np.max(inplane_bounds) + u_offset umin_zmax = np.min(next_inplane_bounds) + u_offset umax_zmax = np.max(next_inplane_bounds) + u_offset # If layer thickness are negative, then zmin is actually zmax if zmin > zmax: foo = zmax zmax = zmin zmin = foo foo = umin_zmin umin_zmin = umin_zmax umin_zmax = foo foo = umax_zmax umax_zmax = umax_zmin umax_zmin = foo if zmax < z_min_sim or zmin > z_max_sim: # The whole polygon is outside of the simulation region continue # Check if we need to clip on top or bottom if zmin < z_min_sim: # Need to clip the bottom # Do a linear interpolation of the u coordinates umin_zmin = np.interp(z_min_sim, [zmin, zmax], [umin_zmin, umin_zmax]) umax_zmin = np.interp(z_min_sim, [zmin, zmax], [umax_zmin, umax_zmax]) zmin = z_min_sim if zmax > z_max_sim: # Need to clip the top umin_zmax = np.interp(z_max_sim, [zmin, zmax], [umin_zmin, umin_zmax]) umax_zmax = np.interp(z_max_sim, [zmin, zmax], [umax_zmin, umax_zmax]) zmax = z_max_sim points = [ [umin_zmin, zmin], [umin_zmax, zmax], [umax_zmax, zmax], [umax_zmin, zmin], ] outplane_polygons_list.append(Polygon(points)) outplane_bounds_dict[layername] = (gds_layername, outplane_polygons_list) return outplane_bounds_dict def uz_xsection_mesh( component: ComponentOrReference, xsection_bounds: tuple[tuple[float, float], tuple[float, float]], layer_stack: LayerStack, layer_physical_map: dict, layer_meshbool_map: dict, resolutions: dict | None = None, default_characteristic_length: float = 0.5, background_tag: str | None = None, background_padding: Sequence[float, float, float, float, float, float] = (2.0,) * 6, background_mesh_order: int | float = 2**63 - 1, global_scaling: float = 1, global_scaling_premesh: float = 1, global_2D_algorithm: int = 6, filename: str | None = None, round_tol: int = 4, simplify_tol: float = 1e-4, u_offset: float = 0.0, left_right_periodic_bcs: bool = False, verbosity: int | None = 0, n_threads: int = get_number_of_cores(), gmsh_version: float | None = None, interface_delimiter: str = "___", background_remeshing_file=None, optimization_flags: tuple[tuple[str, int]] | None = None, **kwargs, ): """Mesh uz cross-section of component along line u = [[x1,y1] , [x2,y2]]. Args: component (Component): gdsfactory component to mesh xsection_bounds (Tuple): Tuple [[x1,y1] , [x2,y2]] parametrizing the line u layer_stack (LayerStack): gdsfactory LayerStack to parse layer_physical_map: map layer names to physical names layer_meshbool_map: map layer names to mesh_bool (True: mesh the prisms, False: don't mesh) resolutions (Dict): Pairs {"layername": {"resolution": float, "distance": "float}} to roughly control mesh refinement mesh_scaling_factor (float): factor multiply mesh geometry by default_resolution_min (float): gmsh minimal edge length default_resolution_max (float): gmsh maximal edge length background_tag (str): name of the background layer to add (default: no background added) background_padding (Tuple): [xleft, ydown, xright, yup] distances to add to the components and to fill with background_tag background_mesh_order (int, float): mesh order to assign to the background filename (str, path): where to save the .msh file global_meshsize_array: np array [x,y,z,lc] to parametrize the mesh global_meshsize_interpolant_func: interpolating function for global_meshsize_array extra_shapes_dict: Optional[OrderedDict] = OrderedDict of {key: geo} with key a label and geo a shapely (Multi)Polygon or (Multi)LineString of extra shapes to override component round_tol: during gds --> mesh conversion cleanup, number of decimal points at which to round the gdsfactory/shapely points before introducing to gmsh simplify_tol: during gds --> mesh conversion cleanup, shapely "simplify" tolerance (make it so all points are at least separated by this amount) u_offset: quantity to add to the "u" coordinates, useful to convert back to x or y if parallel to those axes atol: tolerance used to establish equivalency between vertices left_right_periodic_bcs: if True, makes the left and right simulation edge meshes periodic background_remeshing_file: .pos file to use as a remeshing field. Overrides resolutions if not None. """ # Fuse and cleanup polygons of same layer in case user overlapped them layer_polygons_dict = cleanup_component( component, layer_stack, round_tol, simplify_tol ) # GDS polygons to simulation polygons buffered_layer_polygons_dict, buffered_layer_stack = process_buffers( layer_polygons_dict, layer_stack ) # simulation polygons to u-z coordinates along cross-sectional line if "z_bounds" in kwargs: z_bounds = kwargs["z_bounds"] else: z_bounds = None bounds_dict = get_uz_bounds_layers( buffered_layer_polygons_dict, xsection_bounds, buffered_layer_stack, u_offset, z_bounds=z_bounds, ) # u-z coordinates to gmsh-friendly polygons # Remove terminal layers and merge polygons layer_order = order_layer_stack(layer_stack) # gds layers shapes = {} for layername in layer_order: current_shapes = [] for _, (gds_name, bounds) in bounds_dict.items(): if gds_name == layername: layer_shapes = list(bounds) current_shapes.append(MultiPolygon(to_polygons(layer_shapes))) shapes[layername] = unary_union(MultiPolygon(to_polygons(current_shapes))) # Define polysurfaces model = Model(n_threads=n_threads) polysurfaces_list = define_polysurfaces( polygons_dict=shapes, layer_stack=layer_stack, model=model, scale_factor=global_scaling_premesh, resolutions=resolutions, layer_physical_map=layer_physical_map, layer_meshbool_map=layer_meshbool_map, ) # Add background polygon if background_tag is not None: # shapes[background_tag] = bounds.buffer(background_padding[0]) # bounds = unary_union(list(shapes.values())).bounds zs = list_unique_layer_stack_z(buffered_layer_stack) zmin = np.min(zs) - background_padding[1] zmax = np.max(zs) + background_padding[3] umin = -1 * background_padding[0] + u_offset umax = ( np.linalg.norm(np.array(xsection_bounds[1]) - np.array(xsection_bounds[0])) + background_padding[2] + u_offset ) background_box = GMSH_entity( gmsh_function=model.occ.add_rectangle, gmsh_function_kwargs={ "x": umin, "y": zmin, "z": 0, "dx": umax - umin, "dy": zmax - zmin, }, dimension=2, model=model, mesh_order=background_mesh_order, physical_name=background_tag, ) polysurfaces_list.append(background_box) # Create interface surfaces and boundaries minu = np.inf minz = np.inf maxu = -np.inf maxz = -np.inf if left_right_periodic_bcs: # Figure out bbox of simulation for polygon in shapes.values(): if not polygon.is_empty: minx, miny, maxx, maxy = polygon.bounds minu = min(minx, minu) minz = min(miny, minz) maxu = max(maxx, maxu) maxz = max(maxy, maxz) minu += u_offset maxu += u_offset if background_tag: minu -= background_padding[0] maxu += background_padding[2] minz -= background_padding[1] maxz += background_padding[3] # Create boundary rectangles left_line_rectangle = GMSH_entity( gmsh_function=model.occ.add_rectangle, gmsh_function_kwargs={ "x": minu - 1, "y": minz, "z": 0, "dx": 1, "dy": maxz - minz, }, dimension=2, model=model, mesh_order=0, physical_name="left_line", mesh_bool=False, ) right_line_rectangle = GMSH_entity( gmsh_function=model.occ.add_rectangle, gmsh_function_kwargs={ "x": maxu, "y": minz, "z": 0, "dx": 1, "dy": maxz - minz, }, dimension=2, model=model, mesh_order=0, physical_name="right_line", mesh_bool=False, ) # Give meshwell all possible boundary interfaces periodic_entities = [ ( f"left_line{interface_delimiter}{entity.physical_name}", f"right_line{interface_delimiter}{entity.physical_name}", ) for entity in polysurfaces_list ] polysurfaces_list.append(left_line_rectangle) polysurfaces_list.append(right_line_rectangle) # Mesh return model.mesh( entities_list=polysurfaces_list, default_characteristic_length=default_characteristic_length, periodic_entities=periodic_entities if left_right_periodic_bcs else None, global_scaling=global_scaling, global_2D_algorithm=global_2D_algorithm, gmsh_version=gmsh_version, filename=filename, verbosity=verbosity, interface_delimiter=interface_delimiter, background_remeshing_file=background_remeshing_file, optimization_flags=optimization_flags, ) if __name__ == "__main__": from gdsfactory.pdk import get_layer_stack c = gf.component.Component() waveguide = c << gf.get_component(gf.components.straight_pin(length=10, taper=None)) undercut = c << gf.get_component( gf.components.rectangle( size=(5.0, 5.0), layer="UNDERCUT", centered=True, ) ) undercut.move(destination=[4, 0]) c.show() filtered_layer_stack = LayerStack( layers={ k: get_layer_stack().layers[k] for k in ( "slab90", "core", "via_contact", "undercut", "box", # "substrate", "clad", "metal1", ) # "slab90", "via_contact")#"via_contact") # "slab90", "core" } ) resolutions = {} resolutions["si"] = {"resolution": 0.02, "distance": 0.1} resolutions["siInt"] = {"resolution": 0.0003, "distance": 0.1} # resolutions["sio2"] = {"resolution": 0.5, "distance": 1} resolutions["Aluminum"] = {"resolution": 0.1, "distance": 1} # resolutions = {} # resolutions["core"] = {"resolution": 0.02, "distance": 0.1} # resolutions["coreInt"] = {"resolution": 0.0001, "distance": 0.1} # resolutions["slab90"] = {"resolution": 0.05, "distance": 0.1} # # resolutions["sio2"] = {"resolution": 0.5, "distance": 1} # resolutions["via_contact"] = {"resolution": 0.1, "distance": 1} geometry = uz_xsection_mesh( c, [(4, -15), (4, 15)], filtered_layer_stack, resolutions=resolutions, background_tag="Oxide", background_padding=(0, 0, 0, 0), filename="mesh.msh", round_tol=3, simplify_tol=1e-3, u_offset=-15, left_right_periodic_bcs=True, ) import meshio mesh_from_file = meshio.read("mesh.msh") def create_mesh(mesh, cell_type, prune_z=False): cells = mesh.get_cells_type(cell_type) cell_data = mesh.get_cell_data("gmsh:physical", cell_type) points = mesh.points[:, :2] if prune_z else mesh.points return meshio.Mesh( points=points, cells={cell_type: cells}, cell_data={"name_to_read": [cell_data]}, ) line_mesh = create_mesh(mesh_from_file, "line", prune_z=True) meshio.write("facet_mesh.xdmf", line_mesh) triangle_mesh = create_mesh(mesh_from_file, "triangle", prune_z=True) meshio.write("mesh.xdmf", triangle_mesh)
gplugins/gplugins/gmsh/uz_xsection_mesh.py/0
{ "file_path": "gplugins/gplugins/gmsh/uz_xsection_mesh.py", "repo_id": "gplugins", "token_count": 8284 }
81
from pathlib import Path import gdsfactory as gf import matplotlib.cm as cm import matplotlib.pyplot as plt import numpy as np from gdsfactory.config import get_number_of_cores from gdsfactory.typings import Layer from klayout.db import Box, Layout, TileOutputReceiver, TilingProcessor class DensityOutputReceiver(TileOutputReceiver): def __init__(self): super().__init__() self.data = [] def put( self, ix: int, iy: int, tile: Box, obj: float, dbu: float, clip: bool ) -> None: """ Arguments: ix: index position of the tile along the x-axis in a grid of tiles. iy: index position of the tile along the y-axis in a grid of tiles. tile: x-y boundaries of the tile (Klayout Box object) obj: density value (for this task) dbu: database units per user unit. clip: flag indicating if the tile has been clipped Add data as: (tile_center_x, tile_center_y, density) """ self.data.append( ( (tile.left * dbu + tile.right * dbu) / 2, (tile.bottom * dbu + tile.top * dbu) / 2, obj, ) ) def calculate_density( gdspath: Path, layer: tuple[int, int], cellname: str | None = None, tile_size: tuple[int, int] = (200, 200), threads: int = get_number_of_cores(), ) -> list[tuple[float, float, float]]: """ Calculates the density of a given layer in a GDS file and returns the density data. Process a GDS file to calculate the density of a specified layer. It divides the layout into tiles of a specified size, computes the density of the layer within each tile, and returns a (x,y,density) list of density data. The density is calculated as the area of the layer within a tile divided by the total area of the tile. Args: gdspath (Path): The path to the GDS file. layer (Layer): The layer for which to calculate density (layer number, datatype). tile_size (Tuple, optional): The size of the tiles (width, height) in database units. Defaults to (200, 200). threads (int, optional): The number of threads to use for processing. Defaults to total number of threads. Returns: list: A list of tuples, each containing the center x-coordinate, center y-coordinate, and density of each tile. """ # Validate input (xmin, ymin), (xmax, ymax) = get_gds_bbox( gdspath=gdspath, layer=layer, cellname=cellname ) if tile_size[0] > xmax - xmin and tile_size[1] > ymax - ymin: raise ValueError( f"Too large tile size {tile_size} for bbox {(xmin, ymin), (xmax, ymax)}: reduce tile size (and merge later if needed)." ) # Get GDS ly = Layout() ly.read(gdspath) li = ly.layer(layer[0], layer[1]) si = ly.top_cell().begin_shapes_rec(li) # Setup and execute task tp = TilingProcessor() out_receiver = DensityOutputReceiver() tp.output("res", out_receiver) tp.input("input", si) tp.dbu = ly.dbu tp.tile_size(tile_size[0], tile_size[1]) tp.threads = threads tp.queue( "_tile && (var d = to_f(input.area(_tile.bbox)) / to_f(_tile.bbox.area); _output(res, d))" ) tp.execute("Density map") return out_receiver.data def get_layer_polygons( gdspath: Path, layer: Layer, cellname: str | None = None ) -> list[np.array]: """ Extracts polygons from a specified layer in a GDS file using gdsfactory. Args: gdspath (Path): The path to the GDS file. layer (Layer): The layer from which to extract polygons (layer number, datatype). Returns: list: A list of polygons from the specified layer. """ # Load the layout and initialize an empty list to hold polygon coordinates component = gf.import_gds(gdspath=gdspath, cellname=cellname) component_layer = component.extract(layers=[layer]) return component_layer.get_polygons() def get_gds_bbox( gdspath: Path, layer: Layer | None = None, cellname: str | None = None, ) -> tuple[tuple[float, float], tuple[float, float]]: """ Calculates the bounding box of the entire GDS file using gdsfactory. Args: gdspath (Path): The path to the GDS file. layer (Layer): if not None, only consider the bbox of that specific layer Returns: tuple: ((xmin,ymin),(xmax,ymax)) """ component = gf.import_gds(gdspath, cellname=cellname) if layer is not None: component = component.extract(layers=[layer]) return component.bbox def extend_grid_and_density_to_bbox( x: np.ndarray, y: np.ndarray, density: np.ndarray, bbox: tuple[tuple[float, float], tuple[float, float]], ) -> tuple[np.ndarray, np.ndarray, np.ndarray]: """ Extends the grid and pads the density arrays with zeros to cover the entire bounding box. Args: x (np.ndarray): Current x coordinates. y (np.ndarray): Current y coordinates. density (np.ndarray): Density values corresponding to the x and y coordinates. bbox (tuple): Bounding box specified as ((xmin, ymin), (xmax, ymax)). Returns: tuple: Updated unique_x, unique_y, x, y, and density arrays. """ (xmin, ymin), (xmax, ymax) = bbox unique_x = np.unique(x) unique_y = np.unique(y) x_spacing = unique_x[1] - unique_x[0] y_spacing = unique_y[1] - unique_y[0] # Extend unique_x and unique_y to cover the full bbox range while unique_x[0] > xmin + x_spacing / 2: unique_x = np.insert(unique_x, 0, unique_x[0] - x_spacing) while unique_x[-1] < xmax - x_spacing / 2: unique_x = np.append(unique_x, unique_x[-1] + x_spacing) while unique_y[0] > ymin + y_spacing / 2: unique_y = np.insert(unique_y, 0, unique_y[0] - y_spacing) while unique_y[-1] < ymax - y_spacing / 2: unique_y = np.append(unique_y, unique_y[-1] + y_spacing) # Generate all combinations of new x and y coordinates new_x, new_y = np.meshgrid(unique_x, unique_y) new_x = new_x.flatten() new_y = new_y.flatten() # Filter out the original x, y pairs original_xy = set(zip(x, y)) new_xy = set(zip(new_x, new_y)) - original_xy # Extend x, y, and density arrays with new combinations x_extension, y_extension = zip(*new_xy) if new_xy else ([], []) density_extension = [0] * len(x_extension) # Update x, y, and density arrays with extensions x = np.concatenate((x, np.array(x_extension))) y = np.concatenate((y, np.array(y_extension))) density = np.concatenate((density, np.array(density_extension))) return x, y, density def density_data_to_meshgrid( density_data: list[tuple[float, float, float]], bbox: tuple[tuple[float, float], tuple[float, float]] | None = None, ) -> tuple[np.ndarray, np.ndarray, np.ndarray]: """ Converts density data into a meshgrid for plotting. Args: density_data (List[Tuple[float, float, float]]): A list of tuples, each containing the x-coordinate, y-coordinate, and density value. Output of "calculate_density" bbox: ((xmin, ymin), (xmax, ymax)). If None, the processed layer is not padded to the full gds size. Returns: Tuple[np.ndarray, np.ndarray, np.ndarray]: Three 2D numpy arrays representing the X coordinates, Y coordinates, and density values on a meshgrid. """ # Extract x, y, and density values x, y, density = zip(*density_data) # Convert to numpy arrays for plotting x = np.array(x) y = np.array(y) density = np.array(density) if bbox is not None: x, y, density = extend_grid_and_density_to_bbox(x, y, density, bbox) # Determine unique x and y coordinates for grid unique_x = np.unique(x) unique_y = np.unique(y) # Create a grid for plotting Xi, Yi = np.meshgrid(unique_x, unique_y) # Map density values to the grid Zi = np.zeros_like(Xi) for i, (x_val, y_val) in enumerate(zip(x, y)): xi_index = np.where(unique_x == x_val)[0][0] yi_index = np.where(unique_y == y_val)[0][0] Zi[yi_index, xi_index] = density[i] return Xi, Yi, Zi def estimate_weighted_global_density( Xi: np.ndarray, Yi: np.ndarray, Zi: np.ndarray, bbox: tuple[tuple[float, float], tuple[float, float]] | None = None, ) -> float: """ Calculates the mean density within a specified bounding box or overall if bbox is None. Args: Xi (np.ndarray): 2D array of X coordinates. Yi (np.ndarray): 2D array of Y coordinates. Zi (np.ndarray): 2D array of density values. bbox (tuple[tuple[float, float], tuple[float, float]], optional): Bounding box specified as ((xmin, ymin), (xmax, ymax)). Defaults to None. Returns: float: Mean density value. """ (xmin, ymin), (xmax, ymax) = bbox total_weighted_density = 0 total_weight = 0 # Calculate the spacing between grid points xi_spacing = np.unique(np.diff(Xi[0, :]))[0] yi_spacing = np.unique(np.diff(Yi[:, 0]))[0] # Calculate half spacing for overlap calculation half_xi_spacing = xi_spacing / 2 half_yi_spacing = yi_spacing / 2 # Iterate over each grid point to calculate weighted density for i in range(Xi.shape[0]): for j in range(Xi.shape[1]): # Calculate the center of each tile x_center = Xi[i, j] y_center = Yi[i, j] # Calculate the overlap between the bbox and the tile x_overlap = max( 0, min(x_center + half_xi_spacing, xmax) - max(x_center - half_xi_spacing, xmin), ) y_overlap = max( 0, min(y_center + half_yi_spacing, ymax) - max(y_center - half_yi_spacing, ymin), ) overlap_area = x_overlap * y_overlap # Calculate the weighted density if overlap_area > 0: total_weighted_density += Zi[i, j] * overlap_area total_weight += overlap_area # Calculate the weighted average density if total_weight > 0: weighted_average_density = total_weighted_density / total_weight else: weighted_average_density = 0 return weighted_average_density def plot_density_heatmap( gdspath: Path, layer: Layer, cellname: str | None = None, tile_size: tuple = (200, 200), threads: int = get_number_of_cores(), cmap=cm.Reds, title: str | None = None, visualize_with_full_gds: bool = True, visualize_polygons: bool = False, ) -> None: """ Generates and displays a heatmap visualization representing the density distribution across a specified layer of a GDS file. The heatmap is constructed using the density data calculated for each tile within the layer. Args: gdspath (Path): The path to the GDS file for which the density heatmap is to be plotted. layer (Layer): The specific layer within the GDS file for which the density heatmap is to be generated. tile_size (Tuple, optional): The dimensions (width, height) of each tile, in database units, used for density calculation. Defaults to (200, 200). threads (int, optional): The number of threads to utilize for processing the density calculations. Defaults to the total number of threads. cmap (Colormap, optional): The matplotlib colormap to use for the heatmap. Defaults to cm.Reds. title (str | None, optional): The title for the heatmap plot. If None, a default title is generated based on layer and tile size. Defaults to None. visualize_with_full_gds (bool, optional): Flag indicating whether to consider the full extent of the GDS file for plotting. Defaults to True. visualize_polygons (bool, optional): Flag indicating whether to overlay the actual layer polygons on top of the heatmap for reference. Defaults to False. """ density_data = calculate_density( gdspath=gdspath, cellname=cellname, layer=layer, tile_size=tile_size, threads=threads, ) Xi, Yi, Zi = density_data_to_meshgrid( density_data=density_data, bbox=get_gds_bbox(gdspath, cellname=cellname) if visualize_with_full_gds else None, ) # Plot the heatmap plt.figure(figsize=(10, 8)) plt.pcolormesh(Xi, Yi, Zi, shading="auto", cmap=cmap, alpha=0.5, edgecolor="k") for i, val in enumerate(Zi.flatten()): plt.text( Xi.flatten()[i], Yi.flatten()[i], f"{val * 100:2.0f}%", ha="center", va="center", fontsize=12, fontweight="bold", ) if visualize_polygons: polygons = get_layer_polygons(gdspath=gdspath, layer=layer) for polygon in polygons: x, y = polygon[:, 0], polygon[:, 1] plt.fill(x, y, fill=False, edgecolor="r", hatch="/", linewidth=2) if visualize_with_full_gds: (xmin, ymin), (xmax, ymax) = get_gds_bbox(gdspath, cellname=cellname) plt.plot( [xmin, xmax, xmax, xmin, xmin], [ymin, ymin, ymax, ymax, ymin], "r--", linewidth=2, label="Full GDS Extent", ) plt.colorbar(label="Density") plt.xlabel("X (um)") plt.ylabel("Y (um)") if visualize_with_full_gds: estimate = estimate_weighted_global_density( Xi, Yi, Zi, bbox=get_gds_bbox(gdspath, cellname=cellname) ) plt.title( title or f"Layer: {layer}, tile size: {tile_size}, total density ~{estimate * 100:1.2f}%" ) else: plt.title(title or f"Layer: {layer}, tile size: {tile_size}, layer bbox only") plt.show() if __name__ == "__main__": @gf.cell def component_test_density1(): c = gf.Component("density_test1") large_rect = c << gf.components.rectangle(size=(100, 150), layer=(1, 0)) small_rect = c << gf.components.rectangle(size=(50, 50), layer=(2, 0)) small_rect.x += 10 small_rect.y += 10 small_rect2 = c << gf.components.rectangle(size=(25, 25), layer=(2, 0)) small_rect2.ymax = 100 - small_rect2.ysize small_rect2.xmax = large_rect.xmax - small_rect2.xsize # c.write_gds(PATH.test_data / "test_gds_density1.gds") return c test_component = component_test_density1() test_component.write_gds("./test_gds_density1.gds") test_component.show() plot_density_heatmap( gdspath="./test_gds_density1.gds", layer=(2, 0), tile_size=(20, 20), visualize_with_full_gds=True, visualize_polygons=True, )
gplugins/gplugins/klayout/get_density.py/0
{ "file_path": "gplugins/gplugins/klayout/get_density.py", "repo_id": "gplugins", "token_count": 6256 }
82
from __future__ import annotations import contextlib import pathlib from collections import OrderedDict import numpy as np from gdsfactory import Component from gdsfactory.config import PATH from omegaconf import DictConfig c = 2.9979e8 pi = np.pi um = 1e-6 def install_design_kit( session: object, install_dir: pathlib.Path = PATH.interconnect, overwrite: bool = False, ) -> None: from gdsfactory.pdk import get_interconnect_cml_path cml_path = get_interconnect_cml_path() session.installdesignkit(str(cml_path), str(install_dir), overwrite) def set_named_settings( session: object, simulation_settings: dict, element: str ) -> None: for param, val in zip(simulation_settings.keys(), simulation_settings.values()): session.setnamed(element, param, val) # TODO: Add custom s-parameter models using compound elements def add_interconnect_element( session: object, label: str, model: str, loc: tuple[float, float] = (200.0, 200.0), flip_vert: bool = False, flip_horiz: bool = False, rotation: float = 0.0, simulation_props: OrderedDict | None = None, ): """Add an element to the Interconnect session. TODO: Need to connect this to generated s-parameters and add them to the model as well Args: session: Interconnect session. label: label for Interconnect component. model: loc: flip_vert: flip_horiz: rotation: extra_props: """ props = OrderedDict( [ ("name", label), ("x position", loc[0]), ("y position", loc[1]), ("horizontal flipped", float(flip_horiz)), ("vertical flipped", float(flip_vert)), ("rotated", rotation), ] ) if simulation_props: if "library" in simulation_props.keys(): _ = simulation_props.pop("library") if "properties" in simulation_props.keys(): props.update(simulation_props["properties"]) else: props.update(simulation_props) return session.addelement(model, properties=props) def get_interconnect_settings(instance): info = instance.info.copy() if "interconnect" not in info.keys(): return {} settings = info["interconnect"] if "properties" not in settings: settings["properties"] = [] if "layout_model_property_pairs" in settings.keys(): pairs = settings.pop("layout_model_property_pairs") for inc_name, (layout_name, scale) in pairs.items(): settings["properties"][inc_name] = info[layout_name] * scale return settings def send_to_interconnect( component: Component, session: object, ports_in: dict | None = None, ports_out: dict | None = None, placements: dict | None = None, simulation_settings: OrderedDict | None = None, drop_port_prefix: str | None = None, component_distance_scaling_x: float = 1, component_distance_scaling_y: float = 1, setup_mc: bool = False, exclude_electrical: bool = True, **settings, ) -> object: """Send netlist components to Interconnect and connect them according to netlist. Args: component: component from which to extract netlist. session: Interconnect session. placements: x,y pairs for where to place the components in the Interconnect GUI. simulation_settings: global settings for Interconnect simulation. drop_port_prefix: if components are written with some prefix, drop up to and including the prefix character. (i.e. "c1_input" -> "input"). component_distance_scaling: scaling factor for component distances when laying out Interconnect schematic. """ if not session: import lumapi session = lumapi.INTERCONNECT() install_design_kit(session=session) session.switchtolayout() session.deleteall() # Make compound element for circuit compound_element = session.addelement( "Compound Element", properties=OrderedDict([("name", str(component.name))]) ) if setup_mc: MC_param_element = f"::Root Element::{component.name}" # Add Monte-Carlo params session.addproperty( MC_param_element, "MC_uniformity_thickness", "wafer", "Matrix" ) session.addproperty(MC_param_element, "MC_uniformity_width", "wafer", "Matrix") session.addproperty(MC_param_element, "MC_non_uniform", "wafer", "Number") session.addproperty(MC_param_element, "MC_grid", "wafer", "Number") session.addproperty(MC_param_element, "MC_resolution_x", "wafer", "Number") session.addproperty(MC_param_element, "MC_resolution_y", "wafer", "Number") # Switch groupscope to compound element so that anything added will go into it session.groupscope(compound_element.name) c = component netlist = c.get_netlist() instances: DictConfig = netlist["instances"] connections: DictConfig = netlist["connections"] placements: DictConfig = placements or netlist["placements"] ports: DictConfig = netlist["ports"] relay_count = 1 excluded = [] for instance in instances: if exclude_electrical: # Exclude if purely electrical with contextlib.suppress(Exception): port_types = instances[instance].full["cross_section"].port_types if ("electrical" in port_types) and ("optical" not in port_types): excluded.append(instance) continue loc = ( component_distance_scaling_x * placements[instance].x, component_distance_scaling_y * placements[instance].y, ) sim_props = get_interconnect_settings(instances[instance]) if "model" not in sim_props.keys(): raise KeyError(f"Please specify an interconnect model for {instance!r}") model = sim_props.pop("model") if "layout_model_port_pairs" in sim_props.keys(): _ = sim_props.pop("layout_model_port_pairs") add_interconnect_element( session=session, label=instance, loc=loc, rotation=float(placements[instance].rotation), model=model, simulation_props=sim_props, ) if instance in ports_in: # Add input port and connect to the compound element input port session.addport( f"::Root Element::{compound_element.name}", f"{instance}.{ports_in[instance]}", "input", "Optical Signal", "left", ) session.connect( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "output", instance, ports_in[instance], ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "y position", loc[1] - 50, ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "x position", loc[0] - 50, ) relay_count += 1 elif instance in ports_out: session.addport( f"::Root Element::{compound_element.name}", f"{instance}.{ports_out[instance]}", "output", "Optical Signal", "right", ) session.connect( instance, ports_out[instance], f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "input", ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "y position", loc[1] + 50, ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "x position", loc[0] + 50, ) relay_count += 1 if ports: for port in ports_in: input_instance, instance_port = ports[port].split(",") info = get_interconnect_settings(instances[input_instance]) if "layout_model_port_pairs" in info.keys(): instance_port = info["layout_model_port_pairs"][instance_port] session.addport( f"::Root Element::{compound_element.name}", str(port), "input", "Optical Signal", "left", ) session.connect( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "output", input_instance, instance_port, ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "y position", session.getnamed(input_instance, "y position") - 50, ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "x position", session.getnamed(input_instance, "x position") - 50, ) relay_count += 1 for port in ports_out: output_instance, instance_port = ports[port].split(",") info = get_interconnect_settings(instances[output_instance]) if "layout_model_port_pairs" in info.keys(): instance_port = info["layout_model_port_pairs"][instance_port] session.addport( f"::Root Element::{compound_element.name}", str(port), "output", "Optical Signal", "right", ) session.connect( output_instance, instance_port, f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "input", ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "y position", session.getnamed(output_instance, "y position") + 50, ) session.setnamed( f"::Root Element::{compound_element.name}::RELAY_{relay_count}", "x position", session.getnamed(output_instance, "x position") + 50, ) relay_count += 1 for connection in connections: element2, port2 = connection.split(",") element1, port1 = connections[connection].split(",") if (element1 in excluded) or (element2 in excluded): continue if drop_port_prefix: # a bad way to autodetect which ports need to have prefixes dropped. with contextlib.suppress(Exception): port1 = port1[port1.index(drop_port_prefix) + 1 :] with contextlib.suppress(Exception): port2 = port2[port2.index(drop_port_prefix) + 1 :] # EBeam ports are not named consistently between Klayout and Interconnect.. element1_info = get_interconnect_settings(instances[element1]) if "layout_model_port_pairs" in element1_info.keys(): port1 = element1_info["layout_model_port_pairs"][port1] element2_info = get_interconnect_settings(instances[element2]) if "layout_model_port_pairs" in element2_info.keys(): port2 = element2_info["layout_model_port_pairs"][port2] session.connect(element1, port1, element2, port2) if simulation_settings: set_named_settings( session, simulation_settings, element=f"::Root Element::{component.name}" ) # Return to highest-level element session.groupscope("::Root Element") # Auto-distribute ports on the compound element session.autoarrange(component.name) return session def run_wavelength_sweep( component: Component, session: object | None = None, setup_simulation: bool = True, is_top_level: bool = False, ports_in: dict | None = None, ports_out: dict | None = None, mode: int = 1, wavelength_range: tuple[float, float] = (1.500, 1.600), n_points: int = 1000, results: tuple[str, ...] = ("transmission",), extra_ona_props: dict | None = None, **kwargs, ) -> dict: """Args are the following. component: session: setup_simulation: whether to send the component to interconnect before running the sweep. ports_in: specify the port in the Interconnect model to attach the ONA output to. ports_out: specify the ports in the Interconnect models to attach the ONA input to. wavelength_range: n_points: results: extra_ona_props: kwargs: """ if len(ports_in) > 1: raise ValueError("Only 1 input port is supported at this time") import lumapi if not session: session = lumapi.INTERCONNECT() install_design_kit(session=session) if setup_simulation: session = send_to_interconnect( component=component, session=session, ports_in=ports_in, ports_out=ports_out, **kwargs, ) ona_props = OrderedDict( [ ("number of input ports", len(ports_out)), ("number of points", n_points), ("input parameter", "start and stop"), ("start frequency", (c / (wavelength_range[1] * um))), ("stop frequency", (c / (wavelength_range[0] * um))), ("plot kind", "wavelength"), ("relative to center", float(False)), ] ) if extra_ona_props: ona_props.update(extra_ona_props) ona = add_interconnect_element( session=session, model="Optical Network Analyzer", label="ONA_1", loc=(0, -50), simulation_props=ona_props, ) for port in ports_in.keys(): name = port if is_top_level else f"{port}.{ports_in[port]}" session.connect(ona.name, "output", component.name, name) for i, port in enumerate(ports_out.keys()): name = port if is_top_level else f"{port}.{ports_out[port]}" session.connect(ona.name, f"input {i+1}", component.name, name) session.run() # inc.close() return { result: { port: session.getresult(ona.name, f"input {i+1}/mode {mode}/{result}") for i, port in enumerate(ports_out) } for result in results } def plot_wavelength_sweep( ports_out, results, result_name: str = "TE Transmission", show: bool = True ) -> None: import matplotlib.pyplot as plt for port in ports_out: wl = results["transmission"][port]["wavelength"] / um T = 10 * np.log10(np.abs(results["transmission"][port][result_name])) plt.plot(wl, T, label=str(port)) plt.legend() plt.xlabel(r"Wavelength ($\mu$m)") plt.ylabel(f"{result_name} (dB)") if show: plt.show() if __name__ == "__main__": import ubcpdk.components as pdk mzi = pdk.mzi() netlist = mzi.get_netlist() ports_in = {"o1": "o1"} ports_out = {"o2": "o2"} simulation_settings = OrderedDict( [ ("MC_uniformity_thickness", np.array([200, 200])), ("MC_uniformity_width", np.array([200, 200])), ("MC_non_uniform", 0), ("MC_grid", 1e-5), ("MC_resolution_x", 200), ("MC_resolution_y", 0), ] ) results = run_wavelength_sweep( component=mzi, ports_in=ports_in, ports_out=ports_out, results=("transmission",), component_distance_scaling=50, simulation_settings=simulation_settings, setup_mc=True, is_top_level=True, ) plot_wavelength_sweep(ports_out=ports_out, results=results)
gplugins/gplugins/lumerical/interconnect.py/0
{ "file_path": "gplugins/gplugins/lumerical/interconnect.py", "repo_id": "gplugins", "token_count": 7327 }
83
from __future__ import annotations from gplugins.modes import coupler, waveguide from gplugins.modes.find_coupling_vs_gap import ( find_coupling_vs_gap, plot_coupling_vs_gap, ) from gplugins.modes.find_mode_dispersion import find_mode_dispersion from gplugins.modes.find_modes import ( find_modes_coupler, find_modes_waveguide, ) from gplugins.modes.find_neff_ng_dw_dh import ( find_neff_ng_dw_dh, plot_neff_ng_dw_dh, ) from gplugins.modes.find_neff_vs_width import ( find_neff_vs_width, plot_neff_vs_width, ) __all__ = [ "find_modes_waveguide", "find_modes_coupler", "find_neff_vs_width", "find_mode_dispersion", "find_coupling_vs_gap", "find_neff_ng_dw_dh", "plot_neff_ng_dw_dh", "plot_neff_vs_width", "plot_coupling_vs_gap", "coupler", "waveguide", ] __version__ = "0.0.2"
gplugins/gplugins/modes/__init__.py/0
{ "file_path": "gplugins/gplugins/modes/__init__.py", "repo_id": "gplugins", "token_count": 405 }
84
from __future__ import annotations import numpy as np import gplugins.modes as gm from gplugins.modes.types import Mode def innerprod_trapz( mode1: Mode, mode2: Mode, ymin: float = -2.0, ymax: float = 2.0, zmin: float = -2.0, zmax: float = 2.0, trapz_num_y: int = 2000, trapz_num_z: int = 2000, ) -> float: """Compute the inner product of two modes as 1/4*int(E1* x H2 + E2 x H1*)_x dydz. with int double integral over y,z, x cross product, and _x x-projection Uses simple trapz numerical integration Note that <1|1> != 1 with this definition, but you can compute that to normalize other quantities Args: mode1: Mode object. mode2: Mode object. ymin: lower y integration bound. ymax: upper y integration bound. zmin: lower z integration bound. zmax: upper z integration bound. trapz_num_y: number of points to resample the mode in y for integration. trapz_num_z: number of points to resample the mode in z for integration. """ # Form vector components yint = np.linspace(ymin, ymax, trapz_num_y) zint = np.linspace(zmin, zmax, trapz_num_z) mode1_Ey_interp = mode1.Ey_grid_interp(yint, zint) mode1_Ez_interp = mode1.Ez_grid_interp(yint, zint) mode1_Hy_interp = mode1.Hy_grid_interp(yint, zint) mode1_Hz_interp = mode1.Hz_grid_interp(yint, zint) mode2_Ey_interp = mode2.Ey_grid_interp(yint, zint) mode2_Ez_interp = mode2.Ez_grid_interp(yint, zint) mode2_Hy_interp = mode2.Hy_grid_interp(yint, zint) mode2_Hz_interp = mode2.Hz_grid_interp(yint, zint) # Compute integrand # For cross product in terms of components: integrand = ( np.conj(mode1_Ey_interp) * mode2_Hz_interp - np.conj(mode1_Ez_interp) * mode2_Hy_interp + mode2_Ey_interp * np.conj(mode1_Hz_interp) - mode2_Ez_interp * np.conj(mode1_Hy_interp) ) # Compute integral integral = np.trapz(np.trapz(integrand, yint, axis=0), zint, axis=0) return 0.25 * integral def test_innerprod_trapz() -> None: """Checks that overlaps do not change.""" m = gm.find_modes_waveguide() overlap = innerprod_trapz(m[1], m[1]) assert abs(overlap) < 0.2 if __name__ == "__main__": # m = gm.find_modes_waveguide() # print(innerprod_trapz(m[1], m[1])) test_innerprod_trapz()
gplugins/gplugins/modes/overlap.py/0
{ "file_path": "gplugins/gplugins/modes/overlap.py", "repo_id": "gplugins", "token_count": 1058 }
85
from __future__ import annotations import asyncio import inspect import itertools import json import re import shutil from collections.abc import Collection, Mapping, Sequence from math import atan2, degrees, inf from pathlib import Path from tempfile import TemporaryDirectory from typing import Any import gdsfactory as gf import gmsh import pandas as pd from gdsfactory.generic_tech import LAYER_STACK from gdsfactory.technology import LayerStack from numpy import isfinite from gplugins.common.base_models.simulation import DrivenFullWaveResults from gplugins.common.types import RFMaterialSpec from gplugins.common.utils.async_helpers import ( execute_and_stream_output, run_async_with_event_loop, ) from gplugins.gmsh import get_mesh DRIVE_JSON = "driven.json" DRIVEN_TEMPLATE = Path(__file__).parent / DRIVE_JSON def _generate_json( simulation_folder: Path, name: str, bodies: dict[str, dict[str, Any]], absorbing_surfaces: Collection[str], layer_stack: LayerStack, material_spec: RFMaterialSpec, element_order: int, physical_name_to_dimtag_map: dict[str, tuple[int, int]], metal_surfaces: Collection[str], background_tag: str | None = None, edge_signals: Sequence[Sequence[str]] | None = None, internal_signals: Sequence[tuple[Sequence[str], Sequence[str]]] | None = None, internal_signal_directions: Mapping[tuple[str, str], str] | None = None, simulator_params: Mapping[str, Any] | None = None, driven_settings: Mapping[str, float | int | bool] | None = None, mesh_refinement_levels: int | None = None, only_one_port: bool | None = True, ) -> list[Path]: """Generates a json file for full-wave Palace simulations. Args: simulation_folder: Path to the simulation folder. name: Name of the simulation. bodies: Dictionary of bodies to be simulated. absorbing_surfaces: Collection of surfaces to be treated as absorbing. layer_stack: Layer stack of the simulation. material_spec: Material specification of the simulation. element_order: Element order of the simulation. physical_name_to_dimtag_map: Mapping from physical names to dimension tags. metal_surfaces: Collection of surfaces to be treated as metal. background_tag: Tag of the background material. edge_signals: Collection of edge signals to be excited. internal_signals: Collection of internal signals to be excited. internal_signal_directions: Mapping from internal signals to directions. simulator_params: Parameters of the simulator. driven_settings: Settings of the driven solver. mesh_refinement_levels: Number of mesh refinement levels. only_one_port: Whether to only simulate one port at a time. """ # TODO: Generalise to merger with the Elmer implementations""" used_materials = {v.material for v in layer_stack.layers.values()} | ( {background_tag} if background_tag else {} ) used_materials = { k: material_spec[k] for k in used_materials if isfinite(material_spec[k].get("relative_permittivity", inf)) } with open(DRIVEN_TEMPLATE) as fp: palace_json_data = json.load(fp) material_to_attributes_map = dict() for k, v in bodies.items(): material_to_attributes_map[v["material"]] = material_to_attributes_map.get( v["material"], [] ) + [physical_name_to_dimtag_map[k][1]] palace_json_data["Model"]["Mesh"] = f"{name}.msh" if mesh_refinement_levels: palace_json_data["Model"]["Refinement"] = { "UniformLevels": mesh_refinement_levels } palace_json_data["Domains"]["Materials"] = [ { "Attributes": material_to_attributes_map.get(material, None), "Permittivity": float(props["relative_permittivity"]), "Permeability": float(props["relative_permeability"]), "LossTan": float(props.get("loss_tangent", 0.0)), "Conductivity": float(props.get("conductivity", 0.0)), } for material, props in used_materials.items() ] # TODO list here attributes that contained LossTAN # palace_json_data["Domains"]["Postprocessing"]["Dielectric"] = [ # ] palace_json_data["Boundaries"]["PEC"] = { "Attributes": [ physical_name_to_dimtag_map[layer][1] for layer in set(metal_surfaces) - set(itertools.chain.from_iterable(edge_signals or [])) - set( itertools.chain.from_iterable( itertools.chain.from_iterable(internal_signals or []) ) ) - set(absorbing_surfaces or []) ] } # Farfield surface palace_json_data["Boundaries"]["Absorbing"] = { "Attributes": [ physical_name_to_dimtag_map[e][1] for e in absorbing_surfaces ], # TODO get farfield _None etc "Order": 1, } # TODO palace_json_data["Boundaries"]["Postprocessing"]["Dielectric"] palace_json_data["Solver"]["Order"] = element_order if driven_settings is not None: palace_json_data["Solver"]["Driven"] |= driven_settings if simulator_params is not None: palace_json_data["Solver"]["Linear"] |= simulator_params # need one simulation per port to excite, see https://github.com/awslabs/palace/issues/81 jsons = [] for port in itertools.chain(edge_signals or [], internal_signals or []): port_i = 0 # TODO regex here is hardly robust port_name = re.search( r"__(.*?)___", port[0][0] if isinstance(port, tuple) else port[0] ).group(1) if edge_signals: palace_json_data["Boundaries"]["WavePort"] = [ { "Index": (port_i := port_i + 1), "Attributes": [ physical_name_to_dimtag_map[signal][1] for signal in signal_group ], "Excitation": port == signal_group, "Mode": 1, "Offset": 0.0, } for signal_group in edge_signals ] # TODO only two pair lumped ports supported for now if internal_signals: palace_json_data["Boundaries"]["LumpedPort"] = [ { "Index": (port_i := port_i + 1), "Elements": [ { "Attributes": [ physical_name_to_dimtag_map[signal][1] for signal in signal_group_1 ], "Direction": internal_signal_directions[ re.search(r"__(.*?)___", signal_group_1[0]).group(1) ], }, { "Attributes": [ physical_name_to_dimtag_map[signal][1] for signal in signal_group_2 ], "Direction": internal_signal_directions[ re.search(r"__(.*?)___", signal_group_2[0]).group(1) ], }, ], "Excitation": port == (signal_group_1, signal_group_2), "R": 50, } for (signal_group_1, signal_group_2) in internal_signals ] palace_json_data["Problem"]["Output"] = f"postpro_{port_name}" with open( (json_name := simulation_folder / f"{name}_{port_name}.json"), "w", encoding="utf-8", ) as fp: json.dump(palace_json_data, fp, indent=4) jsons.append(json_name) # TODO if a user has both wave ports and lumped ports, this currently allows only computing from waveport elsewhere if only_one_port: break return jsons async def _palace( simulation_folder: Path, json_files: Collection[Path], n_processes: int = 1 ) -> None: """Run simulations with Palace.""" # split processes as evenly as possible quotient, remainder = divmod(n_processes, len(json_files)) n_processes_per_json = [quotient] * len(json_files) for i in range(remainder): n_processes_per_json[i] = max( n_processes_per_json[i] + 1, 1 ) # need at least one palace = shutil.which("palace") if palace is None: raise RuntimeError( "`palace` not found. Make sure it is available in your PATH." ) tasks = [ execute_and_stream_output( ( [palace, str(json_file)] if n_processes == 1 else [palace, "-np", str(n_processes_json), str(json_file)] ), shell=False, log_file_dir=json_file.parent, log_file_str=json_file.stem + "_palace", cwd=simulation_folder, ) for json_file, n_processes_json in zip(json_files, n_processes_per_json) ] await asyncio.gather(*tasks) def _read_palace_results( simulation_folder: Path, mesh_filename: str, ports: Collection[str], is_temporary: bool, ) -> DrivenFullWaveResults: """Fetch results from successful Palace simulations.""" scattering_matrix = pd.DataFrame() for port in ports: scattering_matrix = pd.concat( [ scattering_matrix, pd.read_csv( simulation_folder / f"postpro_{port}" / "port-S.csv", dtype=float ), ], axis="columns", ) scattering_matrix = ( scattering_matrix.T.drop_duplicates().T ) # Remove duplicate freqs. scattering_matrix.columns = scattering_matrix.columns.str.strip() DrivenFullWaveResults.update_forward_refs() return DrivenFullWaveResults( scattering_matrix=scattering_matrix, # TODO maybe convert to SDict or similar from DataFrame **( {} if is_temporary else dict( mesh_location=simulation_folder / mesh_filename, field_file_locations=[ simulation_folder / f"postpro_{port}" / "paraview" / "driven" / "driven.pvd" for port in ports ], ) ), ) def run_scattering_simulation_palace( component: gf.Component, element_order: int = 1, n_processes: int = 1, layer_stack: LayerStack | None = None, material_spec: RFMaterialSpec | None = None, simulation_folder: Path | str | None = None, simulator_params: Mapping[str, Any] | None = None, driven_settings: Mapping[str, float | int | bool] | None = None, mesh_refinement_levels: int | None = None, only_one_port: bool | None = True, mesh_parameters: dict[str, Any] | None = None, mesh_file: Path | str | None = None, ) -> DrivenFullWaveResults: """Run full-wave finite element method simulations using Palace. Returns the field solution and resulting scattering matrix. .. note:: You should have `palace` in your PATH. Args: component: Simulation environment as a gdsfactory component. element_order: Order of polynomial basis functions. Higher is more accurate but takes more memory and time to run. n_processes: Number of processes to use for parallelization layer_stack: :class:`~LayerStack` defining defining what layers to include in the simulation and the material properties and thicknesses. material_spec: :class:`~RFMaterialSpec` defining material parameters for the ones used in ``layer_stack``. simulation_folder: Directory for storing the simulation results. Default is a temporary directory. simulator_params: Palace-specific parameters. This will be expanded to ``solver["Linear"]`` in the Palace config, see `Palace documentation <https://awslabs.github.io/palace/stable/config/solver/#solver[%22Linear%22]>`_ driven_settings: Driven full-wave parameters in Palace. This will be expanded to ``solver["Driven"]`` in the Palace config, see `Palace documentation <https://awslabs.github.io/palace/stable/config/solver/#solver[%22Driven%22]>`_ mesh_refinement_levels: Refine mesh this many times, see Palace for details. only_one_port: Whether to solve only scattering from the first port to other ports, e.g., `S11, S12, S13, ...` mesh_parameters: Keyword arguments to provide to :func:`get_mesh`. mesh_file: Path to a ready mesh to use. Useful for reusing one mesh file. By default a mesh is generated according to ``mesh_parameters``. .. _Palace https://github.com/awslabs/palace """ if layer_stack is None: layer_stack = LayerStack( layers={ k: LAYER_STACK.layers[k] for k in ( "core", "substrate", "box", ) } ) if material_spec is None: material_spec: RFMaterialSpec = { "si": {"relative_permittivity": 11.45}, "sio2": {"relative_permittivity": 1}, "vacuum": {"relative_permittivity": 1}, } temp_dir = TemporaryDirectory() simulation_folder = Path(simulation_folder or temp_dir.name) simulation_folder.mkdir(exist_ok=True, parents=True) filename = component.name + ".msh" if mesh_file: shutil.copyfile(str(mesh_file), str(simulation_folder / filename)) else: get_mesh( component=component, type="3D", filename=simulation_folder / filename, layer_stack=layer_stack, gmsh_version=2.2, # see https://mfem.org/mesh-formats/#gmsh-mesh-formats **(mesh_parameters or {}), ) # re-read the mesh # `interruptible` works on gmsh versions >= 4.11.2 gmsh.initialize( **( {"interruptible": False} if "interruptible" in inspect.getfullargspec(gmsh.initialize).args else {} ) ) gmsh.option.setNumber("Mesh.MshFileVersion", 2.2) gmsh.merge(str(simulation_folder / filename)) mesh_surface_entities = { gmsh.model.getPhysicalName(*dimtag) for dimtag in gmsh.model.getPhysicalGroups(dim=2) } background_tag = (mesh_parameters or {}).get("background_tag", "vacuum") # Signals are converted to Boundaries # TODO currently assumes signal layers have `bw` ground_layers = { next(k for k, v in layer_stack.layers.items() if v.layer == port.layer) for port in component.get_ports() } | {layer for layer in component.get_layer_names() if "_bw" in layer} # TODO infer port delimiter from somewhere port_delimiter = "__" metal_surfaces = [ e for e in mesh_surface_entities if any(ground in e for ground in ground_layers) ] # Group signal BCs by ports and lumped port pairs # TODO tuple pairs by o1_1 o1_2 lumped_two_ports = [ e for e in [port.split("_") for port in component.ports] if len(e) > 1 ] lumped_two_port_pairs = [ ("_".join(p1), "_".join(p2)) for p1, p2 in itertools.combinations(lumped_two_ports, 2) if p1[0] == p2[0] ] metal_signal_surfaces_grouped = [ [e for e in metal_surfaces if port in e and background_tag in e] for port in component.ports ] metal_signal_surfaces_paired = [ tuple( e for e in metal_signal_surfaces_grouped if all(p1 in s or p2 in s for s in e) ) for p1, p2 in lumped_two_port_pairs ] metal_ground_surfaces = set(metal_surfaces) - set( itertools.chain.from_iterable(metal_signal_surfaces_grouped) ) ground_layers |= metal_ground_surfaces def _xy_plusminus_direction(point_1, point_2): # TODO update after https://github.com/awslabs/palace/pull/75 is merged delta_x = point_2[0] - point_1[0] delta_y = point_2[1] - point_1[1] angle = atan2(delta_y, delta_x) angle_deg = degrees(angle) + 360 directions = ["+X", "+Y", "-X", "-Y"] index = round(angle_deg / 90) % 4 # TODO check if shift is correct return directions[index] lumped_two_port_directions = { ports[0]: _xy_plusminus_direction( *[component.get_ports_dict()[port].center for port in ports] ) for ports in itertools.chain( lumped_two_port_pairs, [tuple(reversed(e)) for e in lumped_two_port_pairs] ) } # dielectrics bodies = { k: { "material": v.material, } for k, v in layer_stack.layers.items() if port_delimiter not in k and k not in ground_layers } if background_tag: bodies = {**bodies, background_tag: {"material": background_tag}} # TODO refactor to not require this map, the same information could be transferred with the variables above physical_name_to_dimtag_map = { gmsh.model.getPhysicalName(*dimtag): dimtag for dimtag in gmsh.model.getPhysicalGroups() } absorbing_surfaces = { k for k in physical_name_to_dimtag_map if "___None" in k and background_tag in k and all(p not in k for p in component.ports) } - set(ground_layers) gmsh.finalize() jsons = _generate_json( simulation_folder, component.name, bodies, absorbing_surfaces, layer_stack, material_spec, element_order, physical_name_to_dimtag_map, metal_surfaces, background_tag, None, # TODO edge metal_signal_surfaces_paired, # internal lumped_two_port_directions, simulator_params, driven_settings, mesh_refinement_levels, only_one_port, ) run_async_with_event_loop(_palace(simulation_folder, jsons, n_processes)) results = _read_palace_results( simulation_folder, filename, [e[0] for e in lumped_two_port_pairs][: 1 if only_one_port else -1], is_temporary=str(simulation_folder) == temp_dir.name, ) temp_dir.cleanup() return results
gplugins/gplugins/palace/get_scattering.py/0
{ "file_path": "gplugins/gplugins/palace/get_scattering.py", "repo_id": "gplugins", "token_count": 8514 }
86
"""Demo of non-hierarchical circuit simulations.""" from __future__ import annotations import gdsfactory as gf import jax.numpy as jnp import sax def straight(wl=1.5, length=10.0, neff=2.4) -> sax.SDict: """Straight model.""" return sax.reciprocal({("o1", "o2"): jnp.exp(2j * jnp.pi * neff * length / wl)}) def mmi1x2(): """Assumes a perfect 1x2 splitter.""" return sax.reciprocal( { ("o1", "o2"): 0.5**0.5, ("o1", "o3"): 0.5**0.5, } ) def bend_euler(wl=1.5, length=20.0): """Assumes reduced transmission for the euler bend compared to a straight.""" return {k: 0.99 * v for k, v in straight(wl=wl, length=length).items()} models = { "bend_euler": bend_euler, "mmi1x2": mmi1x2, "straight": straight, } def module(S) -> None: for k, v in S.items(): S[k] = np.abs(v) ** 2 if __name__ == "__main__": import matplotlib.pyplot as plt import numpy as np c = gf.components.mzi() c.show(show_ports=True) netlist = c.get_netlist() circuit, _ = sax.circuit(netlist=netlist, models=models) wl = np.linspace(1.5, 1.6) S = circuit(wl=wl) plt.figure(figsize=(14, 4)) plt.title("MZI") plt.plot(1e3 * wl, jnp.abs(S["o1", "o2"]) ** 2) plt.xlabel("λ [nm]") plt.ylabel("T") plt.grid(True) plt.show()
gplugins/gplugins/sax/tests/test_mzi.py/0
{ "file_path": "gplugins/gplugins/sax/tests/test_mzi.py", "repo_id": "gplugins", "token_count": 651 }
87
// `circuit.Package` `gplugins.klayout.example` // Generated by `vlsirtools.SpectreNetlister` // subckt straight_e0091ba5 + 1 + // No parameters ends subckt straight_af1bc243 + 1 + // No parameters ends subckt straight_ea93caa4 + 1 + // No parameters ends subckt bend_euler_cross_sectionmetal3 + 1 + // No parameters ends subckt straight_55343d8d + 1 + // No parameters ends subckt pad + 1 + // No parameters ends subckt pads_correct + // No ports + // No parameters 1 + // Ports: + ( tl,tr ) + pad + // No parameters 2 + // Ports: + ( tl,tr ) + straight_ea93caa4 + // No parameters 3 + // Ports: + ( tl,tr ) + bend_euler_cross_sectionmetal3 + // No parameters 4 + // Ports: + ( tl,tr ) + straight_af1bc243 + // No parameters 5 + // Ports: + ( tl,tr ) + bend_euler_cross_sectionmetal3 + // No parameters 6 + // Ports: + ( tl,tr ) + pad + // No parameters 7 + // Ports: + ( tl,tr ) + straight_e0091ba5 + // No parameters 8 + // Ports: + ( bl,br ) + pad + // No parameters 9 + // Ports: + ( bl,br ) + straight_55343d8d + // No parameters 10 + // Ports: + ( bl,br ) + pad + // No parameters ends
gplugins/gplugins/vlsir/tests/resources/pads_correct.scs/0
{ "file_path": "gplugins/gplugins/vlsir/tests/resources/pads_correct.scs", "repo_id": "gplugins", "token_count": 533 }
88
<jupyter_start><jupyter_text>2D meshing: xy cross-sectionYou can supply the argument `type="xy"` and a `z`-value, to mesh arbitrary `Component` planar cross-sections.<jupyter_code>import gdsfactory as gf import meshio from gdsfactory.generic_tech import get_generic_pdk from gdsfactory.pdk import get_layer_stack from gdsfactory.technology import LayerStack from skfem.io import from_meshio from gplugins.gmsh.get_mesh import create_physical_mesh, get_mesh gf.config.rich_output() PDK = get_generic_pdk() PDK.activate() waveguide = gf.components.straight_pin(length=10, taper=None) waveguide.plot() filtered_layer_stack = LayerStack( layers={ k: get_layer_stack().layers[k] for k in ( "slab90", "core", "via_contact", ) } ) filename = "mesh" def mesh_with_physicals(mesh, filename): mesh_from_file = meshio.read(f"{filename}.msh") return create_physical_mesh(mesh_from_file, "triangle")<jupyter_output><empty_output><jupyter_text>At `z=0.09` um, according to the layer stack above we should see polygons from all three layers:<jupyter_code>filename = "mesh" mesh = get_mesh( component=waveguide, type="xy", z=0.09, layer_stack=filtered_layer_stack, filename=f"{filename}.msh", ) mesh = mesh_with_physicals(mesh, filename) mesh = from_meshio(mesh) mesh.draw().plot()<jupyter_output><empty_output><jupyter_text>At `z=0`, you can see only the core and slab:<jupyter_code>mesh = get_mesh( component=waveguide, type="xy", z=0.0, layer_stack=filtered_layer_stack, filename=f"{filename}.msh", ) mesh = mesh_with_physicals(mesh, filename) mesh = from_meshio(mesh) mesh.draw().plot()<jupyter_output><empty_output><jupyter_text>At `z=1.0`, you can only see the vias appear:<jupyter_code>mesh = get_mesh( component=waveguide, type="xy", z=1.0, layer_stack=filtered_layer_stack, filename=f"{filename}.msh", ) mesh = mesh_with_physicals(mesh, filename) mesh = from_meshio(mesh) mesh.draw().plot()<jupyter_output><empty_output><jupyter_text>Controlling meshing domainYou can use functions that return other components to modify the simulation domain, for instance `gdsfactory.geometry.trim`:<jupyter_code>waveguide_trimmed = gf.Component() waveguide_trimmed.add_ref( gf.geometry.trim( component=waveguide, domain=[[3, -4], [3, 4], [5, 4], [5, -4]], ) ) waveguide_trimmed.plot() mesh = get_mesh( component=waveguide_trimmed, type="xy", z=0.09, layer_stack=filtered_layer_stack, filename=f"{filename}.msh", ) mesh = mesh_with_physicals(mesh, filename) mesh = from_meshio(mesh) mesh.draw().plot()<jupyter_output><empty_output>
gplugins/notebooks/meshing_02_2D_xy_mesh.ipynb/0
{ "file_path": "gplugins/notebooks/meshing_02_2D_xy_mesh.ipynb", "repo_id": "gplugins", "token_count": 1135 }
89
schema: null instances: mmi1: component: mmi1x2 settings: {gap_mmi: 1.0} mmi2: component: mmi2x2 settings: {gap_mmi: 0.7} s1: component: straight settings: {length: 20, npoints: 2, cross_section: xs_sc} s2: component: straight settings: {length: 40, npoints: 2, cross_section: xs_sc} schematic_placements: mmi1: {x: null, y: null, port: null, rotation: 0.0, dx: -22.832156230736544, dy: -0.9358105716724547, mirror: null} mmi2: {x: null, y: null, port: null, rotation: 0.0, dx: 130.94675850281985, dy: -0.39903161225107286, mirror: null} s1: {x: null, y: null, port: null, rotation: 0.0, dx: 55.26042176045793, dy: 32.1189871057287, mirror: null} s2: {x: null, y: null, port: null, rotation: 0.0, dx: 44.25454877902524, dy: -45.88086750118762, mirror: null} nets: - ['mmi1,o2', 's1,o1'] - ['mmi2,o2', 's1,o2'] - ['mmi1,o3', 's2,o1'] - ['mmi2,o1', 's2,o2'] ports: {o1: 'mmi1,o1', o2: 'mmi2,o3', o3: 'mmi2,o4'} schema_version: 1
gplugins/notebooks/test.schem.yml/0
{ "file_path": "gplugins/notebooks/test.schem.yml", "repo_id": "gplugins", "token_count": 497 }
90
# --- # jupyter: # jupytext: # cell_metadata_filter: -all # text_representation: # extension: .py # format_name: light # format_version: '1.5' # jupytext_version: 1.14.5 # kernelspec: # display_name: kernel_name # language: python # name: kernel_name # --- import kfactory as kf class LAYER(kf.LayerEnum): SI = (1, 0) SIEXCLUDE = (1, 1) si_enc = kf.enclosure.LayerEnclosure([(LAYER.SIEXCLUDE, 2000)])
kfactory/docs/source/layers.py/0
{ "file_path": "kfactory/docs/source/layers.py", "repo_id": "kfactory", "token_count": 228 }
91
"""Euler bends. Euler bends are bends with a constantly changing radius from zero to a maximum radius and back to 0 at the other end. There are two kinds of euler bends. One that snaps the ports and one that doesn't. All the default bends use snapping. To use no snapping make an instance of BendEulerCustom(KCell.kcl) and use that one. """ from ..factories.euler import bend_euler_factory, bend_s_euler_factory from ..kcell import kcl __all__ = [ "bend_euler", "bend_s_euler", ] bend_euler = bend_euler_factory(kcl) bend_s_euler = bend_s_euler_factory(kcl)
kfactory/src/kfactory/cells/euler.py/0
{ "file_path": "kfactory/src/kfactory/cells/euler.py", "repo_id": "kfactory", "token_count": 202 }
92
"""Straight waveguide in dbu. A waveguide is a rectangle of material with excludes and/or slab around it:: ┌──────────────────────────────┐ │ Slab/Exclude │ ├──────────────────────────────┤ │ │ │ Core │ │ │ ├──────────────────────────────┤ │ Slab/Exclude │ └──────────────────────────────┘ The slabs and excludes can be given in the form of an [Enclosure][kfactory.enclosure.LayerEnclosure]. """ from collections.abc import Callable from typing import Any, Protocol from .. import kdb from ..conf import config from ..enclosure import LayerEnclosure from ..kcell import Info, KCell, KCLayout, LayerEnum, MetaData __all__ = ["straight_dbu_factory"] class StraightKCellFactory(Protocol): def __call__( self, width: int, length: int, layer: int | LayerEnum, enclosure: LayerEnclosure | None = None, ) -> KCell: """Waveguide defined in dbu. ┌──────────────────────────────┐ │ Slab/Exclude │ ├──────────────────────────────┤ │ │ │ Core │ │ │ ├──────────────────────────────┤ │ Slab/Exclude │ └──────────────────────────────┘ Args: width: Waveguide width. [dbu] length: Waveguide length. [dbu] layer: Main layer of the waveguide. enclosure: Definition of slab/excludes. [dbu] """ ... def straight_dbu_factory( kcl: KCLayout, additional_info: Callable[ ..., dict[str, MetaData], ] | dict[str, MetaData] | None = None, basename: str | None = None, **cell_kwargs: Any, ) -> StraightKCellFactory: """Returns a function generating straights [dbu]. ┌──────────────────────────────┐ │ Slab/Exclude │ ├──────────────────────────────┤ │ │ │ Core │ │ │ ├──────────────────────────────┤ │ Slab/Exclude │ └──────────────────────────────┘ Args: kcl: The KCLayout which will be owned additional_info: Add additional key/values to the [`KCell.info`][kfactory.kcell.KCell.info]. Can be a static dict mapping info name to info value. Or can a callable which takes the straight functions' parameters as kwargs and returns a dict with the mapping. basename: Overwrite the prefix of the resulting KCell's name. By default the KCell will be named 'straight_dbu[...]'. cell_kwargs: Additional arguments passed as `@kcl.cell(**cell_kwargs)`. """ if callable(additional_info) and additional_info is not None: _additional_info_func: Callable[ ..., dict[str, MetaData], ] = additional_info _additional_info: dict[str, MetaData] = {} else: def additional_info_func( **kwargs: Any, ) -> dict[str, MetaData]: return {} _additional_info_func = additional_info_func _additional_info = additional_info or {} @kcl.cell(basename=basename, **cell_kwargs) def straight( width: int, length: int, layer: int | LayerEnum, enclosure: LayerEnclosure | None = None, ) -> KCell: """Waveguide defined in dbu. ┌──────────────────────────────┐ │ Slab/Exclude │ ├──────────────────────────────┤ │ │ │ Core │ │ │ ├──────────────────────────────┤ │ Slab/Exclude │ └──────────────────────────────┘ Args: width: Waveguide width. [dbu] length: Waveguide length. [dbu] layer: Main layer of the waveguide. enclosure: Definition of slab/excludes. [dbu] """ c = kcl.kcell() if length < 0: config.logger.critical( f"Negative lengths are not allowed {length} as ports" " will be inverted. Please use a positive number. Forcing positive" " lengths." ) length = -length if width < 0: config.logger.critical( f"Negative widths are not allowed {width} as ports" " will be inverted. Please use a positive number. Forcing positive" " lengths." ) width = -width if width // 2 * 2 != width: raise ValueError("The width (w) must be a multiple of 2 database units") c.shapes(layer).insert(kdb.Box(0, -width // 2, length, width // 2)) c.create_port(trans=kdb.Trans(2, False, 0, 0), layer=layer, width=width) c.create_port(trans=kdb.Trans(0, False, length, 0), layer=layer, width=width) if enclosure is not None: enclosure.apply_minkowski_y(c, layer) _info: dict[str, MetaData] = { "width_um": width * c.kcl.dbu, "length_um": length * c.kcl.dbu, "width_dbu": width, "length_dbu": length, } _info.update( _additional_info_func( width=width, length=length, layer=layer, enclosure=enclosure ) ) _info.update(_additional_info) c.info = Info(**_info) c.boundary = c.dbbox() c.auto_rename_ports() return c return straight
kfactory/src/kfactory/factories/straight.py/0
{ "file_path": "kfactory/src/kfactory/factories/straight.py", "repo_id": "kfactory", "token_count": 2960 }
93
"""Can calculate manhattan routes based on ports/transformations.""" from dataclasses import InitVar, dataclass, field from typing import Literal, Protocol from .. import kdb from ..conf import config from ..enclosure import clean_points from ..kcell import KCLayout, Port __all__ = [ "route_manhattan", "route_manhattan_180", "clean_points", "ManhattanRoutePathFunction", "ManhattanRoutePathFunction180", ] class ManhattanRoutePathFunction(Protocol): """Minimal signature of a manhattan function.""" def __call__( self, port1: Port | kdb.Trans, port2: Port | kdb.Trans, bend90_radius: int, start_straight: int, end_straight: int, ) -> list[kdb.Point]: """Minimal kwargs of a manhattan route function.""" ... class ManhattanRoutePathFunction180(Protocol): """Minimal signature of a manhattan function with 180° bend routing.""" def __call__( self, port1: Port | kdb.Trans, port2: Port | kdb.Trans, bend90_radius: int, bend180_radius: int, start_straight: int, end_straight: int, ) -> list[kdb.Point]: """Minimal kwargs of a manhattan route function with 180° bend.""" ... def droute_manhattan_180( port1: kdb.DTrans, port2: kdb.DTrans, bend90_radius: float, bend180_radius: float, start_straight: float, end_straight: float, layout: KCLayout | kdb.Layout, ) -> list[kdb.Point]: """Calculate manhattan route using um based points. Args: port1: Transformation of start port. port2: Transformation of end port. bend90_radius: The radius or (symmetrical) dimension of 90° bend. [um] bend180_radius: The distance between the two ports of the 180° bend. [um] start_straight: Minimum straight after the starting port. [um] end_straight: Minimum straight before the end port. [um] layout: Layout/KCLayout object where to get the dbu info from. Returns: route: Calculated route in points in dbu. """ return route_manhattan_180( port1.to_itype(layout.dbu), port2.to_itype(layout.dbu), int(bend90_radius / layout.dbu), int(bend180_radius / layout.dbu), int(start_straight / layout.dbu), int(end_straight / layout.dbu), ) def route_manhattan_180( port1: Port | kdb.Trans, port2: Port | kdb.Trans, bend90_radius: int, bend180_radius: int, start_straight: int, end_straight: int, ) -> list[kdb.Point]: """Calculate manhattan route using um based points. Args: port1: Transformation of start port. port2: Transformation of end port. bend90_radius: The radius or (symmetrical) dimension of 90° bend. [dbu] bend180_radius: The distance between the two ports of the 180° bend. [dbu] start_straight: Minimum straight after the starting port. [dbu] end_straight: Minimum straight before the end port. [dbu] Returns: route: Calculated route in points in dbu. """ t1 = port1.dup() if isinstance(port1, kdb.Trans) else port1.trans.dup() t2 = port2.dup() if isinstance(port2, kdb.Trans) else port2.trans.dup() _p = kdb.Point(0, 0) p1 = t1 * _p p2 = t2 * _p if t2.disp == t1.disp and t2.angle == t1.angle: raise ValueError("Identically oriented ports cannot be connected") tv = t1.inverted() * (t2.disp - t1.disp) if (t2.angle - t1.angle) % 4 == 2 and tv.y == 0: if tv.x > 0: return [p1, p2] if tv.x == 0: return [] t1 *= kdb.Trans(0, False, start_straight, 0) # t2 *= kdb.Trans(0, False, end_straight, 0) points = [p1] if start_straight != 0 else [] end_points = [t2 * _p, p2] if end_straight != 0 else [p2] tv = t1.inverted() * (t2.disp - t1.disp) if tv.abs() == 0: return points + end_points if (t2.angle - t1.angle) % 4 == 2 and tv.x > 0 and tv.y == 0: return points + end_points match (tv.x, tv.y, (t2.angle - t1.angle) % 4): case (x, y, 0) if x > 0 and abs(y) == bend180_radius: if end_straight > 0: t2 *= kdb.Trans(0, False, end_straight, 0) pts = [t1.disp.to_p(), t2.disp.to_p()] pts[1:1] = [pts[1] + (t2 * kdb.Vector(0, tv.y))] raise NotImplementedError( "`case (x, y, 0) if x > 0 and abs(y) == bend180_radius`" " not supported yet" ) case (x, 0, 2): if start_straight > 0: t1 *= kdb.Trans(0, False, start_straight, 0) if end_straight > 0: t2 *= kdb.Trans(0, False, end_straight, 0) pts = [t1.disp.to_p(), t2.disp.to_p()] pts[1:1] = [ pts[0] + t1 * kdb.Vector(0, bend180_radius), pts[1] + t2 * kdb.Vector(0, bend180_radius), ] if start_straight != 0: pts.insert( 0, (t1 * kdb.Trans(0, False, -start_straight, 0)).disp.to_p(), ) if end_straight != 0: pts.append((t2 * kdb.Trans(0, False, -end_straight, 0)).disp.to_p()) return pts case _: return route_manhattan( t1.dup(), t2.dup(), bend90_radius, start_straight=0, end_straight=end_straight, ) raise NotImplementedError( "Case not supportedt yet. Please open an issue if you believe this is an error" " and needs to be implemented ;)" ) def droute_manhattan( port1: kdb.DTrans, port2: kdb.DTrans, bend90_radius: int, start_straight: int, end_straight: int, layout: KCLayout | kdb.Layout, invert: bool = False, ) -> list[kdb.Point]: """Calculate manhattan route using um based points. Doesn't use any non-90° bends. Args: port1: Transformation of start port. port2: Transformation of end port. bend90_radius: The radius or (symmetrical) dimension of 90° bend. [um] start_straight: Minimum straight after the starting port. [um] end_straight: Minimum straight before the end port. [um] layout: Layout/KCLayout object where to get the dbu info from. invert: Invert the direction in which to route. In the normal behavior, route manhattan will try to take turns first. If true, it will try to route straight as long as possible Returns: route: Calculated route in points in dbu. """ return route_manhattan( port1.to_itype(layout.dbu), port2.to_itype(layout.dbu), int(bend90_radius / layout.dbu), int(start_straight / layout.dbu), int(end_straight / layout.dbu), invert=invert, ) _p = kdb.Point() @dataclass class ManhattanRouter: bend90_radius: int t1: kdb.Trans t2: kdb.Trans = field(default_factory=kdb.Trans) pts: list[kdb.Point] = field(default_factory=list) start_straight: InitVar[int] = 0 end_straight: InitVar[int] = 0 def __post_init__(self, start_straight: int, end_straight: int) -> None: self.t1 = self.t1.dup() self.t2 = self.t2.dup() self.pts.append(self.t1 * _p) self.end_pt = self.t2 * _p self.t2 *= kdb.Trans(end_straight, 0) self.t1.mirror = False self.t2.mirror = False self.straight(start_straight) assert start_straight >= 0, "Start straight must be >= 0" assert end_straight >= 0, "End straight must be >= 0" @property def tv(self) -> kdb.Vector: return self.t1.inverted() * (self.t2.disp - self.t1.disp) @property def ta(self) -> Literal[0, 1, 2, 3]: return (self.t2.angle - self.t1.angle) % 4 # type: ignore[return-value] def right(self) -> None: self.pts.append((self.t1 * kdb.Trans(0, False, self.bend90_radius, 0)) * _p) self.t1 *= kdb.Trans(3, False, self.bend90_radius, -self.bend90_radius) def left(self) -> None: self.pts.append((self.t1 * kdb.Trans(0, False, self.bend90_radius, 0)) * _p) self.t1 *= kdb.Trans(1, False, self.bend90_radius, self.bend90_radius) def straight(self, d: int) -> None: self.t1 *= kdb.Trans(0, False, d, 0) def straight_nobend(self, d: int) -> None: if d < self.bend90_radius: raise ValueError( f"Router cannot go backwards, {d=} must be bigger " f"than {self.bend90_radius=}" ) self.t1 *= kdb.Trans(0, False, d - self.bend90_radius, 0) def auto_route(self, max_try: int = 20) -> list[kdb.Point]: if max_try <= 0: raise ValueError("Router was not able to find a possible route") tv = self.tv x = tv.x y = tv.y y_abs = abs(y) ta = self.ta match ta: case 0: match x, y: case _ if y_abs >= 2 * self.bend90_radius: if x > 0: self.straight(x) if y > 0: self.left() else: self.right() return self.auto_route(max_try - 1) case _: # ports are close to each other ,so need to # route like a P if x < 0: # the straight part of the P is on our side self.straight(max(2 * self.bend90_radius + x, 0)) if y > 0: self.right() else: self.left() return self.auto_route(max_try - 1) case 2: match y: case 0: return self.finish() case y if y_abs < 2 * self.bend90_radius: self.right() if y > 0 else self.left() return self.auto_route(max_try - 1) case _: if y > 0: self.left() self.straight(y_abs - 2 * self.bend90_radius) self.right() else: self.right() self.straight(y_abs - 2 * self.bend90_radius) self.left() return self.finish() case _: # 1/3 cases are just one to the other # with flipped y value and right/left flipped if ta == 3: right = self.right left = self.left _y = y else: right = self.left left = self.right _y = -y if x >= self.bend90_radius and _y >= self.bend90_radius: # straight forward can connect with a single bend self.straight(x - self.bend90_radius) left() return self.finish() if x >= 3 * self.bend90_radius: # enough space to route but need to first make sure we have enough # vertical way (seen from t1) right() return self.auto_route(max_try - 1) if _y >= 3 * self.bend90_radius: # enough to route in the other side left() return self.auto_route(max_try - 1) if _y <= 0 or x <= 0: self.straight(max(x + self.bend90_radius, 0)) right() return self.auto_route(max_try - 1) # attempt small routing config.logger.warning( "route is too small, potential collisions: " f"{self.t1=}; {self.t2=}; {self.pts=}" ) right() self.straight(max(self.bend90_radius - _y, 0)) left() return self.auto_route(max_try - 1) raise ValueError( "Route couldn't find a possible route, please open an issue on Github." f"{self.t1=!r}, {self.t2=!r}, {self.bend90_radius=}\n" f"{self.ta=}, {self.tv=!r}\n" f"{self.pts=}" ) def finish(self) -> list[kdb.Point]: tv = self.tv if self.ta != 2: raise ValueError( "Route is not finished. The transformations must be facing each other" ) if tv.y != 0: raise ValueError( "Route is not finished. The transformations are not properly aligned: " f"Vector (as seen from t1): {tv.x=}, {tv.y=}" ) if self.end_pt != self.pts[-1]: self.pts.append(self.end_pt) return self.pts def route_manhattan( port1: Port | kdb.Trans, port2: Port | kdb.Trans, bend90_radius: int, start_straight: int, end_straight: int, max_tries: int = 20, invert: bool = False, ) -> list[kdb.Point]: """Calculate manhattan route using um based points. Only uses 90° bends. Args: port1: Transformation of start port. port2: Transformation of end port. bend90_radius: The radius or (symmetrical) dimension of 90° bend. [dbu] start_straight: Minimum straight after the starting port. [dbu] end_straight: Minimum straight before the end port. [dbu] max_tries: Maximum number of tries to calculate a manhattan route before giving up invert: Invert the direction in which to route. In the normal behavior, route manhattan will try to take turns first. If true, it will try to route straight as long as possible Returns: route: Calculated route in dbu points. """ if not invert: t1 = port1 if isinstance(port1, kdb.Trans) else port1.trans t2 = port2.dup() if isinstance(port2, kdb.Trans) else port2.trans _start_straight = start_straight _end_straight = end_straight else: t2 = port1 if isinstance(port1, kdb.Trans) else port1.trans t1 = port2 if isinstance(port2, kdb.Trans) else port2.trans _end_straight = start_straight _start_straight = end_straight router = ManhattanRouter( bend90_radius=bend90_radius, t1=t1, t2=t2, start_straight=_start_straight, end_straight=_end_straight, ) pts = router.auto_route() if invert: pts.reverse() return pts def vec_dir(vec: kdb.Vector) -> int: match (vec.x, vec.y): case (x, 0) if x > 0: return 0 case (x, 0) if x < 0: return 2 case (0, y) if y > 0: return 1 case (0, y) if y < 0: return 3 case _: raise ValueError(f"Non-manhattan vectors aren't supported {vec}") def backbone2bundle( backbone: list[kdb.Point], port_widths: list[int], spacings: list[int], ) -> list[list[kdb.Point]]: """Used to extract a bundle from a backbone.""" pts: list[list[kdb.Point]] = [] edges: list[kdb.Edge] = [] dirs: list[int] = [] p1 = backbone[0] for p2 in backbone[1:]: edges.append(kdb.Edge(p1, p2)) dirs.append(vec_dir(p2 - p1)) p1 = p2 width = sum(port_widths) + sum(spacings) x = -width // 2 for pw, spacing in zip(port_widths, spacings): x += pw // 2 + spacing // 2 _pts = [p.dup() for p in backbone] p1 = _pts[0] for p2, e, dir in zip(_pts[1:], edges, dirs): _e = e.shifted(-x) if dir % 2: p1.x = _e.p1.x p2.x = _e.p2.x else: p1.y = _e.p1.y p2.y = _e.p2.y p1 = p2 x += spacing - spacing // 2 + pw - pw // 2 pts.append(_pts) return pts def route_ports_to_bundle( ports_to_route: list[tuple[kdb.Trans, int]], bend_radius: int, bbox: kdb.Box, spacing: int, bundle_base_point: kdb.Point, start_straight: int = 0, end_straight: int = 0, ) -> tuple[dict[kdb.Trans, list[kdb.Point]], kdb.Point]: dir = ports_to_route[0][0].angle dir_trans = kdb.Trans(dir, False, 0, 0) inv_dir_trans = dir_trans.inverted() trans_ports = [ (inv_dir_trans * _trans, _width) for (_trans, _width) in ports_to_route ] bundle_width = sum(tw[1] for tw in trans_ports) + (len(trans_ports) - 1) * spacing trans_mapping = { norm_t: t for (t, _), (norm_t, _) in zip(ports_to_route, trans_ports) } def sort_port(port_width: tuple[kdb.Trans, int]) -> int: return -port_width[0].disp.y def append_straights( straights: list[int], current_straights: list[int], reverse: bool ) -> None: if reverse: straights.extend(reversed(current_straights)) current_straights.clear() else: straights.extend(current_straights) current_straights.clear() sorted_ports = list(sorted(trans_ports, key=sort_port)) base_bundle_position = inv_dir_trans * bundle_base_point bundle_position = base_bundle_position.dup() old_dir = 2 straight: int = 0 straights: list[int] = [] current_straights: list[int] = [] bend_straight_lengths: list[int] = [] bundle_route_y = bundle_position.y + bundle_width // 2 for _trans, _width in sorted_ports: bundle_route_y -= _width // 2 dy = _trans.disp.y - bundle_route_y match dy: case 0: _dir = 0 case y if y > 0: _dir = 1 case _: _dir = -1 changed = _dir != old_dir match dy: case 0: bend_straight_lengths.append(0) append_straights(straights, current_straights, old_dir == -1) current_straights.append(0) straight = _width + spacing old_dir = _dir case y if abs(y) < 2 * bend_radius: bend_straight_lengths.append(4 * bend_radius) if not changed: append_straights(straights, current_straights, old_dir == -1) current_straights.append(0) straight = _width + spacing old_dir = -_dir else: current_straights.append(straight) straight = 0 case _: bend_straight_lengths.append(2 * bend_radius) if changed: append_straights(straights, current_straights, old_dir == -1) current_straights.append(0) straight = _width + spacing else: current_straights.append(straight) straight += _width + spacing old_dir = _dir bundle_route_y -= _width - _width // 2 + spacing append_straights(straights, current_straights, old_dir == -1) bundle_position_x = max( tw[0].disp.x + ss + es + start_straight + end_straight for tw, ss, es in zip(sorted_ports, bend_straight_lengths, straights) ) bundle_position.x = max(bundle_position.x, bundle_position_x) bundle_route_y = bundle_position.y + bundle_width // 2 bundle_route_x = bundle_position.x port_dict: dict[kdb.Trans, list[kdb.Point]] = {} for (_trans, _width), _end_straight in zip(sorted_ports, straights): bundle_route_y -= _width // 2 t_e = kdb.Trans(2, False, bundle_route_x, bundle_route_y) pts = [ dir_trans * p for p in route_manhattan( t_e, _trans, bend90_radius=bend_radius, start_straight=_end_straight + end_straight, end_straight=start_straight, ) ] pts.reverse() port_dict[trans_mapping[_trans]] = pts bundle_route_y -= _width - _width // 2 + spacing return port_dict, dir_trans * bundle_position def route_ports_side( dir: Literal[1, -1], ports_to_route: list[tuple[kdb.Trans, int]], existing_side_ports: list[tuple[kdb.Trans, int]], bend_radius: int, bbox: kdb.Box, spacing: int, start_straight: int = 0, ) -> dict[kdb.Trans, list[kdb.Point]]: _ports_dir = ports_to_route[0][0].angle _dir = (_ports_dir + dir) % 4 _attr = "y" if _ports_dir % 2 else "x" _inv_rot = kdb.Trans(_ports_dir, False, 0, 0).inverted() _pts = [ kdb.Point(0, 0), kdb.Point(bend_radius, 0), kdb.Point(bend_radius, dir * bend_radius), ] def base_pts(trans: kdb.Trans, start_straight: int) -> list[kdb.Point]: pts = [p.dup() for p in _pts] for pt in pts[1:]: pt.x = pt.x + start_straight return [trans * p for p in pts] pts_dict: dict[kdb.Trans, list[kdb.Point]] = {} ports_to_route.sort(key=lambda port_width: -dir * (_inv_rot * port_width[0]).disp.y) start_straight = 0 for trans, width in ports_to_route: _trans = kdb.Trans(_ports_dir, False, trans.disp.x, trans.disp.y) pts_dict[trans] = base_pts(_trans, start_straight=start_straight) start_straight += width + spacing return pts_dict
kfactory/src/kfactory/routing/manhattan.py/0
{ "file_path": "kfactory/src/kfactory/routing/manhattan.py", "repo_id": "kfactory", "token_count": 10951 }
94
import kfactory as kf def test_shapes(LAYER: kf.LayerEnum) -> None: kc = kf.KCell() kc.shapes(LAYER.WG).insert(kf.kdb.Text())
kfactory/tests/test_shapes.py/0
{ "file_path": "kfactory/tests/test_shapes.py", "repo_id": "kfactory", "token_count": 70 }
95
```{include} ../CHANGELOG.md ```
kgeneric/docs/changelog.md/0
{ "file_path": "kgeneric/docs/changelog.md", "repo_id": "kgeneric", "token_count": 17 }
96
"""Provides straight waveguides in dbu and um versions. A straight is a rectangle of material with excludes and/or slab around it:: ┌─────────────────────────────┐ │ Slab/Exclude │ ├─────────────────────────────┤ │ │ │ Core │ │ │ ├─────────────────────────────┤ │ Slab/Exclude │ └─────────────────────────────┘ The slabs and excludes can be given in the form of an :py:class:~`Enclosure`. """ from kfactory import KCell, LayerEnum, kcl from kfactory.enclosure import LayerEnclosure from kgeneric.cells.dbu.straight import straight as straight_dbu __all__ = ["straight", "straight_dbu"] def straight( width: float, length: float, layer: int | LayerEnum, enclosure: LayerEnclosure | None = None, ) -> KCell: """Straight straight in um. Visualization:: ┌─────────────────────────────┐ │ Slab/Exclude │ ├─────────────────────────────┤ │ │ │ Core │ │ │ ├─────────────────────────────┤ │ Slab/Exclude │ └─────────────────────────────┘ Args: width: Width of the straight. [um] length: Length of the straight. [um] layer: Layer index / :py:class:~`LayerEnum` enclosure: Definition of slabs/excludes. [um] """ return straight_dbu( int(width / kcl.dbu), int(length / kcl.dbu), layer, enclosure=enclosure ) if __name__ == "__main__": from kgeneric.layers import LAYER c = straight(width=1, length=10, layer=LAYER.WG) c.show()
kgeneric/kgeneric/cells/straight.py/0
{ "file_path": "kgeneric/kgeneric/cells/straight.py", "repo_id": "kgeneric", "token_count": 830 }
97
include requirements.txt include README.md include LICENSE
klayout_pyxs/MANIFEST.in/0
{ "file_path": "klayout_pyxs/MANIFEST.in", "repo_id": "klayout_pyxs", "token_count": 15 }
98
import math VERBOSE = True OFFSET = 0 def info(*s): """Print information with offset. Parameters ---------- s : str string to be printed """ if VERBOSE: print(" " * OFFSET, *s) def print_info(v=True): """Decorator to show / disable function output to the console. Parameters ---------- v : bool it False, all info() inside the function will be disabled. """ def decorator(f): def wrapper(*args, **kwargs): global VERBOSE global OFFSET old_v = VERBOSE VERBOSE = v if v: OFFSET += 4 info(f"{f.__name__}():") res = f(*args, **kwargs) info(f"end of {f.__name__}()\n") if v: OFFSET -= 4 VERBOSE = old_v return res return wrapper return decorator def int_floor(x): """Floor a float value and return int Returns ------- res : int int(math.floor(x)) Examples -------- >>> int_floor(1.5) 1 >>> int_floor(1.2) 1 >>> int_floor(1.8) 1 >>> int_floor(-1.2) -2 >>> int_floor(-1.5) -2 >>> int_floor(-1.8) -2 """ return int(math.floor(x)) def _check_type(instance, typ, caller=""): """Check type of an object Parameters ---------- caller : str caller name. Used for more informative error messages. """ if not isinstance(instance, typ): caller_str = f"'{caller}': " if caller != "" else "" raise TypeError( f"{caller_str}Argument must be an instance of {typ}. {type(instance)} is given" ) def make_iterable(v): return v if (v is None) or (type(v) in (list, tuple)) else [v] def main(): import doctest doctest.testmod() if __name__ == "__main__": main()
klayout_pyxs/klayout_package/python/klayout_pyxs/utils.py/0
{ "file_path": "klayout_pyxs/klayout_package/python/klayout_pyxs/utils.py", "repo_id": "klayout_pyxs", "token_count": 897 }
99
l1 = layer("1/0") substrate = bulk() mask(l1.sized(0.1)).etch(0.3, taper=30, into=substrate) step1 = substrate.dup() mask(l1.inverted()).etch(0.2, into=substrate) step2 = substrate.dup() mask(l1.inverted()).etch(0.2, 0.1, mode='round', into=substrate) step3 = substrate.dup() mask(l1.inverted()).etch(0.2, into=substrate) output("100/0", bulk()) output("101/0", step1) output("102/0", step2) output("103/0", step3) output("104/0", substrate)
klayout_pyxs/tests/xs_etch10.pyxs/0
{ "file_path": "klayout_pyxs/tests/xs_etch10.pyxs", "repo_id": "klayout_pyxs", "token_count": 196 }
100
# This script tests output_all() function. # It accepts a dictionary as an output_layers parameter. # Keys are layer specifications, and values are LayoutData instances. l1 = layer("1/0") substrate = bulk() m1 = mask(l1).grow(0.2, bias=-0.2, taper=20) etch(0.1, into=[substrate, m1]) output_layers = { "100/0": bulk(), "101/0": substrate, "102/0": m1, } output_all(output_layers=output_layers)
klayout_pyxs/tests/xs_misc4.pyxs/0
{ "file_path": "klayout_pyxs/tests/xs_misc4.pyxs", "repo_id": "klayout_pyxs", "token_count": 159 }
101
```{include} ../CHANGELOG.md ```
kplugins/docs/changelog.md/0
{ "file_path": "kplugins/docs/changelog.md", "repo_id": "kplugins", "token_count": 17 }
102
repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: "v4.5.0" hooks: - id: check-added-large-files exclude: | (?x)^( dodata/docs/_static/.* )$ - id: check-case-conflict - id: check-merge-conflict - id: check-symlinks - id: check-yaml - id: debug-statements # - id: end-of-file-fixer # - id: mixed-line-ending # - id: name-tests-test # args: ["--pytest-test-first"] # - id: trailing-whitespace - repo: https://github.com/charliermarsh/ruff-pre-commit rev: "v0.2.0" hooks: - id: ruff - repo: https://github.com/djlint/djLint rev: v1.34.1 hooks: - id: djlint-reformat-jinja files: "\\.html" types_or: ['html'] exclude: | (?x)^( src/kweb/static/bootstrap/.* )$ - id: djlint-jinja files: "\\.html" types_or: ['html'] exclude: | (?x)^( src/kweb/static/bootstrap/.* )$ - repo: https://github.com/shellcheck-py/shellcheck-py rev: v0.9.0.6 hooks: - id: shellcheck - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks rev: v2.12.0 hooks: - id: pretty-format-toml args: [--autofix] - repo: https://github.com/codespell-project/codespell rev: v2.2.6 hooks: - id: codespell additional_dependencies: - tomli exclude: | (?x)^( src/kweb/static/bootstrap/.* )$ - repo: https://github.com/kynan/nbstripout rev: 0.7.1 hooks: - id: nbstripout files: ".ipynb"
kweb/.pre-commit-config.yaml/0
{ "file_path": "kweb/.pre-commit-config.yaml", "repo_id": "kweb", "token_count": 930 }
103
from pathlib import Path from fastapi import Depends, FastAPI from fastapi.staticfiles import StaticFiles from pydantic import ValidationError from . import config from .api.browser import router as browser_router from .api.viewer import router as viewer_router from .layout_server import EditableLayoutViewServerEndpoint, LayoutViewServerEndpoint def get_app(fileslocation: Path | str | None = None, editable: bool = False) -> FastAPI: if fileslocation is None: def settings() -> config.Config: try: return config.Config() except ValidationError: raise ValueError( "To start the Kweb please set the environment " "variable KWEB_FILESLOCATION to a path in your filesystem." " Alternatively, you can set the filepath in the get_app function." ) else: def settings() -> config.Config: return config.Config(fileslocation=fileslocation) staticfiles = StaticFiles(directory=Path(__file__).parent / "static") # app = FastAPI(routes=[WebSocketRoute("/ws", endpoint=LayoutViewServerEndpoint)]) app = FastAPI() viewer_router.dependencies.insert(0, Depends(settings)) browser_router.dependencies.insert(0, Depends(settings)) if editable: app.add_websocket_route("/ws", EditableLayoutViewServerEndpoint) else: app.add_websocket_route("/ws", LayoutViewServerEndpoint) viewer_router.dependencies.insert(0, Depends(settings)) app.include_router(viewer_router) app.include_router(browser_router) app.mount("/static", staticfiles, name="kweb_static") return app
kweb/src/kweb/browser.py/0
{ "file_path": "kweb/src/kweb/browser.py", "repo_id": "kweb", "token_count": 637 }
104
ws_url = ws_url.replace("http://","ws://"); ws_url = ws_url.replace("https://","wss://"); let url; if (cell) { url = ws_url + '/ws?' + "file=" + file + "&layer_props=" + layer_props + "&cell=" + cell; } else { url = ws_url + '/ws?' + "file=" + file + "&layer_props=" + layer_props; } let canvas = document.getElementById("layout_canvas"); let context = canvas.getContext("2d"); let message = document.getElementById("message"); let socket = new WebSocket(url); socket.binaryType = "blob"; let initialized = false; async function initializeWebSocket() { await new Promise((resolve) => { // Installs a handler called when the connection is established socket.onopen = function(evt) { let ev = { msg: "initialize", width: canvas.width, height: canvas.height }; socket.send(JSON.stringify(ev)); resolve(); // Resolve the promise when the WebSocket is ready }; }); // Call resizeCanvas the first time resizeCanvas(); } // Installs a handler for the messages delivered by the web socket socket.onmessage = function(evt) { let data = evt.data; if (typeof(data) === "string") { js = JSON.parse(data); if (js.msg == "initialized") { initialized = true; } else if (js.msg == "loaded") { showLayers(js.layers); showMenu(js.modes, js.annotations); showCells(js.hierarchy, js.ci) } else if (js.msg == "layer-u") { updateLayerImages(js.layers) } } else if (initialized) { // incoming blob messages are paint events createImageBitmap(data).then(function(image) { context.drawImage(image, 0, 0) }); } }; socket.onclose = evt => console.log(`Closed ${evt.code}`); function mouseEventToJSON(canvas, type, evt) { let rect = canvas.getBoundingClientRect(); let x = evt.clientX - rect.left; let y = evt.clientY - rect.top; let keys = 0; if (evt.shiftKey) { keys += 1; } if (evt.ctrlKey) { keys += 2; } if (evt.altKey) { keys += 4; } return { msg: type, x: x, y: y, b: evt.buttons, k: keys }; } function sendMouseEvent(canvas, type, evt) { if (socket.readyState == WebSocket.OPEN /*OPEN*/) { let ev = mouseEventToJSON(canvas, type, evt); socket.send(JSON.stringify(ev)); } } function sendWheelEvent(canvas, type, evt) { if (socket.readyState == WebSocket.OPEN /*OPEN*/) { let ev = mouseEventToJSON(canvas, type, evt); ev.dx = evt.deltaX; ev.dy = evt.deltaY; ev.dm = evt.deltaMode; socket.send(JSON.stringify(ev)); } } function sendKeyEvent(canvas, type, evt) { if (socket.readyState == WebSocket.OPEN) { socket.send(JSON.stringify({ msg: type, k: evt.keyCode })); } } let lastCanvasWidth = 0; let lastCanvasHeight = 0; function resizeCanvas() { let view = document.getElementById('layout-view'); let w = canvas.clientWidth; let h = canvas.clientHeight; view.height = view.parentElement.clientHeight; if (lastCanvasWidth !== w || lastCanvasHeight !== h) { lastCanvasWidth = w; lastCanvasHeight = h; canvas.width = w; canvas.height = h; if (socket.readyState === WebSocket.OPEN) { socket.send(JSON.stringify({ msg: "resize", width: w, height: h })); } else if (socket.readyState === WebSocket.CONNECTING){ } else { console.error(socket.readyState) } } } initializeWebSocket(); setInterval(resizeCanvas, 10); // Call resizeCanvas every 10ms window.addEventListener("resize", function() { if (initialized) { resizeCanvas(); } }); // Updates the Menu function showMenu(modes, annotations) { let modeElement = document.getElementById("modes"); modeElement.childNodes = new Array(); let modeRow = document.createElement("div"); modeRow.className = "btn-group flex-wrap"; modeRow.setAttribute("role", "group"); modeRow.role = "group"; modeRow.aria_label = "Layout Mode Selection" modeRow.id = "mode-row"; modeRow.childNodes = new Array(); modeElement.appendChild(modeRow); modes.forEach(function(m, i) { let inner = document.createElement("input"); inner.value = m; inner.type = "radio"; inner.className = "btn-check"; inner.id = "btnradio" + m; inner.setAttribute("name", "radiomode"); if (i==0) { inner.setAttribute("checked", ""); } inner.onclick = function() { socket.send(JSON.stringify({ msg: "select-mode", value: m })); }; let innerlabel = document.createElement("label"); innerlabel.textContent = m; innerlabel.className = "btn btn-outline-primary"; innerlabel.setAttribute("for", "btnradio" + m); modeRow.appendChild(inner); modeRow.appendChild(innerlabel); }); let menuElement = document.getElementById("menu"); let clearRulers = document.createElement("button"); clearRulers.textContent = "Clear Rulers"; clearRulers.className = "col-auto btn btn-primary mx-2"; clearRulers.setAttribute("type", "button"); clearRulers.onclick = function() { socket.send(JSON.stringify({ msg: "clear-annotations" })); }; menuElement.appendChild(clearRulers); let zoomFit= document.createElement("button"); zoomFit.textContent = "Zoom Fit"; zoomFit.className = "col-auto btn btn-primary mx-2"; zoomFit.setAttribute("type", "button"); zoomFit.onclick = function() { socket.send(JSON.stringify({ msg: "zoom-f" })); }; menuElement.appendChild(zoomFit); let index = 0; annotations.forEach(function(a) { let option = document.createElement("option"); option.value = index; option.text = a; rulersSelect.appendChild(option); index += 1; }); } function selectCell(cell_index) { socket.send(JSON.stringify( { "msg": "ci-s", "ci": cell_index, "zoom-fit": true, } )) } function selectCellByName(cell_name) { let currentURL = new URL(window.location.href); currentURL.searchParams.set("cell", cell_name) window.history.replaceState({}, '', currentURL.toString()) socket.send(JSON.stringify( { "msg": "cell-s", "cell": cell_name, "zoom-fit": true, } )) } // Updates the layer list function showCells(cells, current_index) { let layerElement = document.getElementById("cells-tab-pane"); layerElement.replaceChildren(); appendCells(layerElement, cells, current_index) } // create table rows for each layer function appendCells(parentelement, cells, current_index, addpadding=false) { let lastelement = null; cells.forEach(function(c, i) { let cellRow = document.createElement("div"); cellRow.className = "row mx-0"; parentelement.appendChild(cellRow); if (c.children.length > 0) { let accordion = document.createElement("div"); if (addpaddings){ accordion.className = "accordion accordion-flush px-2"; } else { accordion.className = "accordion accordion-flush ps-2 pe-0"; } accordion.id = "cellgroup-" + c.id; cellRow.appendChild(accordion); accordion_item = document.createElement("div"); accordion_item.className = "accordion-item"; accordion.appendChild(accordion_item); accordion_header = document.createElement("div"); accordion_header.className = "accordion-header d-flex flex-row"; accordion_item.appendChild(accordion_header); accordion_header_button = document.createElement("button"); accordion_header_button.className = "accordion-button p-0 w-auto border-bottom"; accordion_header_button.setAttribute("type", "button"); accordion_header_button.setAttribute("data-bs-toggle", "collapse"); accordion_header_button.setAttribute("data-bs-target", "#collapseGroup" + c.id); accordion_header_button.setAttribute("aria-expanded", "true"); accordion_header_button.setAttribute("aria-controls", "collapseGroup" + c.id); let cell_name_button = document.createElement("input"); cell_name_button.className = "btn-check"; cell_name_button.setAttribute("type", "radio"); cell_name_button.setAttribute("name", "option-base"); cell_name_button.id = "cell-" + c.id; cell_name_button.setAttribute("autocomplete", "off"); if (c.id == current_index) { cell_name_button.setAttribute("checked", "") } cell_name_button.addEventListener("change", function(){ selectCellByName(c.name); }); let cell_name = document.createElement("label"); cell_name.innerHTML = c.name; cell_name.className = "btn btn-dark w-100 text-start p-0"; cell_name.setAttribute("for", "cell-" + c.id); accordion_row = document.createElement("div"); accordion_row.className = "mx-0 border-bottom flex-grow-1"; accordion_row.appendChild(cell_name_button); accordion_row.appendChild(cell_name); accordion_header.appendChild(accordion_row); accordion_header.appendChild(accordion_header_button); accordion_collapse = document.createElement("div") accordion_collapse.className = "accordion-collapse show"; accordion_collapse.setAttribute("data-bs-parent", "#" + accordion.id); accordion_collapse.id = "collapseGroup" + c.id; accordion_item.appendChild(accordion_collapse); accordion_body = document.createElement("div"); accordion_body.className = "accordion-body p-0"; accordion_collapse.appendChild(accordion_body); appendCells(accordion_body, c.children, current_index, true); lastelement = accordion; } else { let cell_name_button = document.createElement("input"); cell_name_button.className = "btn-check"; cell_name_button.setAttribute("type", "radio"); cell_name_button.setAttribute("name", "option-base"); cell_name_button.id = "cell-" + c.id; cell_name_button.setAttribute("autocomplete", "off"); cell_name_button.addEventListener("change", function(){ selectCellByName(c.name); }); if (c.id == current_index) { cell_name_button.setAttribute("checked", "") } let cell_name = document.createElement("label"); cell_name.innerHTML = c.name; cell_name.className = "btn btn-dark text-start p-0"; cell_name.setAttribute("for", "cell-" + c.id); accordion_row = document.createElement("div"); accordion_row = document.createElement("row"); accordion_row.className = "row mx-0"; accordion_row.appendChild(cell_name_button); accordion_row.appendChild(cell_name); let accordion = document.createElement("div"); if (addpaddings) { accordion.className = "accordion accordion-flush ps-2 pe-0"; } else { accordion.className = "accordion accordion-flush px-0"; } accordion.id = "cellgroup-" + c.id; cellRow.appendChild(accordion); accordion_item = document.createElement("div"); accordion_item.className = "accordion-item"; accordion.appendChild(accordion_item); accordion_header = document.createElement("div"); accordion_header.className = "accordion-header"; accordion_item.appendChild(accordion_header) accordion_header.appendChild(accordion_row); lastelement = accordion } }); if (addpaddings && lastelement) { lastelement.classList.add("pb-2"); } } // Updates the layer list function showLayers(layers) { let layerElement = document.getElementById("layers-tab-pane"); let layerButtons = document.getElementById("layer-buttons"); let layerSwitch = document.getElementById("layerEmptySwitch"); let layerTable = document.getElementById("table-layer") || document.createElement("div"); layerTable.id = "table-layer"; layerTable.className = "container-fluid text-left px-0 pb-2"; layerElement.replaceChildren(layerButtons, layerTable); appendLayers(layerTable, layers, addempty=!layerSwitch.checked, addpaddings=true); layerSwitch.addEventListener("change", function() { layerTable.replaceChildren(); appendLayers(layerTable, layers, addempty=!this.checked, addpaddings=true); }); } // create table rows for each layer function appendLayers(parentelement, layers, addempty=false, addpaddings = false) { let lastelement = null; layers.forEach(function(l, i) { if (addempty || !l.empty) { let layerRow = document.createElement("div"); layerRow.className = "row mx-0"; parentelement.appendChild(layerRow); if ("children" in l) { let accordion = document.createElement("div"); if (addpaddings){ accordion.className = "accordion accordion-flush px-2"; } else { accordion.className = "accordion accordion-flush ps-2 pe-0"; } accordion.id = "layergroup-" + l.id; layerRow.appendChild(accordion); accordion_item = document.createElement("div"); accordion_item.className = "accordion-item"; accordion.appendChild(accordion_item); accordion_header = document.createElement("div"); accordion_header.className = "accordion-header d-flex flex-row"; accordion_item.appendChild(accordion_header); accordion_header_button = document.createElement("button"); accordion_header_button.className = "accordion-button p-0 flex-grow-1"; accordion_header_button.setAttribute("type", "button"); accordion_header_button.setAttribute("data-bs-toggle", "collapse"); accordion_header_button.setAttribute("data-bs-target", "#collapseGroup" + l.id); accordion_header_button.setAttribute("aria-expanded", "true"); accordion_header_button.setAttribute("aria-controls", "collapseGroup" + l.id); let img_cont = document.createElement("div"); img_cont.className = "col-auto p-0"; let layer_image = document.createElement("img"); layer_image.src = "data:image/png;base64," + l.img; layer_image.style = "max-width: 100%;"; layer_image.id = "layer-img-" + l.id; layer_image.className = "layer-img"; function click_layer_img() { l.v = !l.v; let ev = { msg: "layer-v", id: l.id, value: l.v}; socket.send(JSON.stringify(ev)); } layer_image.addEventListener("click", click_layer_img); img_cont.appendChild(layer_image); let layer_name = document.createElement("div"); layer_name.innerHTML = l.name; layer_name.className = "col"; let layer_source = document.createElement("div"); layer_source.innerHTML = l.s; layer_source.className = "col-auto"; accordion_row = document.createElement("div"); accordion_row.className = "row mx-0"; accordion_header.insertBefore(img_cont, accordion_header.firstChild); accordion_row.appendChild(layer_name); accordion_row.appendChild(layer_source); accordion_header_button.appendChild(accordion_row); accordion_header.appendChild(accordion_header_button); accordion_collapse = document.createElement("div") accordion_collapse.className = "accordion-collapse show"; accordion_collapse.setAttribute("data-bs-parent", "#" + accordion.id); accordion_collapse.id = "collapseGroup" + l.id; accordion_item.appendChild(accordion_collapse); accordion_body = document.createElement("div"); accordion_body.className = "accordion-body p-0"; accordion_collapse.appendChild(accordion_body); appendLayers(accordion_body, l.children, addempty=addempty); lastelement = accordion; } else { let img_cont = document.createElement("div"); img_cont.className = "col-auto p-0"; let layer_image = document.createElement("img"); layer_image.src = "data:image/png;base64," + l.img; layer_image.style = "max-width: 100%;"; layer_image.id = "layer-img-" + l.id; layer_image.className = "layer-img"; function click_layer_img() { l.v = !l.v; let ev = { msg: "layer-v", id: l.id, value: l.v}; socket.send(JSON.stringify(ev)); } layer_image.addEventListener("click", click_layer_img); img_cont.appendChild(layer_image); let layer_name = document.createElement("div"); layer_name.innerHTML = l.name; layer_name.className = "col"; let layer_source = document.createElement("div"); layer_source.innerHTML = l.s; layer_source.className = "col-auto pe-0"; accordion_row = document.createElement("row"); accordion_row.className = "row mx-0"; accordion_row.appendChild(img_cont); accordion_row.appendChild(layer_name); accordion_row.appendChild(layer_source); let accordion = document.createElement("div"); if (addpaddings) { accordion.className = "accordion accordion-flush px-2"; } else { accordion.className = "accordion accordion-flush ps-2 pe-0"; } accordion.id = "layergroup-" + l.id; layerRow.appendChild(accordion); accordion_item = document.createElement("div"); accordion_item.className = "accordion-item"; accordion.appendChild(accordion_item); accordion_header = document.createElement("div"); accordion_header.className = "accordion-header"; accordion_item.appendChild(accordion_header) accordion_header.appendChild(accordion_row); lastelement = accordion } } }); if (addpaddings && lastelement) { lastelement.classList.add("pb-2"); } } function updateLayerImages(layers) { layers.forEach(function(l) { let layer_image = document.getElementById("layer-img-"+l.id); layer_image.src = "data:image/png;base64," + l.img; if ("children" in l) { updateLayerImages(l.children); } }); } // Prevents the context menu to show up over the canvas area canvas.addEventListener('contextmenu', function(evt) { evt.preventDefault(); }); canvas.addEventListener('mousemove', function (evt) { sendMouseEvent(canvas, "mouse_move", evt); evt.preventDefault(); }, false); canvas.addEventListener('click', function (evt) { sendMouseEvent(canvas, "mouse_click", evt); evt.preventDefault(); }, false); canvas.addEventListener('dblclick', function (evt) { sendMouseEvent(canvas, "mouse_dblclick", evt); evt.preventDefault(); }, false); canvas.addEventListener('mousedown', function (evt) { sendMouseEvent(canvas, "mouse_pressed", evt); evt.preventDefault(); }, false); canvas.addEventListener('mouseup', function (evt) { sendMouseEvent(canvas, "mouse_released", evt); evt.preventDefault(); }, false); canvas.addEventListener('mouseenter', function (evt) { sendMouseEvent(canvas, "mouse_enter", evt); evt.preventDefault(); }, false); canvas.addEventListener('mouseout', function (evt) { sendMouseEvent(canvas, "mouse_leave", evt); evt.preventDefault(); }, false); canvas.addEventListener('wheel', function (evt) { sendWheelEvent(canvas, "wheel", evt); evt.preventDefault(); }, false); window.addEventListener("keydown", function(evt) { // Check if the pressed key is the "Escape" key if (evt.key === "Escape" || evt.keyCode === 27) { evt.preventDefault(); sendKeyEvent(canvas, "keydown", evt); } });
kweb/src/kweb/static/viewer.js/0
{ "file_path": "kweb/src/kweb/static/viewer.js", "repo_id": "kweb", "token_count": 7497 }
105
Cells ============================= .. currentmodule:: sky130.components .. autosummary:: :toctree: _autosummary/ sky130_fd_sc_hd__a2111o_1 sky130_fd_sc_hd__a2111o_2 sky130_fd_sc_hd__a2111o_4 sky130_fd_sc_hd__a2111oi_0 sky130_fd_sc_hd__a2111oi_1 sky130_fd_sc_hd__a2111oi_2 sky130_fd_sc_hd__a2111oi_4 sky130_fd_sc_hd__a211o_1 sky130_fd_sc_hd__a211o_2 sky130_fd_sc_hd__a211o_4 sky130_fd_sc_hd__a211oi_1 sky130_fd_sc_hd__a211oi_2 sky130_fd_sc_hd__a211oi_4 sky130_fd_sc_hd__a21bo_1 sky130_fd_sc_hd__a21bo_2 sky130_fd_sc_hd__a21bo_4 sky130_fd_sc_hd__a21boi_0 sky130_fd_sc_hd__a21boi_1 sky130_fd_sc_hd__a21boi_2 sky130_fd_sc_hd__a21boi_4 sky130_fd_sc_hd__a21o_1 sky130_fd_sc_hd__a21o_2 sky130_fd_sc_hd__a21o_4 sky130_fd_sc_hd__a21oi_1 sky130_fd_sc_hd__a21oi_2 sky130_fd_sc_hd__a21oi_4 sky130_fd_sc_hd__a221o_1 sky130_fd_sc_hd__a221o_2 sky130_fd_sc_hd__a221o_4 sky130_fd_sc_hd__a221oi_1 sky130_fd_sc_hd__a221oi_2 sky130_fd_sc_hd__a221oi_4 sky130_fd_sc_hd__a222oi_1 sky130_fd_sc_hd__a22o_1 sky130_fd_sc_hd__a22o_2 sky130_fd_sc_hd__a22o_4 sky130_fd_sc_hd__a22oi_1 sky130_fd_sc_hd__a22oi_2 sky130_fd_sc_hd__a22oi_4 sky130_fd_sc_hd__a2bb2o_1 sky130_fd_sc_hd__a2bb2o_2 sky130_fd_sc_hd__a2bb2o_4 sky130_fd_sc_hd__a2bb2oi_1 sky130_fd_sc_hd__a2bb2oi_2 sky130_fd_sc_hd__a2bb2oi_4 sky130_fd_sc_hd__a311o_1 sky130_fd_sc_hd__a311o_2 sky130_fd_sc_hd__a311o_4 sky130_fd_sc_hd__a311oi_1 sky130_fd_sc_hd__a311oi_2 sky130_fd_sc_hd__a311oi_4 sky130_fd_sc_hd__a31o_1 sky130_fd_sc_hd__a31o_2 sky130_fd_sc_hd__a31o_4 sky130_fd_sc_hd__a31oi_1 sky130_fd_sc_hd__a31oi_2 sky130_fd_sc_hd__a31oi_4 sky130_fd_sc_hd__a32o_1 sky130_fd_sc_hd__a32o_2 sky130_fd_sc_hd__a32o_4 sky130_fd_sc_hd__a32oi_1 sky130_fd_sc_hd__a32oi_2 sky130_fd_sc_hd__a32oi_4 sky130_fd_sc_hd__a41o_1 sky130_fd_sc_hd__a41o_2 sky130_fd_sc_hd__a41o_4 sky130_fd_sc_hd__a41oi_1 sky130_fd_sc_hd__a41oi_2 sky130_fd_sc_hd__a41oi_4 sky130_fd_sc_hd__and2_0 sky130_fd_sc_hd__and2_1 sky130_fd_sc_hd__and2_2 sky130_fd_sc_hd__and2_4 sky130_fd_sc_hd__and2b_1 sky130_fd_sc_hd__and2b_2 sky130_fd_sc_hd__and2b_4 sky130_fd_sc_hd__and3_1 sky130_fd_sc_hd__and3_2 sky130_fd_sc_hd__and3_4 sky130_fd_sc_hd__and3b_1 sky130_fd_sc_hd__and3b_2 sky130_fd_sc_hd__and3b_4 sky130_fd_sc_hd__and4_1 sky130_fd_sc_hd__and4_2 sky130_fd_sc_hd__and4_4 sky130_fd_sc_hd__and4b_1 sky130_fd_sc_hd__and4b_2 sky130_fd_sc_hd__and4b_4 sky130_fd_sc_hd__and4bb_1 sky130_fd_sc_hd__and4bb_2 sky130_fd_sc_hd__and4bb_4 sky130_fd_sc_hd__buf_1 sky130_fd_sc_hd__buf_12 sky130_fd_sc_hd__buf_16 sky130_fd_sc_hd__buf_2 sky130_fd_sc_hd__buf_4 sky130_fd_sc_hd__buf_6 sky130_fd_sc_hd__buf_8 sky130_fd_sc_hd__bufbuf_16 sky130_fd_sc_hd__bufbuf_8 sky130_fd_sc_hd__bufinv_16 sky130_fd_sc_hd__bufinv_8 sky130_fd_sc_hd__clkbuf_1 sky130_fd_sc_hd__clkbuf_16 sky130_fd_sc_hd__clkbuf_2 sky130_fd_sc_hd__clkbuf_4 sky130_fd_sc_hd__clkbuf_8 sky130_fd_sc_hd__clkdlybuf4s15_1 sky130_fd_sc_hd__clkdlybuf4s15_2 sky130_fd_sc_hd__clkdlybuf4s18_1 sky130_fd_sc_hd__clkdlybuf4s18_2 sky130_fd_sc_hd__clkdlybuf4s25_1 sky130_fd_sc_hd__clkdlybuf4s25_2 sky130_fd_sc_hd__clkdlybuf4s50_1 sky130_fd_sc_hd__clkdlybuf4s50_2 sky130_fd_sc_hd__clkinv_1 sky130_fd_sc_hd__clkinv_16 sky130_fd_sc_hd__clkinv_2 sky130_fd_sc_hd__clkinv_4 sky130_fd_sc_hd__clkinv_8 sky130_fd_sc_hd__clkinvlp_2 sky130_fd_sc_hd__clkinvlp_4 sky130_fd_sc_hd__conb_1 sky130_fd_sc_hd__decap_12 sky130_fd_sc_hd__decap_3 sky130_fd_sc_hd__decap_4 sky130_fd_sc_hd__decap_6 sky130_fd_sc_hd__decap_8 sky130_fd_sc_hd__dfbbn_1 sky130_fd_sc_hd__dfbbn_2 sky130_fd_sc_hd__dfbbp_1 sky130_fd_sc_hd__dfrbp_1 sky130_fd_sc_hd__dfrbp_2 sky130_fd_sc_hd__dfrtn_1 sky130_fd_sc_hd__dfrtp_1 sky130_fd_sc_hd__dfrtp_2 sky130_fd_sc_hd__dfrtp_4 sky130_fd_sc_hd__dfsbp_1 sky130_fd_sc_hd__dfsbp_2 sky130_fd_sc_hd__dfstp_1 sky130_fd_sc_hd__dfstp_2 sky130_fd_sc_hd__dfstp_4 sky130_fd_sc_hd__dfxbp_1 sky130_fd_sc_hd__dfxbp_2 sky130_fd_sc_hd__dfxtp_1 sky130_fd_sc_hd__dfxtp_2 sky130_fd_sc_hd__dfxtp_4 sky130_fd_sc_hd__diode_2 sky130_fd_sc_hd__dlclkp_1 sky130_fd_sc_hd__dlclkp_2 sky130_fd_sc_hd__dlclkp_4 sky130_fd_sc_hd__dlrbn_1 sky130_fd_sc_hd__dlrbn_2 sky130_fd_sc_hd__dlrbp_1 sky130_fd_sc_hd__dlrbp_2 sky130_fd_sc_hd__dlrtn_1 sky130_fd_sc_hd__dlrtn_2 sky130_fd_sc_hd__dlrtn_4 sky130_fd_sc_hd__dlrtp_1 sky130_fd_sc_hd__dlrtp_2 sky130_fd_sc_hd__dlrtp_4 sky130_fd_sc_hd__dlxbn_1 sky130_fd_sc_hd__dlxbn_2 sky130_fd_sc_hd__dlxbp_1 sky130_fd_sc_hd__dlxtn_1 sky130_fd_sc_hd__dlxtn_2 sky130_fd_sc_hd__dlxtn_4 sky130_fd_sc_hd__dlxtp_1 sky130_fd_sc_hd__dlygate4sd1_1 sky130_fd_sc_hd__dlygate4sd2_1 sky130_fd_sc_hd__dlygate4sd3_1 sky130_fd_sc_hd__dlymetal6s2s_1 sky130_fd_sc_hd__dlymetal6s4s_1 sky130_fd_sc_hd__dlymetal6s6s_1 sky130_fd_sc_hd__ebufn_1 sky130_fd_sc_hd__ebufn_2 sky130_fd_sc_hd__ebufn_4 sky130_fd_sc_hd__ebufn_8 sky130_fd_sc_hd__edfxbp_1 sky130_fd_sc_hd__edfxtp_1 sky130_fd_sc_hd__einvn_0 sky130_fd_sc_hd__einvn_1 sky130_fd_sc_hd__einvn_2 sky130_fd_sc_hd__einvn_4 sky130_fd_sc_hd__einvn_8 sky130_fd_sc_hd__einvp_1 sky130_fd_sc_hd__einvp_2 sky130_fd_sc_hd__einvp_4 sky130_fd_sc_hd__einvp_8 sky130_fd_sc_hd__fa_1 sky130_fd_sc_hd__fa_2 sky130_fd_sc_hd__fa_4 sky130_fd_sc_hd__fah_1 sky130_fd_sc_hd__fahcin_1 sky130_fd_sc_hd__fahcon_1 sky130_fd_sc_hd__fill_1 sky130_fd_sc_hd__fill_2 sky130_fd_sc_hd__fill_4 sky130_fd_sc_hd__fill_8 sky130_fd_sc_hd__ha_1 sky130_fd_sc_hd__ha_2 sky130_fd_sc_hd__ha_4 sky130_fd_sc_hd__inv_1 sky130_fd_sc_hd__inv_12 sky130_fd_sc_hd__inv_16 sky130_fd_sc_hd__inv_2 sky130_fd_sc_hd__inv_4 sky130_fd_sc_hd__inv_6 sky130_fd_sc_hd__inv_8 sky130_fd_sc_hd__lpflow_bleeder_1 sky130_fd_sc_hd__lpflow_clkbufkapwr_1 sky130_fd_sc_hd__lpflow_clkbufkapwr_16 sky130_fd_sc_hd__lpflow_clkbufkapwr_2 sky130_fd_sc_hd__lpflow_clkbufkapwr_4 sky130_fd_sc_hd__lpflow_clkbufkapwr_8 sky130_fd_sc_hd__lpflow_clkinvkapwr_1 sky130_fd_sc_hd__lpflow_clkinvkapwr_16 sky130_fd_sc_hd__lpflow_clkinvkapwr_2 sky130_fd_sc_hd__lpflow_clkinvkapwr_4 sky130_fd_sc_hd__lpflow_clkinvkapwr_8 sky130_fd_sc_hd__lpflow_decapkapwr_12 sky130_fd_sc_hd__lpflow_decapkapwr_3 sky130_fd_sc_hd__lpflow_decapkapwr_4 sky130_fd_sc_hd__lpflow_decapkapwr_6 sky130_fd_sc_hd__lpflow_decapkapwr_8 sky130_fd_sc_hd__lpflow_inputiso0n_1 sky130_fd_sc_hd__lpflow_inputiso0p_1 sky130_fd_sc_hd__lpflow_inputiso1n_1 sky130_fd_sc_hd__lpflow_inputiso1p_1 sky130_fd_sc_hd__lpflow_inputisolatch_1 sky130_fd_sc_hd__lpflow_isobufsrc_1 sky130_fd_sc_hd__lpflow_isobufsrc_16 sky130_fd_sc_hd__lpflow_isobufsrc_2 sky130_fd_sc_hd__lpflow_isobufsrc_4 sky130_fd_sc_hd__lpflow_isobufsrc_8 sky130_fd_sc_hd__lpflow_isobufsrckapwr_16 sky130_fd_sc_hd__lpflow_lsbuf_lh_hl_isowell_tap_1 sky130_fd_sc_hd__lpflow_lsbuf_lh_hl_isowell_tap_2 sky130_fd_sc_hd__lpflow_lsbuf_lh_hl_isowell_tap_4 sky130_fd_sc_hd__lpflow_lsbuf_lh_isowell_4 sky130_fd_sc_hd__lpflow_lsbuf_lh_isowell_tap_1 sky130_fd_sc_hd__lpflow_lsbuf_lh_isowell_tap_2 sky130_fd_sc_hd__lpflow_lsbuf_lh_isowell_tap_4 sky130_fd_sc_hd__macro_sparecell sky130_fd_sc_hd__maj3_1 sky130_fd_sc_hd__maj3_2 sky130_fd_sc_hd__maj3_4 sky130_fd_sc_hd__mux2_1 sky130_fd_sc_hd__mux2_2 sky130_fd_sc_hd__mux2_4 sky130_fd_sc_hd__mux2_8 sky130_fd_sc_hd__mux2i_1 sky130_fd_sc_hd__mux2i_2 sky130_fd_sc_hd__mux2i_4 sky130_fd_sc_hd__mux4_1 sky130_fd_sc_hd__mux4_2 sky130_fd_sc_hd__mux4_4 sky130_fd_sc_hd__nand2_1 sky130_fd_sc_hd__nand2_2 sky130_fd_sc_hd__nand2_4 sky130_fd_sc_hd__nand2_8 sky130_fd_sc_hd__nand2b_1 sky130_fd_sc_hd__nand2b_2 sky130_fd_sc_hd__nand2b_4 sky130_fd_sc_hd__nand3_1 sky130_fd_sc_hd__nand3_2 sky130_fd_sc_hd__nand3_4 sky130_fd_sc_hd__nand3b_1 sky130_fd_sc_hd__nand3b_2 sky130_fd_sc_hd__nand3b_4 sky130_fd_sc_hd__nand4_1 sky130_fd_sc_hd__nand4_2 sky130_fd_sc_hd__nand4_4 sky130_fd_sc_hd__nand4b_1 sky130_fd_sc_hd__nand4b_2 sky130_fd_sc_hd__nand4b_4 sky130_fd_sc_hd__nand4bb_1 sky130_fd_sc_hd__nand4bb_2 sky130_fd_sc_hd__nand4bb_4 sky130_fd_sc_hd__nor2_1 sky130_fd_sc_hd__nor2_2 sky130_fd_sc_hd__nor2_4 sky130_fd_sc_hd__nor2_8 sky130_fd_sc_hd__nor2b_1 sky130_fd_sc_hd__nor2b_2 sky130_fd_sc_hd__nor2b_4 sky130_fd_sc_hd__nor3_1 sky130_fd_sc_hd__nor3_2 sky130_fd_sc_hd__nor3_4 sky130_fd_sc_hd__nor3b_1 sky130_fd_sc_hd__nor3b_2 sky130_fd_sc_hd__nor3b_4 sky130_fd_sc_hd__nor4_1 sky130_fd_sc_hd__nor4_2 sky130_fd_sc_hd__nor4_4 sky130_fd_sc_hd__nor4b_1 sky130_fd_sc_hd__nor4b_2 sky130_fd_sc_hd__nor4b_4 sky130_fd_sc_hd__nor4bb_1 sky130_fd_sc_hd__nor4bb_2 sky130_fd_sc_hd__nor4bb_4 sky130_fd_sc_hd__o2111a_1 sky130_fd_sc_hd__o2111a_2 sky130_fd_sc_hd__o2111a_4 sky130_fd_sc_hd__o2111ai_1 sky130_fd_sc_hd__o2111ai_2 sky130_fd_sc_hd__o2111ai_4 sky130_fd_sc_hd__o211a_1 sky130_fd_sc_hd__o211a_2 sky130_fd_sc_hd__o211a_4 sky130_fd_sc_hd__o211ai_1 sky130_fd_sc_hd__o211ai_2 sky130_fd_sc_hd__o211ai_4 sky130_fd_sc_hd__o21a_1 sky130_fd_sc_hd__o21a_2 sky130_fd_sc_hd__o21a_4 sky130_fd_sc_hd__o21ai_0 sky130_fd_sc_hd__o21ai_1 sky130_fd_sc_hd__o21ai_2 sky130_fd_sc_hd__o21ai_4 sky130_fd_sc_hd__o21ba_1 sky130_fd_sc_hd__o21ba_2 sky130_fd_sc_hd__o21ba_4 sky130_fd_sc_hd__o21bai_1 sky130_fd_sc_hd__o21bai_2 sky130_fd_sc_hd__o21bai_4 sky130_fd_sc_hd__o221a_1 sky130_fd_sc_hd__o221a_2 sky130_fd_sc_hd__o221a_4 sky130_fd_sc_hd__o221ai_1 sky130_fd_sc_hd__o221ai_2 sky130_fd_sc_hd__o221ai_4 sky130_fd_sc_hd__o22a_1 sky130_fd_sc_hd__o22a_2 sky130_fd_sc_hd__o22a_4 sky130_fd_sc_hd__o22ai_1 sky130_fd_sc_hd__o22ai_2 sky130_fd_sc_hd__o22ai_4 sky130_fd_sc_hd__o2bb2a_1 sky130_fd_sc_hd__o2bb2a_2 sky130_fd_sc_hd__o2bb2a_4 sky130_fd_sc_hd__o2bb2ai_1 sky130_fd_sc_hd__o2bb2ai_2 sky130_fd_sc_hd__o2bb2ai_4 sky130_fd_sc_hd__o311a_1 sky130_fd_sc_hd__o311a_2 sky130_fd_sc_hd__o311a_4 sky130_fd_sc_hd__o311ai_0 sky130_fd_sc_hd__o311ai_1 sky130_fd_sc_hd__o311ai_2 sky130_fd_sc_hd__o311ai_4 sky130_fd_sc_hd__o31a_1 sky130_fd_sc_hd__o31a_2 sky130_fd_sc_hd__o31a_4 sky130_fd_sc_hd__o31ai_1 sky130_fd_sc_hd__o31ai_2 sky130_fd_sc_hd__o31ai_4 sky130_fd_sc_hd__o32a_1 sky130_fd_sc_hd__o32a_2 sky130_fd_sc_hd__o32a_4 sky130_fd_sc_hd__o32ai_1 sky130_fd_sc_hd__o32ai_2 sky130_fd_sc_hd__o32ai_4 sky130_fd_sc_hd__o41a_1 sky130_fd_sc_hd__o41a_2 sky130_fd_sc_hd__o41a_4 sky130_fd_sc_hd__o41ai_1 sky130_fd_sc_hd__o41ai_2 sky130_fd_sc_hd__o41ai_4 sky130_fd_sc_hd__or2_0 sky130_fd_sc_hd__or2_1 sky130_fd_sc_hd__or2_2 sky130_fd_sc_hd__or2_4 sky130_fd_sc_hd__or2b_1 sky130_fd_sc_hd__or2b_2 sky130_fd_sc_hd__or2b_4 sky130_fd_sc_hd__or3_1 sky130_fd_sc_hd__or3_2 sky130_fd_sc_hd__or3_4 sky130_fd_sc_hd__or3b_1 sky130_fd_sc_hd__or3b_2 sky130_fd_sc_hd__or3b_4 sky130_fd_sc_hd__or4_1 sky130_fd_sc_hd__or4_2 sky130_fd_sc_hd__or4_4 sky130_fd_sc_hd__or4b_1 sky130_fd_sc_hd__or4b_2 sky130_fd_sc_hd__or4b_4 sky130_fd_sc_hd__or4bb_1 sky130_fd_sc_hd__or4bb_2 sky130_fd_sc_hd__or4bb_4 sky130_fd_sc_hd__probe_p_8 sky130_fd_sc_hd__probec_p_8 sky130_fd_sc_hd__sdfbbn_1 sky130_fd_sc_hd__sdfbbn_2 sky130_fd_sc_hd__sdfbbp_1 sky130_fd_sc_hd__sdfrbp_1 sky130_fd_sc_hd__sdfrbp_2 sky130_fd_sc_hd__sdfrtn_1 sky130_fd_sc_hd__sdfrtp_1 sky130_fd_sc_hd__sdfrtp_2 sky130_fd_sc_hd__sdfrtp_4 sky130_fd_sc_hd__sdfsbp_1 sky130_fd_sc_hd__sdfsbp_2 sky130_fd_sc_hd__sdfstp_1 sky130_fd_sc_hd__sdfstp_2 sky130_fd_sc_hd__sdfstp_4 sky130_fd_sc_hd__sdfxbp_1 sky130_fd_sc_hd__sdfxbp_2 sky130_fd_sc_hd__sdfxtp_1 sky130_fd_sc_hd__sdfxtp_2 sky130_fd_sc_hd__sdfxtp_4 sky130_fd_sc_hd__sdlclkp_1 sky130_fd_sc_hd__sdlclkp_2 sky130_fd_sc_hd__sdlclkp_4 sky130_fd_sc_hd__sedfxbp_1 sky130_fd_sc_hd__sedfxbp_2 sky130_fd_sc_hd__sedfxtp_1 sky130_fd_sc_hd__sedfxtp_2 sky130_fd_sc_hd__sedfxtp_4 sky130_fd_sc_hd__tap_1 sky130_fd_sc_hd__tap_2 sky130_fd_sc_hd__tapvgnd2_1 sky130_fd_sc_hd__tapvgnd_1 sky130_fd_sc_hd__tapvpwrvgnd_1 sky130_fd_sc_hd__xnor2_1 sky130_fd_sc_hd__xnor2_2 sky130_fd_sc_hd__xnor2_4 sky130_fd_sc_hd__xnor3_1 sky130_fd_sc_hd__xnor3_2 sky130_fd_sc_hd__xnor3_4 sky130_fd_sc_hd__xor2_1 sky130_fd_sc_hd__xor2_2 sky130_fd_sc_hd__xor2_4 sky130_fd_sc_hd__xor3_1 sky130_fd_sc_hd__xor3_2 sky130_fd_sc_hd__xor3_4 sky130_fd_sc_hs__a2111o_1 sky130_fd_sc_hs__a2111o_2 sky130_fd_sc_hs__a2111o_4 sky130_fd_sc_hs__a2111oi_1 sky130_fd_sc_hs__a2111oi_2 sky130_fd_sc_hs__a2111oi_4 sky130_fd_sc_hs__a211o_1 sky130_fd_sc_hs__a211o_2 sky130_fd_sc_hs__a211o_4 sky130_fd_sc_hs__a211oi_1 sky130_fd_sc_hs__a211oi_2 sky130_fd_sc_hs__a211oi_4 sky130_fd_sc_hs__a21bo_1 sky130_fd_sc_hs__a21bo_2 sky130_fd_sc_hs__a21bo_4 sky130_fd_sc_hs__a21boi_1 sky130_fd_sc_hs__a21boi_2 sky130_fd_sc_hs__a21boi_4 sky130_fd_sc_hs__a21o_1 sky130_fd_sc_hs__a21o_2 sky130_fd_sc_hs__a21o_4 sky130_fd_sc_hs__a21oi_1 sky130_fd_sc_hs__a21oi_2 sky130_fd_sc_hs__a21oi_4 sky130_fd_sc_hs__a221o_1 sky130_fd_sc_hs__a221o_2 sky130_fd_sc_hs__a221o_4 sky130_fd_sc_hs__a221oi_1 sky130_fd_sc_hs__a221oi_2 sky130_fd_sc_hs__a221oi_4 sky130_fd_sc_hs__a222o_1 sky130_fd_sc_hs__a222o_2 sky130_fd_sc_hs__a222oi_1 sky130_fd_sc_hs__a222oi_2 sky130_fd_sc_hs__a22o_1 sky130_fd_sc_hs__a22o_2 sky130_fd_sc_hs__a22o_4 sky130_fd_sc_hs__a22oi_1 sky130_fd_sc_hs__a22oi_2 sky130_fd_sc_hs__a22oi_4 sky130_fd_sc_hs__a2bb2o_1 sky130_fd_sc_hs__a2bb2o_2 sky130_fd_sc_hs__a2bb2o_4 sky130_fd_sc_hs__a2bb2oi_1 sky130_fd_sc_hs__a2bb2oi_2 sky130_fd_sc_hs__a2bb2oi_4 sky130_fd_sc_hs__a311o_1 sky130_fd_sc_hs__a311o_2 sky130_fd_sc_hs__a311o_4 sky130_fd_sc_hs__a311oi_1 sky130_fd_sc_hs__a311oi_2 sky130_fd_sc_hs__a311oi_4 sky130_fd_sc_hs__a31o_1 sky130_fd_sc_hs__a31o_2 sky130_fd_sc_hs__a31o_4 sky130_fd_sc_hs__a31oi_1 sky130_fd_sc_hs__a31oi_2 sky130_fd_sc_hs__a31oi_4 sky130_fd_sc_hs__a32o_1 sky130_fd_sc_hs__a32o_2 sky130_fd_sc_hs__a32o_4 sky130_fd_sc_hs__a32oi_1 sky130_fd_sc_hs__a32oi_2 sky130_fd_sc_hs__a32oi_4 sky130_fd_sc_hs__a41o_1 sky130_fd_sc_hs__a41o_2 sky130_fd_sc_hs__a41o_4 sky130_fd_sc_hs__a41oi_1 sky130_fd_sc_hs__a41oi_2 sky130_fd_sc_hs__a41oi_4 sky130_fd_sc_hs__and2_1 sky130_fd_sc_hs__and2_2 sky130_fd_sc_hs__and2_4 sky130_fd_sc_hs__and2b_1 sky130_fd_sc_hs__and2b_2 sky130_fd_sc_hs__and2b_4 sky130_fd_sc_hs__and3_1 sky130_fd_sc_hs__and3_2 sky130_fd_sc_hs__and3_4 sky130_fd_sc_hs__and3b_1 sky130_fd_sc_hs__and3b_2 sky130_fd_sc_hs__and3b_4 sky130_fd_sc_hs__and4_1 sky130_fd_sc_hs__and4_2 sky130_fd_sc_hs__and4_4 sky130_fd_sc_hs__and4b_1 sky130_fd_sc_hs__and4b_2 sky130_fd_sc_hs__and4b_4 sky130_fd_sc_hs__and4bb_1 sky130_fd_sc_hs__and4bb_2 sky130_fd_sc_hs__and4bb_4 sky130_fd_sc_hs__buf_1 sky130_fd_sc_hs__buf_16 sky130_fd_sc_hs__buf_2 sky130_fd_sc_hs__buf_4 sky130_fd_sc_hs__buf_8 sky130_fd_sc_hs__bufbuf_16 sky130_fd_sc_hs__bufbuf_8 sky130_fd_sc_hs__bufinv_16 sky130_fd_sc_hs__bufinv_8 sky130_fd_sc_hs__clkbuf_1 sky130_fd_sc_hs__clkbuf_16 sky130_fd_sc_hs__clkbuf_2 sky130_fd_sc_hs__clkbuf_4 sky130_fd_sc_hs__clkbuf_8 sky130_fd_sc_hs__clkdlyinv3sd1_1 sky130_fd_sc_hs__clkdlyinv3sd2_1 sky130_fd_sc_hs__clkdlyinv3sd3_1 sky130_fd_sc_hs__clkdlyinv5sd1_1 sky130_fd_sc_hs__clkdlyinv5sd2_1 sky130_fd_sc_hs__clkdlyinv5sd3_1 sky130_fd_sc_hs__clkinv_1 sky130_fd_sc_hs__clkinv_16 sky130_fd_sc_hs__clkinv_2 sky130_fd_sc_hs__clkinv_4 sky130_fd_sc_hs__clkinv_8 sky130_fd_sc_hs__conb_1 sky130_fd_sc_hs__decap_4 sky130_fd_sc_hs__decap_8 sky130_fd_sc_hs__dfbbn_1 sky130_fd_sc_hs__dfbbn_2 sky130_fd_sc_hs__dfbbp_1 sky130_fd_sc_hs__dfrbp_1 sky130_fd_sc_hs__dfrbp_2 sky130_fd_sc_hs__dfrtn_1 sky130_fd_sc_hs__dfrtp_1 sky130_fd_sc_hs__dfrtp_2 sky130_fd_sc_hs__dfrtp_4 sky130_fd_sc_hs__dfsbp_1 sky130_fd_sc_hs__dfsbp_2 sky130_fd_sc_hs__dfstp_1 sky130_fd_sc_hs__dfstp_2 sky130_fd_sc_hs__dfstp_4 sky130_fd_sc_hs__dfxbp_1 sky130_fd_sc_hs__dfxbp_2 sky130_fd_sc_hs__dfxtp_1 sky130_fd_sc_hs__dfxtp_2 sky130_fd_sc_hs__dfxtp_4 sky130_fd_sc_hs__diode_2 sky130_fd_sc_hs__dlclkp_1 sky130_fd_sc_hs__dlclkp_2 sky130_fd_sc_hs__dlclkp_4 sky130_fd_sc_hs__dlrbn_1 sky130_fd_sc_hs__dlrbn_2 sky130_fd_sc_hs__dlrbp_1 sky130_fd_sc_hs__dlrbp_2 sky130_fd_sc_hs__dlrtn_1 sky130_fd_sc_hs__dlrtn_2 sky130_fd_sc_hs__dlrtn_4 sky130_fd_sc_hs__dlrtp_1 sky130_fd_sc_hs__dlrtp_2 sky130_fd_sc_hs__dlrtp_4 sky130_fd_sc_hs__dlxbn_1 sky130_fd_sc_hs__dlxbn_2 sky130_fd_sc_hs__dlxbp_1 sky130_fd_sc_hs__dlxtn_1 sky130_fd_sc_hs__dlxtn_2 sky130_fd_sc_hs__dlxtn_4 sky130_fd_sc_hs__dlxtp_1 sky130_fd_sc_hs__dlygate4sd1_1 sky130_fd_sc_hs__dlygate4sd2_1 sky130_fd_sc_hs__dlygate4sd3_1 sky130_fd_sc_hs__dlymetal6s2s_1 sky130_fd_sc_hs__dlymetal6s4s_1 sky130_fd_sc_hs__dlymetal6s6s_1 sky130_fd_sc_hs__ebufn_1 sky130_fd_sc_hs__ebufn_2 sky130_fd_sc_hs__ebufn_4 sky130_fd_sc_hs__ebufn_8 sky130_fd_sc_hs__edfxbp_1 sky130_fd_sc_hs__edfxtp_1 sky130_fd_sc_hs__einvn_1 sky130_fd_sc_hs__einvn_2 sky130_fd_sc_hs__einvn_4 sky130_fd_sc_hs__einvn_8 sky130_fd_sc_hs__einvp_1 sky130_fd_sc_hs__einvp_2 sky130_fd_sc_hs__einvp_4 sky130_fd_sc_hs__einvp_8 sky130_fd_sc_hs__fa_1 sky130_fd_sc_hs__fa_2 sky130_fd_sc_hs__fa_4 sky130_fd_sc_hs__fah_1 sky130_fd_sc_hs__fah_2 sky130_fd_sc_hs__fah_4 sky130_fd_sc_hs__fahcin_1 sky130_fd_sc_hs__fahcon_1 sky130_fd_sc_hs__fill_1 sky130_fd_sc_hs__fill_2 sky130_fd_sc_hs__fill_4 sky130_fd_sc_hs__fill_8 sky130_fd_sc_hs__fill_diode_2 sky130_fd_sc_hs__fill_diode_4 sky130_fd_sc_hs__fill_diode_8 sky130_fd_sc_hs__ha_1 sky130_fd_sc_hs__ha_2 sky130_fd_sc_hs__ha_4 sky130_fd_sc_hs__inv_1 sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_2 sky130_fd_sc_hs__inv_4 sky130_fd_sc_hs__inv_8 sky130_fd_sc_hs__maj3_1 sky130_fd_sc_hs__maj3_2 sky130_fd_sc_hs__maj3_4 sky130_fd_sc_hs__mux2_1 sky130_fd_sc_hs__mux2_2 sky130_fd_sc_hs__mux2_4 sky130_fd_sc_hs__mux2i_1 sky130_fd_sc_hs__mux2i_2 sky130_fd_sc_hs__mux2i_4 sky130_fd_sc_hs__mux4_1 sky130_fd_sc_hs__mux4_2 sky130_fd_sc_hs__mux4_4 sky130_fd_sc_hs__nand2_1 sky130_fd_sc_hs__nand2_2 sky130_fd_sc_hs__nand2_4 sky130_fd_sc_hs__nand2_8 sky130_fd_sc_hs__nand2b_1 sky130_fd_sc_hs__nand2b_2 sky130_fd_sc_hs__nand2b_4 sky130_fd_sc_hs__nand3_1 sky130_fd_sc_hs__nand3_2 sky130_fd_sc_hs__nand3_4 sky130_fd_sc_hs__nand3b_1 sky130_fd_sc_hs__nand3b_2 sky130_fd_sc_hs__nand3b_4 sky130_fd_sc_hs__nand4_1 sky130_fd_sc_hs__nand4_2 sky130_fd_sc_hs__nand4_4 sky130_fd_sc_hs__nand4b_1 sky130_fd_sc_hs__nand4b_2 sky130_fd_sc_hs__nand4b_4 sky130_fd_sc_hs__nand4bb_1 sky130_fd_sc_hs__nand4bb_2 sky130_fd_sc_hs__nand4bb_4 sky130_fd_sc_hs__nor2_1 sky130_fd_sc_hs__nor2_2 sky130_fd_sc_hs__nor2_4 sky130_fd_sc_hs__nor2_8 sky130_fd_sc_hs__nor2b_1 sky130_fd_sc_hs__nor2b_2 sky130_fd_sc_hs__nor2b_4 sky130_fd_sc_hs__nor3_1 sky130_fd_sc_hs__nor3_2 sky130_fd_sc_hs__nor3_4 sky130_fd_sc_hs__nor3b_1 sky130_fd_sc_hs__nor3b_2 sky130_fd_sc_hs__nor3b_4 sky130_fd_sc_hs__nor4_1 sky130_fd_sc_hs__nor4_2 sky130_fd_sc_hs__nor4_4 sky130_fd_sc_hs__nor4b_1 sky130_fd_sc_hs__nor4b_2 sky130_fd_sc_hs__nor4b_4 sky130_fd_sc_hs__nor4bb_1 sky130_fd_sc_hs__nor4bb_2 sky130_fd_sc_hs__nor4bb_4 sky130_fd_sc_hs__o2111a_1 sky130_fd_sc_hs__o2111a_2 sky130_fd_sc_hs__o2111a_4 sky130_fd_sc_hs__o2111ai_1 sky130_fd_sc_hs__o2111ai_2 sky130_fd_sc_hs__o2111ai_4 sky130_fd_sc_hs__o211a_1 sky130_fd_sc_hs__o211a_2 sky130_fd_sc_hs__o211a_4 sky130_fd_sc_hs__o211ai_1 sky130_fd_sc_hs__o211ai_2 sky130_fd_sc_hs__o211ai_4 sky130_fd_sc_hs__o21a_1 sky130_fd_sc_hs__o21a_2 sky130_fd_sc_hs__o21a_4 sky130_fd_sc_hs__o21ai_1 sky130_fd_sc_hs__o21ai_2 sky130_fd_sc_hs__o21ai_4 sky130_fd_sc_hs__o21ba_1 sky130_fd_sc_hs__o21ba_2 sky130_fd_sc_hs__o21ba_4 sky130_fd_sc_hs__o21bai_1 sky130_fd_sc_hs__o21bai_2 sky130_fd_sc_hs__o21bai_4 sky130_fd_sc_hs__o221a_1 sky130_fd_sc_hs__o221a_2 sky130_fd_sc_hs__o221a_4 sky130_fd_sc_hs__o221ai_1 sky130_fd_sc_hs__o221ai_2 sky130_fd_sc_hs__o221ai_4 sky130_fd_sc_hs__o22a_1 sky130_fd_sc_hs__o22a_2 sky130_fd_sc_hs__o22a_4 sky130_fd_sc_hs__o22ai_1 sky130_fd_sc_hs__o22ai_2 sky130_fd_sc_hs__o22ai_4 sky130_fd_sc_hs__o2bb2a_1 sky130_fd_sc_hs__o2bb2a_2 sky130_fd_sc_hs__o2bb2a_4 sky130_fd_sc_hs__o2bb2ai_1 sky130_fd_sc_hs__o2bb2ai_2 sky130_fd_sc_hs__o2bb2ai_4 sky130_fd_sc_hs__o311a_1 sky130_fd_sc_hs__o311a_2 sky130_fd_sc_hs__o311a_4 sky130_fd_sc_hs__o311ai_1 sky130_fd_sc_hs__o311ai_2 sky130_fd_sc_hs__o311ai_4 sky130_fd_sc_hs__o31a_1 sky130_fd_sc_hs__o31a_2 sky130_fd_sc_hs__o31a_4 sky130_fd_sc_hs__o31ai_1 sky130_fd_sc_hs__o31ai_2 sky130_fd_sc_hs__o31ai_4 sky130_fd_sc_hs__o32a_1 sky130_fd_sc_hs__o32a_2 sky130_fd_sc_hs__o32a_4 sky130_fd_sc_hs__o32ai_1 sky130_fd_sc_hs__o32ai_2 sky130_fd_sc_hs__o32ai_4 sky130_fd_sc_hs__o41a_1 sky130_fd_sc_hs__o41a_2 sky130_fd_sc_hs__o41a_4 sky130_fd_sc_hs__o41ai_1 sky130_fd_sc_hs__o41ai_2 sky130_fd_sc_hs__o41ai_4 sky130_fd_sc_hs__or2_1 sky130_fd_sc_hs__or2_2 sky130_fd_sc_hs__or2_4 sky130_fd_sc_hs__or2b_1 sky130_fd_sc_hs__or2b_2 sky130_fd_sc_hs__or2b_4 sky130_fd_sc_hs__or3_1 sky130_fd_sc_hs__or3_2 sky130_fd_sc_hs__or3_4 sky130_fd_sc_hs__or3b_1 sky130_fd_sc_hs__or3b_2 sky130_fd_sc_hs__or3b_4 sky130_fd_sc_hs__or4_1 sky130_fd_sc_hs__or4_2 sky130_fd_sc_hs__or4_4 sky130_fd_sc_hs__or4b_1 sky130_fd_sc_hs__or4b_2 sky130_fd_sc_hs__or4b_4 sky130_fd_sc_hs__or4bb_1 sky130_fd_sc_hs__or4bb_2 sky130_fd_sc_hs__or4bb_4 sky130_fd_sc_hs__sdfbbn_1 sky130_fd_sc_hs__sdfbbn_2 sky130_fd_sc_hs__sdfbbp_1 sky130_fd_sc_hs__sdfrbp_1 sky130_fd_sc_hs__sdfrbp_2 sky130_fd_sc_hs__sdfrtn_1 sky130_fd_sc_hs__sdfrtp_1 sky130_fd_sc_hs__sdfrtp_2 sky130_fd_sc_hs__sdfrtp_4 sky130_fd_sc_hs__sdfsbp_1 sky130_fd_sc_hs__sdfsbp_2 sky130_fd_sc_hs__sdfstp_1 sky130_fd_sc_hs__sdfstp_2 sky130_fd_sc_hs__sdfstp_4 sky130_fd_sc_hs__sdfxbp_1 sky130_fd_sc_hs__sdfxbp_2 sky130_fd_sc_hs__sdfxtp_1 sky130_fd_sc_hs__sdfxtp_2 sky130_fd_sc_hs__sdfxtp_4 sky130_fd_sc_hs__sdlclkp_1 sky130_fd_sc_hs__sdlclkp_2 sky130_fd_sc_hs__sdlclkp_4 sky130_fd_sc_hs__sedfxbp_1 sky130_fd_sc_hs__sedfxbp_2 sky130_fd_sc_hs__sedfxtp_1 sky130_fd_sc_hs__sedfxtp_2 sky130_fd_sc_hs__sedfxtp_4 sky130_fd_sc_hs__tap_1 sky130_fd_sc_hs__tap_2 sky130_fd_sc_hs__tapmet1_2 sky130_fd_sc_hs__tapvgnd2_1 sky130_fd_sc_hs__tapvgnd_1 sky130_fd_sc_hs__tapvpwrvgnd_1 sky130_fd_sc_hs__xnor2_1 sky130_fd_sc_hs__xnor2_2 sky130_fd_sc_hs__xnor2_4 sky130_fd_sc_hs__xnor3_1 sky130_fd_sc_hs__xnor3_2 sky130_fd_sc_hs__xnor3_4 sky130_fd_sc_hs__xor2_1 sky130_fd_sc_hs__xor2_2 sky130_fd_sc_hs__xor2_4 sky130_fd_sc_hs__xor3_1 sky130_fd_sc_hs__xor3_2 sky130_fd_sc_hs__xor3_4 sky130_fd_sc_hvl__a21o_1 sky130_fd_sc_hvl__a21oi_1 sky130_fd_sc_hvl__a22o_1 sky130_fd_sc_hvl__a22oi_1 sky130_fd_sc_hvl__and2_1 sky130_fd_sc_hvl__and3_1 sky130_fd_sc_hvl__buf_1 sky130_fd_sc_hvl__buf_16 sky130_fd_sc_hvl__buf_2 sky130_fd_sc_hvl__buf_32 sky130_fd_sc_hvl__buf_4 sky130_fd_sc_hvl__buf_8 sky130_fd_sc_hvl__conb_1 sky130_fd_sc_hvl__decap_4 sky130_fd_sc_hvl__decap_8 sky130_fd_sc_hvl__dfrbp_1 sky130_fd_sc_hvl__dfrtp_1 sky130_fd_sc_hvl__dfsbp_1 sky130_fd_sc_hvl__dfstp_1 sky130_fd_sc_hvl__dfxbp_1 sky130_fd_sc_hvl__dfxtp_1 sky130_fd_sc_hvl__diode_2 sky130_fd_sc_hvl__dlclkp_1 sky130_fd_sc_hvl__dlrtp_1 sky130_fd_sc_hvl__dlxtp_1 sky130_fd_sc_hvl__einvn_1 sky130_fd_sc_hvl__einvp_1 sky130_fd_sc_hvl__fill_1 sky130_fd_sc_hvl__fill_2 sky130_fd_sc_hvl__fill_4 sky130_fd_sc_hvl__fill_8 sky130_fd_sc_hvl__inv_1 sky130_fd_sc_hvl__inv_16 sky130_fd_sc_hvl__inv_2 sky130_fd_sc_hvl__inv_4 sky130_fd_sc_hvl__inv_8 sky130_fd_sc_hvl__lsbufhv2hv_hl_1 sky130_fd_sc_hvl__lsbufhv2hv_lh_1 sky130_fd_sc_hvl__lsbufhv2lv_1 sky130_fd_sc_hvl__lsbufhv2lv_simple_1 sky130_fd_sc_hvl__lsbuflv2hv_1 sky130_fd_sc_hvl__lsbuflv2hv_clkiso_hlkg_3 sky130_fd_sc_hvl__lsbuflv2hv_isosrchvaon_1 sky130_fd_sc_hvl__lsbuflv2hv_symmetric_1 sky130_fd_sc_hvl__mux2_1 sky130_fd_sc_hvl__mux4_1 sky130_fd_sc_hvl__nand2_1 sky130_fd_sc_hvl__nand3_1 sky130_fd_sc_hvl__nor2_1 sky130_fd_sc_hvl__nor3_1 sky130_fd_sc_hvl__o21a_1 sky130_fd_sc_hvl__o21ai_1 sky130_fd_sc_hvl__o22a_1 sky130_fd_sc_hvl__o22ai_1 sky130_fd_sc_hvl__or2_1 sky130_fd_sc_hvl__or3_1 sky130_fd_sc_hvl__probe_p_8 sky130_fd_sc_hvl__probec_p_8 sky130_fd_sc_hvl__schmittbuf_1 sky130_fd_sc_hvl__sdfrbp_1 sky130_fd_sc_hvl__sdfrtp_1 sky130_fd_sc_hvl__sdfsbp_1 sky130_fd_sc_hvl__sdfstp_1 sky130_fd_sc_hvl__sdfxbp_1 sky130_fd_sc_hvl__sdfxtp_1 sky130_fd_sc_hvl__sdlclkp_1 sky130_fd_sc_hvl__sdlxtp_1 sky130_fd_sc_hvl__xnor2_1 sky130_fd_sc_hvl__xor2_1
skywater130/docs/components.rst/0
{ "file_path": "skywater130/docs/components.rst", "repo_id": "skywater130", "token_count": 15705 }
106
<?xml version="1.0" encoding="utf-8"?> <layer-properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>prBoundaryboundary_m 235/4</name> <source>235/4@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwelldrawing_m 64/44</name> <source>64/44@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwellpin_m 122/16</name> <source>122/16@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwelllabel_m 64/59</name> <source>64/59@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwellres_m 64/13</name> <source>64/13@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwellcut_m 64/14</name> <source>64/14@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#96c8ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwellisopin_m 44/16</name> <source>44/16@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pwellisolabel_m 44/5</name> <source>44/5@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nwelldrawing_m 64/20</name> <source>64/20@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nwellnet_m 84/23</name> <source>84/23@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nwellpin_m 64/16</name> <source>64/16@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nwelllabel_m 64/5</name> <source>64/5@1</source> </properties> <properties> <frame-color>#c8ffc8</frame-color> <fill-color>#c8ffc8</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>dnwelldrawing_m 64/18</name> <source>64/18@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>vhvidrawing_m 74/21</name> <source>74/21@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffdrawing_m 65/20</name> <source>65/20@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffres_m 65/13</name> <source>65/13@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffcut_m 65/14</name> <source>65/14@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffpin_m 65/16</name> <source>65/16@1</source> </properties> <properties> <frame-color>#c8ffc8</frame-color> <fill-color>#c8ffc8</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>difflabel_m 65/6</name> <source>65/6@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffnet_m 65/23</name> <source>65/23@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffboundary_m 65/4</name> <source>65/4@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>diffhv_m 65/8</name> <source>65/8@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>tapdrawing_m 65/44</name> <source>65/44@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>tappin_m 65/48</name> <source>65/48@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>tapnet_m 65/41</name> <source>65/41@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>tapboundary_m 65/60</name> <source>65/60@1</source> </properties> <properties> <frame-color>#fff464</frame-color> <fill-color>#fff464</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>taplabel_m 65/5</name> <source>65/5@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>psdmdrawing_m 94/20</name> <source>94/20@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nsdmdrawing_m 93/44</name> <source>93/44@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polydrawing_m 66/20</name> <source>66/20@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polypin_m 66/16</name> <source>66/16@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polyres_m 66/13</name> <source>66/13@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polycut_m 66/14</name> <source>66/14@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polygate_m 66/9</name> <source>66/9@1</source> </properties> <properties> <frame-color>#ffafaf</frame-color> <fill-color>#ffafaf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polylabel_m 66/5</name> <source>66/5@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polyboundary_m 66/4</name> <source>66/4@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polyprobe_m 66/25</name> <source>66/25@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polyshort_m 66/15</name> <source>66/15@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polynet_m 66/23</name> <source>66/23@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>polymodel_m 66/83</name> <source>66/83@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ldntmdrawing_m 11/44</name> <source>11/44@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>lvtndrawing_m 125/44</name> <source>125/44@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>hvtpdrawing_m 78/44</name> <source>78/44@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>hvtrdrawing_m 18/20</name> <source>18/20@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>tunmdrawing_m 80/20</name> <source>80/20@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>licon1drawing_m 66/44</name> <source>66/44@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>licon1boundary_m 66/60</name> <source>66/60@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#c8ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>licon1pin_m 66/58</name> <source>66/58@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>licon1net_m 66/41</name> <source>66/41@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>npcdrawing_m 95/20</name> <source>95/20@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1drawing_m 67/20</name> <source>67/20@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1pin_m 67/16</name> <source>67/16@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1res_m 67/13</name> <source>67/13@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1cut_m 67/14</name> <source>67/14@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1label_m 67/5</name> <source>67/5@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1net_m 67/23</name> <source>67/23@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1boundary_m 67/4</name> <source>67/4@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1blockage_m 67/10</name> <source>67/10@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1short_m 67/15</name> <source>67/15@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>li1probe_m 67/25</name> <source>67/25@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>mcondrawing_m 67/44</name> <source>67/44@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>mconboundary_m 67/60</name> <source>67/60@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>mconpin_m 67/48</name> <source>67/48@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>mconnet_m 67/41</name> <source>67/41@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1drawing_m 68/20</name> <source>68/20@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1res_m 68/13</name> <source>68/13@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1cut_m 68/14</name> <source>68/14@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1pin_m 68/16</name> <source>68/16@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#96c8ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1label_m 68/5</name> <source>68/5@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1net_m 68/23</name> <source>68/23@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1boundary_m 68/4</name> <source>68/4@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1blockage_m 68/10</name> <source>68/10@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1short_m 68/15</name> <source>68/15@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1probe_m 68/25</name> <source>68/25@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option1_m 68/32</name> <source>68/32@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option2_m 68/33</name> <source>68/33@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option3_m 68/34</name> <source>68/34@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option4_m 68/35</name> <source>68/35@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option5_m 68/36</name> <source>68/36@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option6_m 68/37</name> <source>68/37@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option7_m 68/38</name> <source>68/38@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1option8_m 68/39</name> <source>68/39@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>viadrawing_m 68/44</name> <source>68/44@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>viaboundary_m 68/60</name> <source>68/60@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>vianet_m 68/41</name> <source>68/41@1</source> </properties> <properties> <frame-color>#ae7dff</frame-color> <fill-color>#ae7dff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>viapin_m 68/58</name> <source>68/58@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2drawing_m 69/20</name> <source>69/20@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2res_m 69/13</name> <source>69/13@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2cut_m 69/14</name> <source>69/14@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2pin_m 69/16</name> <source>69/16@1</source> </properties> <properties> <frame-color>#ffc8ff</frame-color> <fill-color>#ffc8ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2label_m 69/5</name> <source>69/5@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2net_m 69/23</name> <source>69/23@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2boundary_m 69/4</name> <source>69/4@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2blockage_m 69/10</name> <source>69/10@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2short_m 69/15</name> <source>69/15@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2probe_m 69/25</name> <source>69/25@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option1_m 69/32</name> <source>69/32@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option2_m 69/33</name> <source>69/33@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option3_m 69/34</name> <source>69/34@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option4_m 69/35</name> <source>69/35@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option5_m 69/36</name> <source>69/36@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option6_m 69/37</name> <source>69/37@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option7_m 69/38</name> <source>69/38@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2option8_m 69/39</name> <source>69/39@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via2drawing_m 69/44</name> <source>69/44@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via2boundary_m 69/60</name> <source>69/60@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via2pin_m 69/58</name> <source>69/58@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via2net_m 69/41</name> <source>69/41@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3drawing_m 70/20</name> <source>70/20@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3res_m 70/13</name> <source>70/13@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3cut_m 70/14</name> <source>70/14@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3pin_m 70/16</name> <source>70/16@1</source> </properties> <properties> <frame-color>#c8ffff</frame-color> <fill-color>#c8ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3label_m 70/5</name> <source>70/5@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3net_m 70/23</name> <source>70/23@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3boundary_m 70/4</name> <source>70/4@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3blockage_m 70/10</name> <source>70/10@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3short_m 70/15</name> <source>70/15@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3fuse_m 70/17</name> <source>70/17@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3probe_m 70/25</name> <source>70/25@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option1_m 70/32</name> <source>70/32@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option2_m 70/33</name> <source>70/33@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option3_m 70/34</name> <source>70/34@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option4_m 70/35</name> <source>70/35@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option5_m 70/36</name> <source>70/36@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option6_m 70/37</name> <source>70/37@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option7_m 70/38</name> <source>70/38@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3option8_m 70/39</name> <source>70/39@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via3drawing_m 70/44</name> <source>70/44@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via3boundary_m 70/60</name> <source>70/60@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via3pin_m 70/48</name> <source>70/48@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via3net_m 70/41</name> <source>70/41@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4drawing_m 71/20</name> <source>71/20@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4res_m 71/13</name> <source>71/13@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4cut_m 71/14</name> <source>71/14@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4pin_m 71/16</name> <source>71/16@1</source> </properties> <properties> <frame-color>#ae7dff</frame-color> <fill-color>#ae7dff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4label_m 71/5</name> <source>71/5@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4net_m 71/23</name> <source>71/23@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4boundary_m 71/4</name> <source>71/4@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4blockage_m 71/10</name> <source>71/10@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4short_m 71/15</name> <source>71/15@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4fuse_m 71/17</name> <source>71/17@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4probe_m 71/25</name> <source>71/25@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option1_m 71/32</name> <source>71/32@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option2_m 71/33</name> <source>71/33@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option3_m 71/34</name> <source>71/34@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option4_m 71/35</name> <source>71/35@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option5_m 71/36</name> <source>71/36@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option6_m 71/37</name> <source>71/37@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option7_m 71/38</name> <source>71/38@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4option8_m 71/39</name> <source>71/39@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via4drawing_m 71/44</name> <source>71/44@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via4boundary_m 71/60</name> <source>71/60@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via4pin_m 71/48</name> <source>71/48@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>via4net_m 71/41</name> <source>71/41@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5drawing_m 72/20</name> <source>72/20@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5res_m 72/13</name> <source>72/13@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5cut_m 72/14</name> <source>72/14@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5pin_m 72/16</name> <source>72/16@1</source> </properties> <properties> <frame-color>#fff464</frame-color> <fill-color>#fff464</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5label_m 72/5</name> <source>72/5@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5net_m 72/23</name> <source>72/23@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5boundary_m 72/4</name> <source>72/4@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5blockage_m 72/10</name> <source>72/10@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5short_m 72/15</name> <source>72/15@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5fuse_m 72/17</name> <source>72/17@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5probe_m 72/25</name> <source>72/25@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option1_m 72/32</name> <source>72/32@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option2_m 72/33</name> <source>72/33@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option3_m 72/34</name> <source>72/34@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option4_m 72/35</name> <source>72/35@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option5_m 72/36</name> <source>72/36@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option6_m 72/37</name> <source>72/37@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option7_m 72/38</name> <source>72/38@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5option8_m 72/39</name> <source>72/39@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>nsmdrawing_m 61/20</name> <source>61/20@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>paddrawing_m 76/20</name> <source>76/20@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>padlabel_m 76/5</name> <source>76/5@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>padpin_m 76/16</name> <source>76/16@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pnpdrawing_m 82/44</name> <source>82/44@1</source> </properties> <properties> <frame-color>#ffc8ff</frame-color> <fill-color>#ffc8ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pnplabel_m 82/59</name> <source>82/59@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>npndrawing_m 82/20</name> <source>82/20@1</source> </properties> <properties> <frame-color>#c8ffff</frame-color> <fill-color>#c8ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>npnlabel_m 82/5</name> <source>82/5@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#96c8ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rpmdrawing_m 86/20</name> <source>86/20@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>hvidrawing_m 75/20</name> <source>75/20@1</source> </properties> <properties> <frame-color>#ffb232</frame-color> <fill-color>#ffb232</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>capacitordrawing_m 82/64</name> <source>82/64@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ncmdrawing_m 92/44</name> <source>92/44@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cncmdrawing_m 96/44</name> <source>96/44@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cncmmask_m 17/0</name> <source>17/0@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pmmdrawing_m 85/44</name> <source>85/44@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>pmm2drawing_m 77/20</name> <source>77/20@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdldrawing_m 74/20</name> <source>74/20@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpin_m 74/16</name> <source>74/16@1</source> </properties> <properties> <frame-color>#ff6464</frame-color> <fill-color>#ff6464</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdllabel_m 74/5</name> <source>74/5@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlres_m 74/13</name> <source>74/13@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlcut_m 74/14</name> <source>74/14@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlshort_m 74/15</name> <source>74/15@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption1_m 89/32</name> <source>89/32@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption2_m 89/33</name> <source>89/33@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption3_m 89/34</name> <source>89/34@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption4_m 89/35</name> <source>89/35@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption5_m 89/36</name> <source>89/36@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption6_m 89/37</name> <source>89/37@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption7_m 89/38</name> <source>89/38@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdloption8_m 89/39</name> <source>89/39@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ubmdrawing_m 127/21</name> <source>127/21@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>bumpdrawing_m 127/22</name> <source>127/22@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>inductordrawing_m 82/24</name> <source>82/24@1</source> </properties> <properties> <frame-color>#fff464</frame-color> <fill-color>#fff464</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>inductorlabel_m 82/25</name> <source>82/25@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>inductorterm1_m 82/26</name> <source>82/26@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>inductorterm2_m 82/27</name> <source>82/27@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>inductorterm3_m 82/28</name> <source>82/28@1</source> </properties> <properties> <frame-color>#c3ccd9</frame-color> <fill-color>#c3ccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>capmdrawing_m 89/44</name> <source>89/44@1</source> </properties> <properties> <frame-color>#c33cd9</frame-color> <fill-color>#c33cd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>capm2drawing_m 97/44</name> <source>97/44@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cfomdrawing_m 22/20</name> <source>22/20@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cfommask_m 23/0</name> <source>23/0@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cfommaskAdd_m 22/21</name> <source>22/21@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cfommaskDrop_m 22/22</name> <source>22/22@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cfomwaffleDrop_m 22/24</name> <source>22/24@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>fomdummy_m 22/23</name> <source>22/23@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnwmdrawing_m 109/44</name> <source>109/44@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnwmmask_m 21/0</name> <source>21/0@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnwmmaskAdd_m 109/43</name> <source>109/43@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnwmmaskDrop_m 109/42</name> <source>109/42@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cdnmdrawing_m 110/20</name> <source>110/20@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cdnmmask_m 48/0</name> <source>48/0@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cdnmmaskAdd_m 110/21</name> <source>110/21@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cdnmmaskDrop_m 110/22</name> <source>110/22@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvtnmdrawing_m 25/44</name> <source>25/44@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvtnmmask_m 25/0</name> <source>25/0@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvtnmmaskAdd_m 25/43</name> <source>25/43@1</source> </properties> <properties> <frame-color>#96c8ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvtnmmaskDrop_m 25/42</name> <source>25/42@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtpmdrawing_m 88/44</name> <source>88/44@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtpmmask_m 97/0</name> <source>97/0@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtpmmaskAdd_m 97/43</name> <source>97/43@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtpmmaskDrop_m 97/42</name> <source>97/42@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtrmdrawing_m 98/44</name> <source>98/44@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtrmmask_m 98/0</name> <source>98/0@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtrmmaskAdd_m 98/43</name> <source>98/43@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvtrmmaskDrop_m 98/42</name> <source>98/42@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ctunmdrawing_m 96/20</name> <source>96/20@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ctunmmask_m 20/0</name> <source>20/0@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ctunmmaskAdd_m 96/21</name> <source>96/21@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ctunmmaskDrop_m 96/22</name> <source>96/22@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>conomdrawing_m 87/44</name> <source>87/44@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>conommask_m 88/0</name> <source>88/0@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>conommaskAdd_m 87/43</name> <source>87/43@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>conommaskDrop_m 87/42</name> <source>87/42@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnsdmdrawing_m 29/20</name> <source>29/20@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnsdmmask_m 30/0</name> <source>30/0@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnsdmmaskAdd_m 29/21</name> <source>29/21@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnsdmmaskDrop_m 29/22</name> <source>29/22@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpsdmdrawing_m 31/20</name> <source>31/20@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpsdmmask_m 32/0</name> <source>32/0@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpsdmmaskAdd_m 31/21</name> <source>31/21@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpsdmmaskDrop_m 31/22</name> <source>31/22@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cntmdrawing_m 26/20</name> <source>26/20@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cntmmask_m 27/0</name> <source>27/0@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cntmmaskAdd_m 26/21</name> <source>26/21@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cntmmaskDrop_m 26/22</name> <source>26/22@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>hvntmdrawing_m 125/20</name> <source>125/20@1</source> </properties> <properties> <frame-color>#fff5e6</frame-color> <fill-color>#fff5e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvntmdrawing_m 38/20</name> <source>38/20@1</source> </properties> <properties> <frame-color>#fff5e6</frame-color> <fill-color>#fff5e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvntmmask_m 39/0</name> <source>39/0@1</source> </properties> <properties> <frame-color>#fff5e6</frame-color> <fill-color>#fff5e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvntmmaskAdd_m 38/21</name> <source>38/21@1</source> </properties> <properties> <frame-color>#fff5e6</frame-color> <fill-color>#fff5e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>chvntmmaskDrop_m 38/22</name> <source>38/22@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cldntmdrawing_m 11/20</name> <source>11/20@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cldntmmask_m 11/0</name> <source>11/0@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvomdrawing_m 45/20</name> <source>45/20@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvommask_m 46/0</name> <source>46/0@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvommaskAdd_m 45/21</name> <source>45/21@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clvommaskDrop_m 45/22</name> <source>45/22@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cp1mdrawing_m 33/44</name> <source>33/44@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cp1mmask_m 28/0</name> <source>28/0@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cp1mmaskAdd_m 33/43</name> <source>33/43@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cp1mwaffleDrop_m 33/24</name> <source>33/24@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cp1mmaskDrop_m 33/42</name> <source>33/42@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cli1mdrawing_m 115/44</name> <source>115/44@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cli1mmask_m 56/0</name> <source>56/0@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cli1mmaskAdd_m 115/43</name> <source>115/43@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cli1mmaskDrop_m 115/42</name> <source>115/42@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clicm1drawing_m 106/44</name> <source>106/44@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clicm1mask_m 43/0</name> <source>43/0@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clicm1maskAdd_m 106/43</name> <source>106/43@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>clicm1maskDrop_m 106/42</name> <source>106/42@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm1drawing_m 62/20</name> <source>62/20@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm1mask_m 36/0</name> <source>36/0@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm1maskAdd_m 62/21</name> <source>62/21@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm1maskDrop_m 62/22</name> <source>62/22@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm1waffleDrop_m 62/24</name> <source>62/24@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviamdrawing_m 105/20</name> <source>105/20@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviammask_m 40/0</name> <source>40/0@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviammaskAdd_m 105/21</name> <source>105/21@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviammaskDrop_m 105/22</name> <source>105/22@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm2drawing_m 105/44</name> <source>105/44@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm2mask_m 41/0</name> <source>41/0@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm2maskAdd_m 105/43</name> <source>105/43@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm2maskDrop_m 105/42</name> <source>105/42@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm2waffleDrop_m 105/52</name> <source>105/52@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam2drawing_m 108/20</name> <source>108/20@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam2mask_m 44/0</name> <source>44/0@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam2maskAdd_m 108/21</name> <source>108/21@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam2maskDrop_m 108/22</name> <source>108/22@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm3drawing_m 107/20</name> <source>107/20@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm3mask_m 34/0</name> <source>34/0@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm3maskAdd_m 107/21</name> <source>107/21@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm3maskDrop_m 107/22</name> <source>107/22@1</source> </properties> <properties> <frame-color>#5e00e6</frame-color> <fill-color>#5e00e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm3waffleDrop_m 107/24</name> <source>107/24@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnpcdrawing_m 44/20</name> <source>44/20@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnpcmask_m 49/0</name> <source>49/0@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnpcmaskAdd_m 44/43</name> <source>44/43@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnpcmaskDrop_m 44/42</name> <source>44/42@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam3drawing_m 112/20</name> <source>112/20@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam3mask_m 50/0</name> <source>50/0@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam3maskAdd_m 112/21</name> <source>112/21@1</source> </properties> <properties> <frame-color>#268c6b</frame-color> <fill-color>#268c6b</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam3maskDrop_m 112/22</name> <source>112/22@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cnsmmask_m 22/0</name> <source>22/0@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpdmdrawing_m 104/44</name> <source>104/44@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpdmmask_m 37/0</name> <source>37/0@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpdmmaskAdd_m 104/43</name> <source>104/43@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpdmmaskDrop_m 104/42</name> <source>104/42@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpmmdrawing_m 91/44</name> <source>91/44@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpbomask_m 99/0</name> <source>99/0@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm4mask_m 51/0</name> <source>51/0@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm4maskAdd_m 112/43</name> <source>112/43@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm4maskDrop_m 112/42</name> <source>112/42@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm4waffleDrop_m 112/4</name> <source>112/4@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam4drawing_m 117/20</name> <source>117/20@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam4mask_m 58/0</name> <source>58/0@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam4maskAdd_m 117/21</name> <source>117/21@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cviam4maskDrop_m 117/22</name> <source>117/22@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm5mask_m 59/0</name> <source>59/0@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cmm5waffleDrop_m 117/4</name> <source>117/4@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>targetdrawing_m 76/44</name> <source>76/44@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cctm1drawing_m 101/44</name> <source>101/44@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cctm1mask_m 35/0</name> <source>35/0@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cctm1maskAdd_m 101/43</name> <source>101/43@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cctm1maskDrop_m 101/42</name> <source>101/42@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>crpmdrawing_m 53/44</name> <source>53/44@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>crpmmask_m 96/0</name> <source>96/0@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>crpmmaskAdd_m 53/43</name> <source>53/43@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>crpmmaskDrop_m 53/42</name> <source>53/42@1</source> </properties> <properties> <frame-color>#e61f0d</frame-color> <fill-color>#e61f0d</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>ccu1mmask_m 93/0</name> <source>93/0@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cpmm2mask_m 94/0</name> <source>94/0@1</source> </properties> <properties> <frame-color>#ccccd9</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cubmmask_m 100/0</name> <source>100/0@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>cbumpmask_m 101/0</name> <source>101/0@1</source> </properties> <properties> <frame-color>#00bfff</frame-color> <fill-color>#00bfff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>overlapdrawing_m 90/20</name> <source>90/20@1</source> </properties> <properties> <frame-color>#ff7f50</frame-color> <fill-color>#ff7f50</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>overlapboundary_m 90/4</name> <source>90/4@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidlowTapDensity_m 81/14</name> <source>81/14@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidnotCritSide_m 81/15</name> <source>81/15@1</source> </properties> <properties> <frame-color>#adff2f</frame-color> <fill-color>#adff2f</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidinjection_m 81/17</name> <source>81/17@1</source> </properties> <properties> <frame-color>#bebed8</frame-color> <fill-color>#bebed8</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidrfdiode_m 81/125</name> <source>81/125@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidseal_m 81/1</name> <source>81/1@1</source> </properties> <properties> <frame-color>#d9e6ff</frame-color> <fill-color>#d9e6ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidcore_m 81/2</name> <source>81/2@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidframe_m 81/3</name> <source>81/3@1</source> </properties> <properties> <frame-color>#d9cc00</frame-color> <fill-color>#d9cc00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidesd_m 81/19</name> <source>81/19@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaiddieCut_m 81/11</name> <source>81/11@1</source> </properties> <properties> <frame-color>#00ff00</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidmoduleCut_m 81/10</name> <source>81/10@1</source> </properties> <properties> <frame-color>#00ffff</frame-color> <fill-color>#00ffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidframeRect_m 81/12</name> <source>81/12@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#ccccd9</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidsubstrateCut_m 81/53</name> <source>81/53@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaiddiode_m 81/23</name> <source>81/23@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#ff00ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidstandardc_m 81/4</name> <source>81/4@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaiddeadZon_m 81/50</name> <source>81/50@1</source> </properties> <properties> <frame-color>#ff8000</frame-color> <fill-color>#ff8000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidcritCorner_m 81/51</name> <source>81/51@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidcritSid_m 81/52</name> <source>81/52@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#c8ffc8</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidopcDrop_m 81/54</name> <source>81/54@1</source> </properties> <properties> <frame-color>#00bfff</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidwaffleWindow_m 81/13</name> <source>81/13@1</source> </properties> <properties> <frame-color>#daa520</frame-color> <fill-color>#daa520</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidextendedDrain_m 81/57</name> <source>81/57@1</source> </properties> <properties> <frame-color>#ffbff2</frame-color> <fill-color>#ffbff2</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidlvNative_m 81/60</name> <source>81/60@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidphoto_m 81/81</name> <source>81/81@1</source> </properties> <properties> <frame-color>#ff00ff</frame-color> <fill-color>#00ff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidetest_m 81/101</name> <source>81/101@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidhvnwell_m 81/63</name> <source>81/63@1</source> </properties> <properties> <frame-color>#9900e6</frame-color> <fill-color>#9900e6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidrdlprobepad_m 81/27</name> <source>81/27@1</source> </properties> <properties> <frame-color>#00bfff</frame-color> <fill-color>#00bfff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidsigPadDiff_m 81/6</name> <source>81/6@1</source> </properties> <properties> <frame-color>#c8ffc8</frame-color> <fill-color>#c8ffc8</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidsigPadWell_m 81/7</name> <source>81/7@1</source> </properties> <properties> <frame-color>#ff7f50</frame-color> <fill-color>#ff7f50</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidsigPadMetNtr_m 81/8</name> <source>81/8@1</source> </properties> <properties> <frame-color>#ff6464</frame-color> <fill-color>#ff6464</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>3</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>areaidanalog_m 81/79</name> <source>81/79@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>prunedrawing_m 84/44</name> <source>84/44@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>padCenterdrawing_m 81/20</name> <source>81/20@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa1_m 68/88</name> <source>68/88@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa1_m 69/88</name> <source>69/88@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa1_m 70/88</name> <source>70/88@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa1_m 71/88</name> <source>71/88@1</source> </properties> <properties> <frame-color>#8c8ca6</frame-color> <fill-color>#8c8ca6</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa1_m 72/88</name> <source>72/88@1</source> </properties> <properties> <frame-color>#00ffe7</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa2_m 68/89</name> <source>68/89@1</source> </properties> <properties> <frame-color>#00ffe7</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa2_m 69/89</name> <source>69/89@1</source> </properties> <properties> <frame-color>#00ffe7</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa2_m 70/89</name> <source>70/89@1</source> </properties> <properties> <frame-color>#00ffe7</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa2_m 71/89</name> <source>71/89@1</source> </properties> <properties> <frame-color>#00ffe7</frame-color> <fill-color>#00ffe7</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa2_m 72/89</name> <source>72/89@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa3_m 68/90</name> <source>68/90@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa3_m 69/90</name> <source>69/90@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa3_m 70/90</name> <source>70/90@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa3_m 71/90</name> <source>71/90@1</source> </properties> <properties> <frame-color>#ffffcc</frame-color> <fill-color>#ffffcc</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa3_m 72/90</name> <source>72/90@1</source> </properties> <properties> <frame-color>#802626</frame-color> <fill-color>#802626</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa4_m 68/91</name> <source>68/91@1</source> </properties> <properties> <frame-color>#802626</frame-color> <fill-color>#802626</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa4_m 69/91</name> <source>69/91@1</source> </properties> <properties> <frame-color>#802626</frame-color> <fill-color>#802626</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa4_m 70/91</name> <source>70/91@1</source> </properties> <properties> <frame-color>#802626</frame-color> <fill-color>#802626</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa4_m 71/91</name> <source>71/91@1</source> </properties> <properties> <frame-color>#802626</frame-color> <fill-color>#802626</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa4_m 72/91</name> <source>72/91@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa5_m 68/92</name> <source>68/92@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa5_m 69/92</name> <source>69/92@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa5_m 70/92</name> <source>70/92@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa5_m 71/92</name> <source>71/92@1</source> </properties> <properties> <frame-color>#333399</frame-color> <fill-color>#333399</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa5_m 72/92</name> <source>72/92@1</source> </properties> <properties> <frame-color>#fa8072</frame-color> <fill-color>#fa8072</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern/> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met1psa6_m 68/93</name> <source>68/93@1</source> </properties> <properties> <frame-color>#fa8072</frame-color> <fill-color>#fa8072</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met2psa6_m 69/93</name> <source>69/93@1</source> </properties> <properties> <frame-color>#fa8072</frame-color> <fill-color>#fa8072</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met3psa6_m 70/93</name> <source>70/93@1</source> </properties> <properties> <frame-color>#fa8072</frame-color> <fill-color>#fa8072</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met4psa6_m 71/93</name> <source>71/93@1</source> </properties> <properties> <frame-color>#fa8072</frame-color> <fill-color>#fa8072</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>met5psa6_m 72/93</name> <source>72/93@1</source> </properties> <properties> <frame-color>#ff0000</frame-color> <fill-color>#ff0000</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa1_m 74/88</name> <source>74/88@1</source> </properties> <properties> <frame-color>#0000ff</frame-color> <fill-color>#0000ff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa2_m 74/89</name> <source>74/89@1</source> </properties> <properties> <frame-color>#00cc66</frame-color> <fill-color>#00cc66</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa3_m 74/90</name> <source>74/90@1</source> </properties> <properties> <frame-color>#ffffff</frame-color> <fill-color>#ffffff</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa4_m 74/91</name> <source>74/91@1</source> </properties> <properties> <frame-color>#ffff00</frame-color> <fill-color>#ffff00</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa5_m 74/92</name> <source>74/92@1</source> </properties> <properties> <frame-color>#bf4026</frame-color> <fill-color>#bf4026</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>true</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>rdlpsa6_m 74/93</name> <source>74/93@1</source> </properties> <properties> <frame-color>#ffe6bf</frame-color> <fill-color>#ffe6bf</fill-color> <frame-brightness>0</frame-brightness> <fill-brightness>0</fill-brightness> <dither-pattern>I1</dither-pattern> <line-style/> <valid>false</valid> <visible>true</visible> <transparent>false</transparent> <width>1</width> <marked>false</marked> <xfill>false</xfill> <animation>0</animation> <name>blankingdrawing_m 124/40</name> <source>124/40@1</source> </properties> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>1</order> <name>blank</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> <line>****************</line> </pattern> <order>2</order> <name>solid</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> </pattern> <order>3</order> <name>dots</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>****************</line> <line>................</line> <line>................</line> <line>................</line> <line>****************</line> <line>................</line> <line>................</line> <line>................</line> <line>****************</line> <line>................</line> <line>................</line> <line>................</line> <line>****************</line> </pattern> <order>4</order> <name>hLine</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> <line>..*...*...*...*.</line> </pattern> <order>5</order> <name>vLine</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> </pattern> <order>6</order> <name>cross</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****************</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****************</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****************</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****************</line> </pattern> <order>7</order> <name>grid</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> </pattern> <order>8</order> <name>slash</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*...*...*...*...</line> <line>.*...*...*...*..</line> <line>..*...*...*...*.</line> <line>...*...*...*...*</line> <line>*...*...*...*...</line> <line>.*...*...*...*..</line> <line>..*...*...*...*.</line> <line>...*...*...*...*</line> <line>*...*...*...*...</line> <line>.*...*...*...*..</line> <line>..*...*...*...*.</line> <line>...*...*...*...*</line> <line>*...*...*...*...</line> <line>.*...*...*...*..</line> <line>..*...*...*...*.</line> <line>...*...*...*...*</line> </pattern> <order>9</order> <name>backSlash</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>**......**......</line> <line>..*.......*.....</line> <line>...**......**...</line> <line>.....*.......*..</line> <line>......**......**</line> <line>*.......*.......</line> <line>.**......**.....</line> <line>...*.......*....</line> <line>....**......**..</line> <line>......*.......*.</line> <line>*......**......*</line> <line>.*.......*......</line> <line>..**......**....</line> <line>....*.......*...</line> <line>.....**......**.</line> <line>.......*.......*</line> </pattern> <order>10</order> <name>hZigZag</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*....*....*.....</line> <line>*.....*....*....</line> <line>.*....*.....*...</line> <line>..*....*....*...</line> <line>..*.....*....*..</line> <line>...*....*.....*.</line> <line>....*....*....*.</line> <line>....*.....*....*</line> <line>*....*....*.....</line> <line>*.....*....*....</line> <line>.*....*.....*...</line> <line>..*....*....*...</line> <line>..*.....*....*..</line> <line>...*....*.....*.</line> <line>....*....*....*.</line> <line>....*.....*....*</line> </pattern> <order>11</order> <name>vZigZag</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>...*****...*****</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****...*****...*</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>...*****...*****</line> <line>...*...*...*...*</line> <line>...*...*...*...*</line> <line>****...*****...*</line> <line>................</line> <line>................</line> </pattern> <order>12</order> <name>hCurb</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>..****....****..</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..****....****..</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>..****....****..</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..****....****..</line> </pattern> <order>13</order> <name>vCurb</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>****************</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>****************</line> <line>......*.......*.</line> <line>......*.......*.</line> <line>......*.......*.</line> <line>****************</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>****************</line> <line>......*.......*.</line> <line>......*.......*.</line> <line>......*.......*.</line> </pattern> <order>14</order> <name>brick</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>*****...*****...</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>..*.......*.....</line> <line>................</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>...*****...*****</line> <line>.....*.......*..</line> <line>.....*.......*..</line> <line>.....*.......*..</line> </pattern> <order>15</order> <name>dagger</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>..*.............</line> <line>..*.............</line> <line>..*.............</line> <line>*****...........</line> <line>..*.............</line> <line>..*.............</line> <line>..*.............</line> <line>................</line> <line>.............*..</line> <line>.............*..</line> <line>.............*..</line> <line>...........*****</line> <line>.............*..</line> <line>.............*..</line> <line>.............*..</line> </pattern> <order>16</order> <name>sparseDagger</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>..........*.....</line> <line>..........*.....</line> <line>..........*.....</line> <line>........*****...</line> <line>..........*.....</line> <line>..........*.....</line> <line>..........*.....</line> <line>................</line> <line>.....*..........</line> <line>.....*..........</line> <line>.....*..........</line> <line>...*****........</line> <line>.....*..........</line> <line>.....*..........</line> <line>.....*..........</line> </pattern> <order>17</order> <name>sparseDagger2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>....*...........</line> <line>...*.*..........</line> <line>..*...*.........</line> <line>.*.....*........</line> <line>*********.......</line> <line>................</line> <line>................</line> <line>................</line> <line>...........*....</line> <line>..........*.*...</line> <line>.........*...*..</line> <line>........*.....*.</line> <line>.......*********</line> <line>................</line> <line>................</line> </pattern> <order>18</order> <name>triangle</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*...*...*...*...</line> <line>.*.*.*.*.*.*.*.*</line> <line>..*...*...*...*.</line> <line>.*.*.*.*.*.*.*.*</line> </pattern> <order>19</order> <name>x</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>.*.....*.....*..</line> <line>..*...**....*...</line> <line>...*.*.*...*....</line> <line>....*..*..*.....</line> <line>.....*.*.*......</line> <line>......***.......</line> <line>.......*........</line> <line>......***.......</line> <line>.....*.*.*......</line> <line>....*..*..*.....</line> <line>...*...*...*....</line> <line>..*....*....*...</line> <line>.*..*******..*..</line> <line>................</line> <line>................</line> </pattern> <order>20</order> <name>Xone</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>.*....**.....*..</line> <line>..*..*..*...*...</line> <line>...**....*.*....</line> <line>....*....**.....</line> <line>.....*...*......</line> <line>......*.*.......</line> <line>.......*........</line> <line>......*.*.......</line> <line>.....*...*......</line> <line>....*.....*.....</line> <line>...**......*....</line> <line>..*.*.......*...</line> <line>.*..******...*..</line> <line>................</line> <line>................</line> </pattern> <order>21</order> <name>Xtwo</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>......*.......*.</line> <line>................</line> <line>................</line> <line>................</line> <line>..*.......*.....</line> <line>................</line> <line>................</line> <line>................</line> <line>......*.......*.</line> <line>................</line> <line>................</line> <line>................</line> <line>..*.......*.....</line> <line>................</line> </pattern> <order>22</order> <name>spareDots</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>......*.......*.</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>..*.......*.....</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>23</order> <name>spareDots21</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>......*.......*.</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>..*.......*.....</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>24</order> <name>spareDots22</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> </pattern> <order>25</order> <name>checker</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>....****....****</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> <line>****....****....</line> </pattern> <order>26</order> <name>checker2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>.......*........</line> <line>......**........</line> <line>.......*........</line> <line>.......*........</line> <line>.......*........</line> <line>.......*........</line> <line>......***.......</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>27</order> <name>one</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>.......**.......</line> <line>......*..*......</line> <line>.........*......</line> <line>........*.......</line> <line>.......*........</line> <line>......*.........</line> <line>......****......</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>28</order> <name>two</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>......***.......</line> <line>.....*...*......</line> <line>.........*......</line> <line>.......**.......</line> <line>.........*......</line> <line>.....*...*......</line> <line>......***.......</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>29</order> <name>three</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>.............*..</line> <line>............**..</line> <line>...........*.*..</line> <line>..........*..*..</line> <line>.........******.</line> <line>.............*..</line> <line>.............*..</line> <line>................</line> </pattern> <order>30</order> <name>four</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>......***.......</line> <line>.....*..........</line> <line>.....*..........</line> <line>.....***........</line> <line>........*.......</line> <line>........*.......</line> <line>.....***........</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>31</order> <name>five</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>.......***......</line> <line>......*.........</line> <line>......*.........</line> <line>......****......</line> <line>......*...*.....</line> <line>......*...*.....</line> <line>.......***......</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>32</order> <name>six</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>.....******.....</line> <line>..........*.....</line> <line>.........*......</line> <line>.........*......</line> <line>........*.......</line> <line>........*.......</line> <line>.......*........</line> <line>......*.........</line> <line>.....*..........</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>33</order> <name>seven</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>......***.......</line> <line>.....*...*......</line> <line>.....*...*......</line> <line>......***.......</line> <line>.....*...*......</line> <line>.....*...*......</line> <line>......***.......</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>34</order> <name>eight</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*..............*</line> <line>.*............*.</line> <line>..*..........*..</line> <line>...*........*...</line> <line>....*......*....</line> <line>.....*....*.....</line> <line>......*..*......</line> <line>.......**.......</line> <line>.......**.......</line> <line>......*..*......</line> <line>.....*....*.....</line> <line>....*......*....</line> <line>...*........*...</line> <line>..*..........*..</line> <line>.*............*.</line> <line>*..............*</line> </pattern> <order>35</order> <name>box45</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> <line>.*.*.*.*.*.*.*.*</line> <line>*.*.*.*.*.*.*.*.</line> </pattern> <order>36</order> <name>gray50</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> <line>*...*...*...*...</line> <line>................</line> <line>..*...*...*...*.</line> <line>................</line> </pattern> <order>37</order> <name>gray25</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.*.*.*...*.*.*..</line> <line>................</line> <line>...*...*...*...*</line> <line>................</line> <line>.*...*.*.*...*.*</line> <line>................</line> <line>...*...*...*...*</line> <line>................</line> <line>.*.*.*...*.*.*..</line> <line>................</line> <line>...*...*...*...*</line> <line>................</line> <line>.*...*.*.*...*.*</line> <line>................</line> <line>...*...*...*...*</line> <line>................</line> </pattern> <order>38</order> <name>snow</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>..*.......*.....</line> <line>...*.......*....</line> <line>....*.......*...</line> <line>.....*.......*..</line> <line>......*.......*.</line> <line>.......*.......*</line> <line>*.......*.......</line> <line>.*.......*......</line> <line>..*.......*.....</line> <line>...*.......*....</line> <line>....*.......*...</line> <line>.....*.......*..</line> <line>......*.......*.</line> <line>.......*.......*</line> <line>*.......*.......</line> <line>.*.......*......</line> </pattern> <order>39</order> <name>backSlash2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*.....*.*.....*.</line> <line>.*...*...*...*..</line> <line>..*.*.....*.*...</line> <line>...*...*...*...*</line> <line>..*.*.....*.*...</line> <line>.*...*...*...*..</line> <line>*.....*.*.....*.</line> <line>...*...*...*...*</line> <line>*.....*.*.....*.</line> <line>.*...*...*...*..</line> <line>..*.*.....*.*...</line> <line>...*...*...*...*</line> <line>..*.*.....*.*...</line> <line>.*...*...*...*..</line> <line>*.....*.*.....*.</line> <line>...*...*...*...*</line> </pattern> <order>40</order> <name>lattice</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>**..**..**..**..</line> <line>**..**..**..**..</line> <line>..**..**..**..**</line> <line>..**..**..**..**</line> <line>**..**..**..**..</line> <line>**..**..**..**..</line> <line>..**..**..**..**</line> <line>..**..**..**..**</line> <line>**..**..**..**..</line> <line>**..**..**..**..</line> <line>..**..**..**..**</line> <line>..**..**..**..**</line> <line>**..**..**..**..</line> <line>**..**..**..**..</line> <line>..**..**..**..**</line> <line>..**..**..**..**</line> </pattern> <order>41</order> <name>smallChecker</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>....*...........</line> <line>...*.*..........</line> <line>..*...*.........</line> <line>.*.....*........</line> <line>*.......*.......</line> <line>.*.......*......</line> <line>..*.......*.....</line> <line>...*.......*....</line> <line>....*.......*...</line> <line>.....*.......*..</line> <line>......*.......*.</line> <line>.......*.......*</line> <line>........*.....*.</line> <line>.........*...*..</line> <line>..........*.*...</line> <line>...........*....</line> </pattern> <order>42</order> <name>slantBox</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> <line>.*...*...*...*..</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>..*...*...*...*.</line> </pattern> <order>43</order> <name>slash2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>...*.......*....</line> <line>..*.......*.....</line> <line>.*.......*......</line> <line>*.......*.......</line> <line>.......*.......*</line> <line>......*.......*.</line> <line>.....*.......*..</line> <line>....*.......*...</line> <line>...*.......*....</line> <line>..*.......*.....</line> <line>.*.......*......</line> <line>*.......*.......</line> <line>.......*.......*</line> <line>......*.......*.</line> <line>.....*.......*..</line> <line>....*.......*...</line> </pattern> <order>44</order> <name>bigSlash</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>****....****....</line> <line>*..*....*..*....</line> <line>*..*....*..*....</line> <line>****....****....</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>****....****....</line> <line>*..*....*..*....</line> <line>*..*....*..*....</line> <line>****....****....</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> </pattern> <order>45</order> <name>boxes</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>..**......**....</line> <line>.*..*....*..*...</line> <line>*....*..*....*..</line> <line>*....*..*....*..</line> <line>.*..*....*..*...</line> <line>..**......**....</line> <line>................</line> <line>................</line> <line>..**......**....</line> <line>.*..*....*..*...</line> <line>*....*..*....*..</line> <line>*....*..*....*..</line> <line>.*..*....*..*...</line> <line>..**......**....</line> <line>................</line> <line>................</line> </pattern> <order>46</order> <name>circles</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.**..**..**..**.</line> <line>...*...*...*...*</line> <line>*...*...*...*...</line> <line>.**..**..**..**.</line> <line>.**..**..**..**.</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>.**..**..**..**.</line> <line>.**..**..**..**.</line> <line>...*...*...*...*</line> <line>*...*...*...*...</line> <line>.**..**..**..**.</line> <line>.**..**..**..**.</line> <line>*...*...*...*...</line> <line>...*...*...*...*</line> <line>.**..**..**..**.</line> </pattern> <order>47</order> <name>zigzag</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>*.*.*.*.*.*.*.*.</line> <line>................</line> <line>...*....*....*..</line> <line>................</line> <line>*.*.*.*.*.*.*.*.</line> <line>................</line> <line>...*....*....*..</line> <line>................</line> <line>*.*.*.*.*.*.*.*.</line> <line>................</line> <line>...*....*....*..</line> <line>................</line> <line>*.*.*.*.*.*.*.*.</line> <line>................</line> <line>...*....*....*..</line> </pattern> <order>48</order> <name>lightMesh</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>...............*</line> <line>..............*.</line> <line>.............*..</line> <line>............*...</line> <line>...........*....</line> <line>..........*.....</line> <line>.........*......</line> <line>........*.......</line> <line>.......*........</line> <line>......*.........</line> <line>.....*..........</line> <line>....*...........</line> <line>...*............</line> <line>..*.............</line> <line>.*..............</line> <line>*...............</line> </pattern> <order>49</order> <name>hugeSlash</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*...............</line> <line>.*..............</line> <line>..*.............</line> <line>...*............</line> <line>....*...........</line> <line>.....*..........</line> <line>......*.........</line> <line>.......*........</line> <line>........*.......</line> <line>.........*......</line> <line>..........*.....</line> <line>...........*....</line> <line>............*...</line> <line>.............*..</line> <line>..............*.</line> <line>...............*</line> </pattern> <order>50</order> <name>hugeSlash2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>*.........*.....</line> <line>.....*..........</line> <line>..*.........*...</line> <line>.......*........</line> <line>....*.........*.</line> <line>.*.......*......</line> <line>......*.........</line> <line>...*.......*....</line> <line>........*.......</line> <line>.....*.......*..</line> <line>*.........*.....</line> <line>.......*........</line> <line>..*.........*...</line> <line>.........*......</line> <line>....*.........*.</line> <line>...........*....</line> </pattern> <order>51</order> <name>curve</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>....*....*....*.</line> <line>..*.............</line> <line>*.......*.......</line> <line>.............*..</line> <line>.......*........</line> <line>............*...</line> <line>.....*..........</line> <line>...*.......*....</line> <line>*...............</line> <line>................</line> <line>.........*......</line> <line>................</line> <line>......*........*</line> <line>...*............</line> <line>*............*..</line> <line>..........*.....</line> </pattern> <order>52</order> <name>curve2</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>...........*....</line> <line>..........*.*...</line> <line>.........*...*..</line> <line>........*.....*.</line> <line>.........*...*..</line> <line>..........*.*...</line> <line>...........*....</line> <line>................</line> <line>................</line> <line>...*............</line> <line>..*.*...........</line> <line>.*...*..........</line> <line>*.....*.........</line> <line>.*...*..........</line> <line>..*.*...........</line> <line>...*............</line> </pattern> <order>53</order> <name>diams</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>................</line> <line>...*............</line> <line>..*.*...........</line> <line>.*...*..........</line> <line>*.....*.........</line> <line>.*...*..........</line> <line>..*.*...........</line> <line>...*............</line> </pattern> <order>54</order> <name>sparsediam</name> </custom-dither-pattern> <custom-dither-pattern> <pattern> <line>.......*.......*</line> <line>......*.........</line> <line>.....*..........</line> <line>................</line> <line>................</line> <line>................</line> <line>.*..............</line> <line>*...............</line> <line>.......*.......*</line> <line>..............*.</line> <line>.............*..</line> <line>................</line> <line>................</line> <line>................</line> <line>.........*......</line> <line>........*.......</line> </pattern> <order>55</order> <name>rain</name> </custom-dither-pattern> <custom-line-pattern> <pattern>***</pattern> <order>1</order> <name>solid</name> </custom-line-pattern> <custom-line-pattern> <pattern>****..</pattern> <order>2</order> <name>dashed</name> </custom-line-pattern> <custom-line-pattern> <pattern>*..</pattern> <order>3</order> <name>dots</name> </custom-line-pattern> <custom-line-pattern> <pattern>***..*..</pattern> <order>4</order> <name>dashDot</name> </custom-line-pattern> <custom-line-pattern> <pattern>**..</pattern> <order>5</order> <name>shortDash</name> </custom-line-pattern> <custom-line-pattern> <pattern>****..**..</pattern> <order>6</order> <name>doubleDash</name> </custom-line-pattern> <custom-line-pattern> <pattern>*...</pattern> <order>7</order> <name>hidden</name> </custom-line-pattern> <custom-line-pattern> <pattern>***</pattern> <order>8</order> <name>thickLine</name> </custom-line-pattern> </layer-properties>
skywater130/sky130/klayout/layers.lyp/0
{ "file_path": "skywater130/sky130/klayout/layers.lyp", "repo_id": "skywater130", "token_count": 94008 }
107
from math import ceil import gdsfactory as gf from gdsfactory.typings import Float2, LayerSpec @gf.cell def npn_W1L1( E_width: float = 1, E_length: float = 1, B_width: float = 0.4, C_width: float = 0.4, np_spacing: float = 0.27, diffusion_layer: LayerSpec = (65, 20), tap_layer: LayerSpec = (65, 44), diff_enclosure: Float2 = (0.18, 0.18), contact_size: Float2 = (0.17, 0.17), contact_spacing: Float2 = (0.17, 0.17), contact_layer: LayerSpec = (66, 44), contact_enclosure: Float2 = (0.06, 0.06), pwell_layer: LayerSpec = (64, 13), dnwell_enclosure: Float2 = (0.4, 0.4), dnwell_layer: LayerSpec = (64, 18), sdm_enclosure: Float2 = (0.125, 0.125), nsdm_layer: LayerSpec = (93, 44), sdm_spacing: float = 0.13, psdm_layer: LayerSpec = (94, 20), npn_layer: LayerSpec = (82, 20), li_width: float = 0.17, li_spacing: float = 0.17, li_layer: LayerSpec = (67, 20), li_enclosure: float = 0.08, mcon_layer: LayerSpec = (67, 44), mcon_enclosure: Float2 = (0.09, 0.09), m1_layer: LayerSpec = (68, 20), ) -> gf.Component: """Return npn_W1L1. npn device with emitter size 1u*1u .. plot:: :include-source: import sky130 c = sky130.pcells.npn_W1L1(np_spacing=1, B_width=0.8, C_width=0.8, E_length=2) c.plot() """ c = gf.Component() # generating Emitter rect_E = gf.components.rectangle(size=(E_width, E_length), layer=diffusion_layer) E = c.add_ref(rect_E) # generate its n+ implant rect_nme = gf.components.rectangle( size=(E_width + 2 * sdm_enclosure[0], E_length + 2 * sdm_enclosure[1]), layer=nsdm_layer, ) nsdm_e = c.add_ref(rect_nme) nsdm_e.move((-sdm_enclosure[0], -sdm_enclosure[1])) # generate its contacts and local interconnects and mcon and metal1 rect_c = gf.components.rectangle(size=contact_size, layer=contact_layer) nr_e = ceil(E_length / (contact_size[1] + contact_spacing[1])) nc_e = ceil(E_width / (contact_size[0] + contact_spacing[0])) if ( E_width - nc_e * contact_size[0] - (nc_e - 1) * contact_spacing[0] ) / 2 < contact_enclosure[0]: nc_e -= 1 if ( E_length - nr_e * contact_size[1] - (nr_e - 1) * contact_spacing[1] ) / 2 < contact_enclosure[1]: nr_e -= 1 rect_mc = gf.components.rectangle(size=contact_size, layer=mcon_layer) rect_c_mc = [rect_c, rect_mc] for i in rect_c_mc: con_sp = ( contact_size[0] + contact_spacing[0], contact_size[1] + contact_spacing[1], ) cont_e_arr = c.add_array(i, rows=nr_e, columns=nc_e, spacing=con_sp) cont_e_arr.movex( (E_width - nc_e * contact_size[0] - (nc_e - 1) * contact_spacing[0]) / 2 ) cont_e_arr.movey( (E_length - nr_e * contact_size[1] - (nr_e - 1) * contact_spacing[1]) / 2 ) rect_eli = gf.components.rectangle( size=( nc_e * contact_size[0] + (nc_e - 1) * contact_spacing[0] + 2 * li_enclosure, nr_e * contact_size[1] + (nr_e - 1) * contact_spacing[1] + 2 * li_enclosure, ), layer=li_layer, ) # rect_eli = gf.components.rectangle(size = (nc_e*contact_size[0] + (nc_e -1)*contact_spacing[0] , nr_e*contact_size[1] + (nr_e-1)*contact_spacing[1] ), layer= li_layer) li_e = c.add_ref(rect_eli) li_e.movex( ( E_width - nc_e * contact_size[0] - (nc_e - 1) * contact_spacing[0] - 2 * li_enclosure ) / 2 ) li_e.movey( ( E_length - nr_e * contact_size[1] - (nr_e - 1) * contact_spacing[1] - 2 * li_enclosure ) / 2 ) rect_em1 = gf.components.rectangle( size=( nc_e * contact_size[0] + (nc_e - 1) * contact_spacing[0] + 2 * mcon_enclosure[0], nr_e * contact_size[1] + (nr_e - 1) * contact_spacing[1] + 2 * mcon_enclosure[1], ), layer=m1_layer, ) m1_e = c.add_ref(rect_em1) m1_e.movex( ( E_width - nc_e * contact_size[0] - (nc_e - 1) * contact_spacing[0] - 2 * mcon_enclosure[0] ) / 2 ) m1_e.movey( ( E_length - nr_e * contact_size[1] - (nr_e - 1) * contact_spacing[1] - 2 * mcon_enclosure[1] ) / 2 ) # generating Base rect_B_in = gf.components.rectangle( size=(E_width + 2 * np_spacing, E_length + 2 * np_spacing), layer=tap_layer ) rect_B_out = gf.components.rectangle( size=( E_width + 2 * np_spacing + 2 * B_width, E_length + 2 * np_spacing + 2 * B_width, ), layer=tap_layer, ) c_B = gf.Component() c_B.add_ref(rect_E) B_in = c_B.add_ref(rect_B_in) B_out = c_B.add_ref(rect_B_out) B_in.connect("e1", destination=E.ports["e1"]) B_in.movex(E_width + np_spacing) B_out.connect("e1", destination=E.ports["e1"]) B_out.movex(E_width + np_spacing + B_width) c.add_ref(gf.geometry.boolean(A=B_out, B=B_in, operation="A-B", layer=tap_layer)) # generate its p+ implants rect_pmB_in = gf.components.rectangle( size=( E_width + 2 * np_spacing - 2 * sdm_enclosure[0], E_length + 2 * np_spacing - 2 * sdm_enclosure[1], ), layer=psdm_layer, ) rect_pmB_out = gf.components.rectangle( size=( E_width + 2 * np_spacing + 2 * B_width + 2 * sdm_enclosure[0], E_length + 2 * np_spacing + 2 * B_width + 2 * sdm_enclosure[1], ), layer=psdm_layer, ) pmB_in = c_B.add_ref(rect_pmB_in) pmB_out = c_B.add_ref(rect_pmB_out) pmB_in.connect("e1", destination=E.ports["e1"]) pmB_in.movex(E_width + np_spacing - sdm_enclosure[0]) pmB_out.connect("e1", destination=E.ports["e1"]) pmB_out.movex(E_width + np_spacing + B_width + sdm_enclosure[1]) c.add_ref( gf.geometry.boolean(A=pmB_out, B=pmB_in, operation="A-B", layer=psdm_layer) ) # generate its contacts and local interconnects and mcon and metal1 nr = ceil((B_in.ymax - B_in.ymin) / (contact_size[1] + contact_spacing[1])) nc = ceil((B_width) / (contact_size[0] + contact_spacing[0])) if ( (B_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2 ) < contact_enclosure[0]: nc -= 1 if ( (B_in.ymax - B_in.ymin - nr * contact_size[1] - (nr - 1) * contact_spacing[1]) / 2 ) < contact_enclosure[1]: nr -= 1 rect_layer = [li_layer, m1_layer] for i in range(2): rect_in = gf.components.rectangle( size=( E_width + 2 * np_spacing + (B_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) - 2 * i * mcon_enclosure[0] - 2 * (1 - i) * li_enclosure, E_length + 2 * np_spacing + ( (B_width - nc * contact_size[1] - (nc - 1) * contact_spacing[1]) - 2 * i * mcon_enclosure[1] - 2 * (1 - i) * li_enclosure ), ), layer=rect_layer[i], ) rect_out = gf.components.rectangle( size=( E_width + 2 * np_spacing + 2 * B_width - (B_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) + 2 * i * mcon_enclosure[0] + 2 * (1 - i) * li_enclosure, E_length + 2 * np_spacing + 2 * B_width - (B_width - nc * contact_size[1] - (nc - 1) * contact_spacing[1]) + 2 * i * mcon_enclosure[1] + 2 * (1 - i) * li_enclosure, ), layer=rect_layer[i], ) li_m1_b_in = c_B.add_ref(rect_in) li_m1_b_out = c_B.add_ref(rect_out) li_m1_b_in.connect("e1", destination=E.ports["e1"]) li_m1_b_in.movex( ( E_width + np_spacing + (B_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2 ) - i * mcon_enclosure[0] - (1 - i) * li_enclosure ) li_m1_b_out.connect("e1", destination=E.ports["e1"]) li_m1_b_out.movex( ( E_width + np_spacing + B_width - ((B_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2) + i * mcon_enclosure[0] ) + (1 - i) * li_enclosure ) c.add_ref( gf.geometry.boolean( A=li_m1_b_out, B=li_m1_b_in, operation="A-B", layer=rect_layer[i] ) ) for i in rect_c_mc: nr_b = nr nc_b = nc cont_B_arr1 = c.add_array( i, rows=nr_b, columns=nc_b, spacing=con_sp ) # left side cont_B_arr1.move((-np_spacing - B_width, -np_spacing)) cont_B_arr1.movex( (B_width - nc_b * contact_size[0] - (nc_b - 1) * contact_spacing[0]) / 2 ) cont_B_arr1.movey( ( B_in.ymax - B_in.ymin - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1] ) / 2 ) cont_B_arr2 = c.add_array( i, rows=nr_b, columns=nc_b, spacing=con_sp ) # right side cont_B_arr2.move((E_width + np_spacing, -np_spacing)) cont_B_arr2.movex( (B_width - nc_b * contact_size[0] - (nc_b - 1) * contact_spacing[0]) / 2 ) cont_B_arr2.movey( ( B_in.ymax - B_in.ymin - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1] ) / 2 ) nr_b, nc_b = nc_b, nr_b cont_B_arr3 = c.add_array( i, rows=nr_b, columns=nc_b, spacing=con_sp ) # upper side cont_B_arr3.move((-np_spacing, E_length + np_spacing)) cont_B_arr3.movex( ( B_in.xmax - B_in.xmin - nc_b * contact_size[0] - (nc_b - 1) * contact_spacing[0] ) / 2 ) cont_B_arr3.movey( (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2 ) cont_B_arr4 = c.add_array( i, rows=nr_b, columns=nc_b, spacing=con_sp ) # bottom side cont_B_arr4.move((-np_spacing, -np_spacing - B_width)) cont_B_arr4.movex( ( B_in.xmax - B_in.xmin - nc_b * contact_size[0] - (nc_b - 1) * contact_spacing[0] ) / 2 ) cont_B_arr4.movey( (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2 ) cont_B_arrc1 = c.add_array( i, rows=nr_b, columns=nr_b, spacing=con_sp ) # corners cont_B_arrc1.move((-np_spacing - B_width, -np_spacing - B_width)) cont_B_arrc1.move( ( (B_width - nr_b * contact_size[0] - (nr_b - 1) * contact_spacing[0]) / 2, (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2, ) ) cont_B_arrc2 = c.add_array(i, rows=nr_b, columns=nr_b, spacing=con_sp) cont_B_arrc2.move((-np_spacing - B_width, E_length + np_spacing)) cont_B_arrc2.move( ( (B_width - nr_b * contact_size[0] - (nr_b - 1) * contact_spacing[0]) / 2, (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2, ) ) cont_B_arrc3 = c.add_array(i, rows=nr_b, columns=nr_b, spacing=con_sp) cont_B_arrc3.move((E_width + np_spacing, -np_spacing - B_width)) cont_B_arrc3.move( ( (B_width - nr_b * contact_size[0] - (nr_b - 1) * contact_spacing[0]) / 2, (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2, ) ) cont_B_arrc4 = c.add_array(i, rows=nr_b, columns=nr_b, spacing=con_sp) cont_B_arrc4.move((E_width + np_spacing, E_length + np_spacing)) cont_B_arrc4.move( ( (B_width - nr_b * contact_size[0] - (nr_b - 1) * contact_spacing[0]) / 2, (B_width - nr_b * contact_size[1] - (nr_b - 1) * contact_spacing[1]) / 2, ) ) # generating Collector rect_C_in = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width, E_length + 4.5 * np_spacing + 2 * B_width, ), layer=tap_layer, ) rect_C_out = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width + 2 * C_width, E_length + 4.5 * np_spacing + 2 * B_width + 2 * C_width, ), layer=tap_layer, ) c_C = gf.Component() c_C.add_ref(rect_E) C_in = c_C.add_ref(rect_C_in) C_out = c_C.add_ref(rect_C_out) C_in.connect("e1", destination=E.ports["e1"]) C_in.movex(E_width + 2.25 * np_spacing + B_width) C_out.connect("e1", destination=E.ports["e1"]) C_out.movex(E_width + 2.25 * np_spacing + B_width + C_width) c.add_ref(gf.geometry.boolean(A=C_out, B=C_in, operation="A-B", layer=tap_layer)) # generate its n+ implants rect_nmC_in = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width - 2 * sdm_enclosure[0], E_length + 4.5 * np_spacing + 2 * B_width - 2 * sdm_enclosure[1], ), layer=nsdm_layer, ) rect_nmC_out = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width + 2 * C_width + 2 * sdm_enclosure[0], E_length + 4.5 * np_spacing + 2 * B_width + 2 * C_width + 2 * sdm_enclosure[1], ), layer=nsdm_layer, ) nmC_in = c_C.add_ref(rect_nmC_in) nmC_out = c_C.add_ref(rect_nmC_out) nmC_in.connect("e1", destination=E.ports["e1"]) nmC_in.movex(E_width + 2.25 * np_spacing + B_width - sdm_enclosure[0]) nmC_out.connect("e1", destination=E.ports["e1"]) nmC_out.movex(E_width + 2.25 * np_spacing + B_width + C_width + sdm_enclosure[0]) c.add_ref( gf.geometry.boolean(A=nmC_out, B=nmC_in, operation="A-B", layer=nsdm_layer) ) # generate its contact and local interconnects nr = ceil((C_in.ymax - C_in.ymin) / (contact_size[1] + contact_spacing[1])) nc = ceil((C_width) / (contact_size[0] + contact_spacing[0])) if ( (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2 ) < contact_enclosure[0]: nc -= 1 if ( (C_in.ymax - C_in.ymin - nr * contact_size[1] - (nr - 1) * contact_spacing[1]) / 2 ) < contact_enclosure[1]: nr -= 1 for i in range(2): rect_in = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width + (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) - 2 * i * mcon_enclosure[0] - 2 * (1 - i) * li_enclosure, E_length + 4.5 * np_spacing + 2 * B_width + (C_width - nc * contact_size[1] - (nc - 1) * contact_spacing[1]) - 2 * i * mcon_enclosure[1] - 2 * (1 - i) * li_enclosure, ), layer=rect_layer[i], ) rect_out = gf.components.rectangle( size=( E_width + 4.5 * np_spacing + 2 * B_width + 2 * C_width - (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) + 2 * i * mcon_enclosure[0] + 2 * (1 - i) * li_enclosure, E_length + 4.5 * np_spacing + 2 * B_width + 2 * C_width - (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) + 2 * i * mcon_enclosure[1] + 2 * (1 - i) * li_enclosure, ), layer=rect_layer[i], ) li_m1_c_in = c_C.add_ref(rect_in) li_m1_c_out = c_C.add_ref(rect_out) li_m1_c_in.connect("e1", destination=E.ports["e1"]) li_m1_c_in.movex( E_width + 2.25 * np_spacing + B_width + (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2 - i * mcon_enclosure[0] - (1 - i) * li_enclosure ) li_m1_c_out.connect("e1", destination=E.ports["e1"]) li_m1_c_out.movex( E_width + 2.25 * np_spacing + B_width + C_width - (C_width - nc * contact_size[0] - (nc - 1) * contact_spacing[0]) / 2 + i * mcon_enclosure[0] + (1 - i) * li_enclosure ) c.add_ref( gf.geometry.boolean( A=li_m1_c_out, B=li_m1_c_in, operation="A-B", layer=rect_layer[i] ) ) for i in rect_c_mc: nr_c = nr nc_c = nc cont_C_arr1 = c.add_array( i, rows=nr_c, columns=nc_c, spacing=con_sp ) # left side cont_C_arr1.move( (-2.25 * np_spacing - B_width - C_width, -2.25 * np_spacing - B_width) ) cont_C_arr1.movex( (C_width - nc_c * contact_size[0] - (nc_c - 1) * contact_spacing[0]) / 2 ) cont_C_arr1.movey( ( C_in.ymax - C_in.ymin - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1] ) / 2 ) cont_C_arr2 = c.add_array( i, rows=nr_c, columns=nc_c, spacing=con_sp ) # right side cont_C_arr2.move( (E_width + 2.25 * np_spacing + B_width, -2.25 * np_spacing - B_width) ) cont_C_arr2.movex( (C_width - nc_c * contact_size[0] - (nc_c - 1) * contact_spacing[0]) / 2 ) cont_C_arr2.movey( ( C_in.ymax - C_in.ymin - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1] ) / 2 ) nr_c, nc_c = nc_c, nr_c cont_C_arr3 = c.add_array( i, rows=nr_c, columns=nc_c, spacing=con_sp ) # upper side cont_C_arr3.move( (-2.25 * np_spacing - B_width, E_length + 2.25 * np_spacing + B_width) ) cont_C_arr3.movex( ( C_in.xmax - C_in.xmin - nc_c * contact_size[0] - (nc_c - 1) * contact_spacing[0] ) / 2 ) cont_C_arr3.movey( (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2 ) cont_C_arr4 = c.add_array( i, rows=nr_c, columns=nc_c, spacing=con_sp ) # bottom side cont_C_arr4.move( (-2.25 * np_spacing - B_width, -2.25 * np_spacing - B_width - C_width) ) cont_C_arr4.movex( ( C_in.xmax - C_in.xmin - nc_c * contact_size[0] - (nc_c - 1) * contact_spacing[0] ) / 2 ) cont_C_arr4.movey( (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2 ) cont_C_arrc1 = c.add_array( i, rows=nr_c, columns=nr_c, spacing=con_sp ) # corners cont_C_arrc1.move( ( -2.25 * np_spacing - B_width - C_width, -2.25 * np_spacing - B_width - C_width, ) ) cont_C_arrc1.move( ( (C_width - nr_c * contact_size[0] - (nr_c - 1) * contact_spacing[0]) / 2, (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2, ) ) cont_C_arrc2 = c.add_array( i, rows=nr_c, columns=nr_c, spacing=con_sp ) # corners cont_C_arrc2.move( ( -2.25 * np_spacing - B_width - C_width, E_length + 2.25 * np_spacing + B_width, ) ) cont_C_arrc2.move( ( (C_width - nr_c * contact_size[0] - (nr_c - 1) * contact_spacing[0]) / 2, (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2, ) ) cont_C_arrc3 = c.add_array( i, rows=nr_c, columns=nr_c, spacing=con_sp ) # corners cont_C_arrc3.move( ( E_width + 2.25 * np_spacing + B_width, E_length + 2.25 * np_spacing + B_width, ) ) cont_C_arrc3.move( ( (C_width - nr_c * contact_size[0] - (nr_c - 1) * contact_spacing[0]) / 2, (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2, ) ) cont_C_arrc4 = c.add_array( i, rows=nr_c, columns=nr_c, spacing=con_sp ) # corners cont_C_arrc4.move( ( E_width + 2.25 * np_spacing + B_width, -2.25 * np_spacing - B_width - C_width, ) ) cont_C_arrc4.move( ( (C_width - nr_c * contact_size[0] - (nr_c - 1) * contact_spacing[0]) / 2, (C_width - nr_c * contact_size[1] - (nr_c - 1) * contact_spacing[1]) / 2, ) ) # generating pwell around E & B rect_pwell = gf.components.rectangle( size=( B_out.xmax - B_out.xmin + 2 * diff_enclosure[0], B_out.ymax - B_out.ymin + 2 * diff_enclosure[1], ), layer=pwell_layer, ) pwell = c.add_ref(rect_pwell) pwell.connect("e1", destination=B_out.ports["e3"]) pwell.movex(B_out.xmax - B_out.xmin + diff_enclosure[0]) # generating deep nwell rect_dnw = gf.components.rectangle( size=( C_out.xmax - C_out.xmin + 2 * diff_enclosure[0], C_out.ymax - C_out.ymin + 2 * diff_enclosure[1], ), layer=dnwell_layer, ) dnwell = c.add_ref(rect_dnw) dnwell.connect("e1", destination=C_out.ports["e3"]) dnwell.movex(C_out.xmax - C_out.xmin + diff_enclosure[0]) # generating npn identifier npn = c.add_ref( gf.components.rectangle( size=(C_out.xmax - C_out.xmin, C_out.ymax - C_out.ymin), layer=npn_layer ) ) npn.connect("e1", destination=C_out.ports["e3"]) npn.movex(C_out.xmax - C_out.xmin) return c if __name__ == "__main__": c = npn_W1L1() # c = npn_W1L1(np_spacing=1, B_width=0.8, C_width=0.8, E_length=2) c.show(show_ports=True)
skywater130/sky130/pcells/npn_W1L1.py/0
{ "file_path": "skywater130/sky130/pcells/npn_W1L1.py", "repo_id": "skywater130", "token_count": 14140 }
108
function: sky130_fd_sc_hd__a211o_1 info: {} module: sky130.components name: sky130_fd_sc_hd__a211o_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a211o_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a211o_1_.yml", "repo_id": "skywater130", "token_count": 50 }
109
function: sky130_fd_sc_hd__a21oi_1 info: {} module: sky130.components name: sky130_fd_sc_hd__a21oi_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a21oi_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a21oi_1_.yml", "repo_id": "skywater130", "token_count": 50 }
110
function: sky130_fd_sc_hd__a2bb2o_1 info: {} module: sky130.components name: sky130_fd_sc_hd__a2bb2o_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a2bb2o_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a2bb2o_1_.yml", "repo_id": "skywater130", "token_count": 54 }
111
function: sky130_fd_sc_hd__a31oi_2 info: {} module: sky130.components name: sky130_fd_sc_hd__a31oi_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a31oi_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__a31oi_2_.yml", "repo_id": "skywater130", "token_count": 50 }
112
function: sky130_fd_sc_hd__and2_2 info: {} module: sky130.components name: sky130_fd_sc_hd__and2_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__and2_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__and2_2_.yml", "repo_id": "skywater130", "token_count": 48 }
113
function: sky130_fd_sc_hd__and4b_4 info: {} module: sky130.components name: sky130_fd_sc_hd__and4b_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__and4b_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__and4b_4_.yml", "repo_id": "skywater130", "token_count": 50 }
114
function: sky130_fd_sc_hd__clkbuf_1 info: {} module: sky130.components name: sky130_fd_sc_hd__clkbuf_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__clkbuf_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__clkbuf_1_.yml", "repo_id": "skywater130", "token_count": 50 }
115
function: sky130_fd_sc_hd__clkinv_8 info: {} module: sky130.components name: sky130_fd_sc_hd__clkinv_8 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__clkinv_8_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__clkinv_8_.yml", "repo_id": "skywater130", "token_count": 50 }
116
function: sky130_fd_sc_hd__dfrtp_2 info: {} module: sky130.components name: sky130_fd_sc_hd__dfrtp_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dfrtp_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dfrtp_2_.yml", "repo_id": "skywater130", "token_count": 50 }
117
function: sky130_fd_sc_hd__dlrbn_1 info: {} module: sky130.components name: sky130_fd_sc_hd__dlrbn_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dlrbn_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dlrbn_1_.yml", "repo_id": "skywater130", "token_count": 50 }
118
function: sky130_fd_sc_hd__dlxtp_1 info: {} module: sky130.components name: sky130_fd_sc_hd__dlxtp_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dlxtp_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__dlxtp_1_.yml", "repo_id": "skywater130", "token_count": 50 }
119
function: sky130_fd_sc_hd__einvn_4 info: {} module: sky130.components name: sky130_fd_sc_hd__einvn_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__einvn_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__einvn_4_.yml", "repo_id": "skywater130", "token_count": 50 }
120
function: sky130_fd_sc_hd__ha_1 info: {} module: sky130.components name: sky130_fd_sc_hd__ha_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__ha_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__ha_1_.yml", "repo_id": "skywater130", "token_count": 46 }
121
function: sky130_fd_sc_hd__lpflow_clkinvkapwr_16 info: {} module: sky130.components name: sky130_fd_sc_hd__lpflow_clkinvkapwr_16 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__lpflow_clkinvkapwr_16_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__lpflow_clkinvkapwr_16_.yml", "repo_id": "skywater130", "token_count": 62 }
122
function: sky130_fd_sc_hd__lpflow_isobufsrc_1 info: {} module: sky130.components name: sky130_fd_sc_hd__lpflow_isobufsrc_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__lpflow_isobufsrc_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__lpflow_isobufsrc_1_.yml", "repo_id": "skywater130", "token_count": 58 }
123
function: sky130_fd_sc_hd__mux2_2 info: {} module: sky130.components name: sky130_fd_sc_hd__mux2_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__mux2_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__mux2_2_.yml", "repo_id": "skywater130", "token_count": 50 }
124
function: sky130_fd_sc_hd__nand3_1 info: {} module: sky130.components name: sky130_fd_sc_hd__nand3_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nand3_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nand3_1_.yml", "repo_id": "skywater130", "token_count": 50 }
125
function: sky130_fd_sc_hd__nor2_2 info: {} module: sky130.components name: sky130_fd_sc_hd__nor2_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nor2_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nor2_2_.yml", "repo_id": "skywater130", "token_count": 48 }
126
function: sky130_fd_sc_hd__nor4b_2 info: {} module: sky130.components name: sky130_fd_sc_hd__nor4b_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nor4b_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__nor4b_2_.yml", "repo_id": "skywater130", "token_count": 50 }
127
function: sky130_fd_sc_hd__o211ai_4 info: {} module: sky130.components name: sky130_fd_sc_hd__o211ai_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o211ai_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o211ai_4_.yml", "repo_id": "skywater130", "token_count": 50 }
128
function: sky130_fd_sc_hd__o221a_4 info: {} module: sky130.components name: sky130_fd_sc_hd__o221a_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o221a_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o221a_4_.yml", "repo_id": "skywater130", "token_count": 50 }
129
function: sky130_fd_sc_hd__o311a_1 info: {} module: sky130.components name: sky130_fd_sc_hd__o311a_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o311a_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o311a_1_.yml", "repo_id": "skywater130", "token_count": 50 }
130
function: sky130_fd_sc_hd__o32ai_1 info: {} module: sky130.components name: sky130_fd_sc_hd__o32ai_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o32ai_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__o32ai_1_.yml", "repo_id": "skywater130", "token_count": 50 }
131
function: sky130_fd_sc_hd__or3_1 info: {} module: sky130.components name: sky130_fd_sc_hd__or3_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__or3_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__or3_1_.yml", "repo_id": "skywater130", "token_count": 48 }
132
function: sky130_fd_sc_hd__probec_p_8 info: {} module: sky130.components name: sky130_fd_sc_hd__probec_p_8 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__probec_p_8_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__probec_p_8_.yml", "repo_id": "skywater130", "token_count": 52 }
133
function: sky130_fd_sc_hd__sdfxbp_2 info: {} module: sky130.components name: sky130_fd_sc_hd__sdfxbp_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__sdfxbp_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__sdfxbp_2_.yml", "repo_id": "skywater130", "token_count": 52 }
134
function: sky130_fd_sc_hd__tapvpwrvgnd_1 info: {} module: sky130.components name: sky130_fd_sc_hd__tapvpwrvgnd_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__tapvpwrvgnd_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hd__tapvpwrvgnd_1_.yml", "repo_id": "skywater130", "token_count": 54 }
135
function: sky130_fd_sc_hs__a2111oi_1 info: {} module: sky130.components name: sky130_fd_sc_hs__a2111oi_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a2111oi_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a2111oi_1_.yml", "repo_id": "skywater130", "token_count": 52 }
136
function: sky130_fd_sc_hs__a21o_2 info: {} module: sky130.components name: sky130_fd_sc_hs__a21o_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a21o_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a21o_2_.yml", "repo_id": "skywater130", "token_count": 50 }
137
function: sky130_fd_sc_hs__a22o_2 info: {} module: sky130.components name: sky130_fd_sc_hs__a22o_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a22o_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a22o_2_.yml", "repo_id": "skywater130", "token_count": 50 }
138
function: sky130_fd_sc_hs__a311oi_4 info: {} module: sky130.components name: sky130_fd_sc_hs__a311oi_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a311oi_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a311oi_4_.yml", "repo_id": "skywater130", "token_count": 50 }
139
function: sky130_fd_sc_hs__a41oi_1 info: {} module: sky130.components name: sky130_fd_sc_hs__a41oi_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a41oi_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__a41oi_1_.yml", "repo_id": "skywater130", "token_count": 50 }
140
function: sky130_fd_sc_hs__and4_2 info: {} module: sky130.components name: sky130_fd_sc_hs__and4_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__and4_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__and4_2_.yml", "repo_id": "skywater130", "token_count": 48 }
141
function: sky130_fd_sc_hs__bufinv_8 info: {} module: sky130.components name: sky130_fd_sc_hs__bufinv_8 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__bufinv_8_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__bufinv_8_.yml", "repo_id": "skywater130", "token_count": 48 }
142
function: sky130_fd_sc_hs__clkinv_8 info: {} module: sky130.components name: sky130_fd_sc_hs__clkinv_8 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__clkinv_8_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__clkinv_8_.yml", "repo_id": "skywater130", "token_count": 50 }
143
function: sky130_fd_sc_hs__dfstp_2 info: {} module: sky130.components name: sky130_fd_sc_hs__dfstp_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dfstp_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dfstp_2_.yml", "repo_id": "skywater130", "token_count": 50 }
144
function: sky130_fd_sc_hs__dlrtn_2 info: {} module: sky130.components name: sky130_fd_sc_hs__dlrtn_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dlrtn_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dlrtn_2_.yml", "repo_id": "skywater130", "token_count": 50 }
145
function: sky130_fd_sc_hs__dlymetal6s4s_1 info: {} module: sky130.components name: sky130_fd_sc_hs__dlymetal6s4s_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dlymetal6s4s_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__dlymetal6s4s_1_.yml", "repo_id": "skywater130", "token_count": 58 }
146
function: sky130_fd_sc_hs__fa_1 info: {} module: sky130.components name: sky130_fd_sc_hs__fa_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__fa_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__fa_1_.yml", "repo_id": "skywater130", "token_count": 46 }
147
function: sky130_fd_sc_hs__ha_2 info: {} module: sky130.components name: sky130_fd_sc_hs__ha_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__ha_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__ha_2_.yml", "repo_id": "skywater130", "token_count": 46 }
148
function: sky130_fd_sc_hs__mux4_1 info: {} module: sky130.components name: sky130_fd_sc_hs__mux4_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__mux4_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__mux4_1_.yml", "repo_id": "skywater130", "token_count": 50 }
149
function: sky130_fd_sc_hs__nand4_1 info: {} module: sky130.components name: sky130_fd_sc_hs__nand4_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__nand4_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__nand4_1_.yml", "repo_id": "skywater130", "token_count": 50 }
150
function: sky130_fd_sc_hs__nor3_1 info: {} module: sky130.components name: sky130_fd_sc_hs__nor3_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__nor3_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__nor3_1_.yml", "repo_id": "skywater130", "token_count": 48 }
151
function: sky130_fd_sc_hs__o2111a_2 info: {} module: sky130.components name: sky130_fd_sc_hs__o2111a_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o2111a_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o2111a_2_.yml", "repo_id": "skywater130", "token_count": 52 }
152
function: sky130_fd_sc_hs__o21ai_4 info: {} module: sky130.components name: sky130_fd_sc_hs__o21ai_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o21ai_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o21ai_4_.yml", "repo_id": "skywater130", "token_count": 50 }
153
function: sky130_fd_sc_hs__o22ai_1 info: {} module: sky130.components name: sky130_fd_sc_hs__o22ai_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o22ai_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o22ai_1_.yml", "repo_id": "skywater130", "token_count": 50 }
154
function: sky130_fd_sc_hs__o31a_2 info: {} module: sky130.components name: sky130_fd_sc_hs__o31a_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o31a_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o31a_2_.yml", "repo_id": "skywater130", "token_count": 50 }
155
function: sky130_fd_sc_hs__o41ai_4 info: {} module: sky130.components name: sky130_fd_sc_hs__o41ai_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o41ai_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__o41ai_4_.yml", "repo_id": "skywater130", "token_count": 50 }
156
function: sky130_fd_sc_hs__or4b_1 info: {} module: sky130.components name: sky130_fd_sc_hs__or4b_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__or4b_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__or4b_1_.yml", "repo_id": "skywater130", "token_count": 50 }
157
function: sky130_fd_sc_hs__sdfsbp_2 info: {} module: sky130.components name: sky130_fd_sc_hs__sdfsbp_2 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__sdfsbp_2_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__sdfsbp_2_.yml", "repo_id": "skywater130", "token_count": 52 }
158
function: sky130_fd_sc_hs__sedfxtp_4 info: {} module: sky130.components name: sky130_fd_sc_hs__sedfxtp_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__sedfxtp_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__sedfxtp_4_.yml", "repo_id": "skywater130", "token_count": 52 }
159
function: sky130_fd_sc_hs__xor3_1 info: {} module: sky130.components name: sky130_fd_sc_hs__xor3_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__xor3_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hs__xor3_1_.yml", "repo_id": "skywater130", "token_count": 50 }
160
function: sky130_fd_sc_hvl__decap_4 info: {} module: sky130.components name: sky130_fd_sc_hvl__decap_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__decap_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__decap_4_.yml", "repo_id": "skywater130", "token_count": 50 }
161
function: sky130_fd_sc_hvl__fill_4 info: {} module: sky130.components name: sky130_fd_sc_hvl__fill_4 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__fill_4_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__fill_4_.yml", "repo_id": "skywater130", "token_count": 48 }
162
function: sky130_fd_sc_hvl__mux4_1 info: {} module: sky130.components name: sky130_fd_sc_hvl__mux4_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__mux4_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__mux4_1_.yml", "repo_id": "skywater130", "token_count": 52 }
163
function: sky130_fd_sc_hvl__sdfsbp_1 info: {} module: sky130.components name: sky130_fd_sc_hvl__sdfsbp_1 settings: {}
skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__sdfsbp_1_.yml/0
{ "file_path": "skywater130/tests/test_components/test_pdk_settings_sky130_fd_sc_hvl__sdfsbp_1_.yml", "repo_id": "skywater130", "token_count": 54 }
164
<jupyter_start><jupyter_text>Grating coupler FDTD simulationsYou can also expand the planar component simulations to simulate an out-of-plane grating coupler.You can run grating coupler simulations in 2D to save time, and for accuracy you can also run them in 3D tidy3d<jupyter_code>import gplugins.tidy3d as gt import matplotlib.pyplot as plt import numpy as np import ubcpdk.components as pdk from ubcpdk.config import PATH c = pdk.gc_te1550() c.plot() fiber_angle_deg = -31 s = gt.get_simulation_grating_coupler( c, is_3d=False, fiber_angle_deg=fiber_angle_deg, fiber_xoffset=0 ) f = gt.plot_simulation(s) def log(x): return 20 * np.log10(x) sp = gt.write_sparameters_grating_coupler( c, is_3d=False, fiber_angle_deg=fiber_angle_deg, fiber_xoffset=0, filepath=PATH.sparameters / "gc_te1550.npz", ) offsets = np.arange(-5, 5 + 1, 5) offsets jobs = [ dict( component=c, is_3d=False, fiber_angle_deg=fiber_angle_deg, fiber_xoffset=fiber_xoffset, dirpath=PATH.sparameters, filepath=PATH.sparameters / f"gc_{fiber_angle_deg:.1f}deg_{fiber_xoffset:.1f}um.npz", ) for fiber_xoffset in offsets ] sps = gt.write_sparameters_grating_coupler_batch(jobs) sps[0].result() for fiber_xoffset in offsets: sp = gt.write_sparameters_grating_coupler( c, is_3d=False, fiber_angle_deg=fiber_angle_deg, fiber_xoffset=fiber_xoffset, filepath=PATH.sparameters / f"gc_{fiber_angle_deg:.1f}deg_{fiber_xoffset:.1f}um.npz", ) plt.plot( sp["wavelengths"], 20 * np.log10(np.abs(sp["o2@0,o1@0"])), label=str(fiber_xoffset), ) plt.xlabel("wavelength (um") plt.ylabel("Transmission (dB)") plt.title("transmission vs fiber xoffset (um)") plt.legend() help(gt.write_sparameters_grating_coupler)<jupyter_output><empty_output>
ubc/docs/notebooks/11_sparameters_gratings.ipynb/0
{ "file_path": "ubc/docs/notebooks/11_sparameters_gratings.ipynb", "repo_id": "ubc", "token_count": 868 }
165
resolution: 20 port_symmetries: o1: s11: - s22 - s33 - s44 s21: - s12 - s34 - s43 s31: - s13 - s24 - s42 s41: - s14 - s23 - s32 wavelength_start: 1.5 wavelength_stop: 1.6 wavelength_points: 50 port_margin: 2 port_monitor_offset: -0.1 port_source_offset: -0.1 dispersive: false ymargin_top: 0.0 ymargin_bot: 0.0 xmargin_left: 0 xmargin_right: 0 layer_stack: strip: layer: - 1 - 0 thickness: 0.22 zmin: 0.0 material: si sidewall_angle: 0 strip2: layer: - 31 - 0 thickness: 0.22 zmin: 0.0 material: si sidewall_angle: 0 component: name: ebeam_crossing4_7e264905 version: 0.0.1 settings: name: ebeam_crossing4_7e264905 module: ubcpdk.components function_name: ebeam_crossing4 info: library: Design kits/ebeam model: ebeam_crossing4 info_version: 2 full: decorator: function: auto_rename_ports changed: decorator: function: auto_rename_ports default: {} child: null compute_time_seconds: 15.12391185760498 compute_time_minutes: 0.25206519762674967
ubc/sparameters/ebeam_crossing4_7e264905_524beede.yml/0
{ "file_path": "ubc/sparameters/ebeam_crossing4_7e264905_524beede.yml", "repo_id": "ubc", "token_count": 572 }
166
is_3d: false fiber_angle_deg: -31 fiber_xoffset: -10 compute_time_seconds: 57.57888197898865 compute_time_minutes: 0.9596480329831442
ubc/sparameters/ebeam_gc_te1550_985757a9.yml/0
{ "file_path": "ubc/sparameters/ebeam_gc_te1550_985757a9.yml", "repo_id": "ubc", "token_count": 61 }
167
function: ebeam_bdc_tm1550 info: library: Design kits/ebeam model: ebeam_bdc_tm1550 module: ubcpdk.components name: ebeam_bdc_tm1550 settings: {}
ubc/tests/test_components/test_pdk_settings_ebeam_bdc_tm1550_.yml/0
{ "file_path": "ubc/tests/test_components/test_pdk_settings_ebeam_bdc_tm1550_.yml", "repo_id": "ubc", "token_count": 62 }
168
function: ebeam_terminator_te1310 info: library: Design kits/ebeam model: ebeam_terminator_te1310 module: ubcpdk.components name: ebeam_terminator_te1310 settings: {}
ubc/tests/test_components/test_pdk_settings_ebeam_terminator_te1310_.yml/0
{ "file_path": "ubc/tests/test_components/test_pdk_settings_ebeam_terminator_te1310_.yml", "repo_id": "ubc", "token_count": 62 }
169
connections: {} instances: {} name: bend_euler_sc_angle180 placements: {} ports: {}
ubc/tests/test_netlists/test_netlists_bend_euler180_sc_.yml/0
{ "file_path": "ubc/tests/test_netlists/test_netlists_bend_euler180_sc_.yml", "repo_id": "ubc", "token_count": 31 }
170
connections: {} instances: Han_SWGA3dB_1: component: Han_SWGA3dB info: {} settings: {} name: ebeam_splitter_adiabatic_swg_te1550 placements: Han_SWGA3dB_1: mirror: 0 rotation: 0 x: 0.0 y: 0.0 ports: {}
ubc/tests/test_netlists/test_netlists_ebeam_splitter_adiabatic_swg_te1550_.yml/0
{ "file_path": "ubc/tests/test_netlists/test_netlists_ebeam_splitter_adiabatic_swg_te1550_.yml", "repo_id": "ubc", "token_count": 116 }
171