code
stringlengths
281
23.7M
class ListOrValue(BaseType): _show_valtype = True def __init__(self, valtype: BaseType, *, none_ok: bool=False, completions: _Completions=None, **kwargs: Any) -> None: super().__init__(none_ok=none_ok, completions=completions) assert (not isinstance(valtype, (List, ListOrValue))), valtype self.listtype = List(valtype=valtype, none_ok=none_ok, **kwargs) self.valtype = valtype def _val_and_type(self, value: Any) -> Tuple[(Any, BaseType)]: if isinstance(value, list): if (len(value) == 1): return (value[0], self.valtype) else: return (value, self.listtype) else: return (value, self.valtype) def get_name(self) -> str: return ((self.listtype.get_name() + ', or ') + self.valtype.get_name()) def get_valid_values(self) -> Optional[ValidValues]: return self.valtype.get_valid_values() def from_str(self, value: str) -> Any: try: return self.listtype.from_str(value) except configexc.ValidationError: return self.valtype.from_str(value) def from_obj(self, value: Any) -> Any: if (value is None): return [] return value def to_py(self, value: Any) -> Any: if isinstance(value, usertypes.Unset): return value try: return [self.valtype.to_py(value)] except configexc.ValidationError: return self.listtype.to_py(value) def to_str(self, value: Any) -> str: if (value is None): return '' (val, typ) = self._val_and_type(value) return typ.to_str(val) def to_doc(self, value: Any, indent: int=0) -> str: if (value is None): return 'empty' (val, typ) = self._val_and_type(value) return typ.to_doc(val) def __repr__(self) -> str: return utils.get_repr(self, none_ok=self.none_ok, valtype=self.valtype)
class RequestParserSchemaTest(object): def test_empty_parser(self): parser = RequestParser() assert (parser.__schema__ == []) def test_primitive_types(self): parser = RequestParser() parser.add_argument('int', type=int, help='Some integer') parser.add_argument('str', type=str, help='Some string') parser.add_argument('float', type=float, help='Some float') assert (parser.__schema__ == [{'description': 'Some integer', 'type': 'integer', 'name': 'int', 'in': 'query'}, {'description': 'Some string', 'type': 'string', 'name': 'str', 'in': 'query'}, {'description': 'Some float', 'type': 'number', 'name': 'float', 'in': 'query'}]) def test_unknown_type(self): parser = RequestParser() parser.add_argument('unknown', type=(lambda v: v)) assert (parser.__schema__ == [{'name': 'unknown', 'type': 'string', 'in': 'query'}]) def test_required(self): parser = RequestParser() parser.add_argument('int', type=int, required=True) assert (parser.__schema__ == [{'name': 'int', 'type': 'integer', 'in': 'query', 'required': True}]) def test_default(self): parser = RequestParser() parser.add_argument('int', type=int, default=5) assert (parser.__schema__ == [{'name': 'int', 'type': 'integer', 'in': 'query', 'default': 5}]) def test_default_as_false(self): parser = RequestParser() parser.add_argument('bool', type=inputs.boolean, default=False) assert (parser.__schema__ == [{'name': 'bool', 'type': 'boolean', 'in': 'query', 'default': False}]) def test_choices(self): parser = RequestParser() parser.add_argument('string', type=str, choices=['a', 'b']) assert (parser.__schema__ == [{'name': 'string', 'type': 'string', 'in': 'query', 'enum': ['a', 'b']}]) def test_location(self): parser = RequestParser() parser.add_argument('default', type=int) parser.add_argument('in_values', type=int, location='values') parser.add_argument('in_query', type=int, location='args') parser.add_argument('in_headers', type=int, location='headers') parser.add_argument('in_cookie', type=int, location='cookie') assert (parser.__schema__ == [{'name': 'default', 'type': 'integer', 'in': 'query'}, {'name': 'in_values', 'type': 'integer', 'in': 'query'}, {'name': 'in_query', 'type': 'integer', 'in': 'query'}, {'name': 'in_headers', 'type': 'integer', 'in': 'header'}]) def test_location_json(self): parser = RequestParser() parser.add_argument('in_json', type=str, location='json') assert (parser.__schema__ == [{'name': 'in_json', 'type': 'string', 'in': 'body'}]) def test_location_form(self): parser = RequestParser() parser.add_argument('in_form', type=int, location='form') assert (parser.__schema__ == [{'name': 'in_form', 'type': 'integer', 'in': 'formData'}]) def test_location_files(self): parser = RequestParser() parser.add_argument('in_files', type=FileStorage, location='files') assert (parser.__schema__ == [{'name': 'in_files', 'type': 'file', 'in': 'formData'}]) def test_form_and_body_location(self): parser = RequestParser() parser.add_argument('default', type=int) parser.add_argument('in_form', type=int, location='form') parser.add_argument('in_json', type=str, location='json') with pytest.raises(SpecsError) as cm: parser.__schema__ assert (cm.value.msg == "Can't use formData and body at the same time") def test_files_and_body_location(self): parser = RequestParser() parser.add_argument('default', type=int) parser.add_argument('in_files', type=FileStorage, location='files') parser.add_argument('in_json', type=str, location='json') with pytest.raises(SpecsError) as cm: parser.__schema__ assert (cm.value.msg == "Can't use formData and body at the same time") def test_models(self): todo_fields = Model('Todo', {'task': fields.String(required=True, description='The task details')}) parser = RequestParser() parser.add_argument('todo', type=todo_fields) assert (parser.__schema__ == [{'name': 'todo', 'type': 'Todo', 'in': 'body'}]) def test_lists(self): parser = RequestParser() parser.add_argument('int', type=int, action='append') assert (parser.__schema__ == [{'name': 'int', 'in': 'query', 'type': 'array', 'collectionFormat': 'multi', 'items': {'type': 'integer'}}]) def test_split_lists(self): parser = RequestParser() parser.add_argument('int', type=int, action='split') assert (parser.__schema__ == [{'name': 'int', 'in': 'query', 'type': 'array', 'collectionFormat': 'csv', 'items': {'type': 'integer'}}]) def test_schema_interface(self): def custom(value): pass custom.__schema__ = {'type': 'string', 'format': 'custom-format'} parser = RequestParser() parser.add_argument('custom', type=custom) assert (parser.__schema__ == [{'name': 'custom', 'in': 'query', 'type': 'string', 'format': 'custom-format'}]) def test_callable_default(self): parser = RequestParser() parser.add_argument('int', type=int, default=(lambda : 5)) assert (parser.__schema__ == [{'name': 'int', 'type': 'integer', 'in': 'query', 'default': 5}])
def nppro_solve_qp(P: np.ndarray, q: np.ndarray, G: Optional[np.ndarray]=None, h: Optional[np.ndarray]=None, A: Optional[np.ndarray]=None, b: Optional[np.ndarray]=None, lb: Optional[np.ndarray]=None, ub: Optional[np.ndarray]=None, initvals: Optional[np.ndarray]=None, **kwargs) -> Optional[np.ndarray]: problem = Problem(P, q, G, h, A, b, lb, ub) solution = nppro_solve_problem(problem, initvals, **kwargs) return (solution.x if solution.found else None)
def bench_pathlib(loops, tmp_path): base_path = pathlib.Path(tmp_path) path_objects = list(base_path.iterdir()) for p in path_objects: p.stat() assert (len(path_objects) == NUM_FILES), len(path_objects) range_it = range(loops) t0 = pyperf.perf_counter() for _ in range_it: for p in base_path.iterdir(): p.stat() for p in base_path.glob('*.py'): p.stat() for p in base_path.iterdir(): p.stat() for p in base_path.glob('*.py'): p.stat() return (pyperf.perf_counter() - t0)
def attrs(maybe_cls=None, these=None, repr_ns=None, repr=None, cmp=None, hash=None, init=None, slots=False, frozen=False, weakref_slot=True, str=False, auto_attribs=False, kw_only=False, cache_hash=False, auto_exc=False, eq=None, order=None, auto_detect=False, collect_by_mro=False, getstate_setstate=None, on_setattr=None, field_transformer=None, match_args=True, unsafe_hash=None): (eq_, order_) = _determine_attrs_eq_order(cmp, eq, order, None) if (unsafe_hash is not None): hash = unsafe_hash if isinstance(on_setattr, (list, tuple)): on_setattr = setters.pipe(*on_setattr) def wrap(cls): is_frozen = (frozen or _has_frozen_base_class(cls)) is_exc = ((auto_exc is True) and issubclass(cls, BaseException)) has_own_setattr = (auto_detect and _has_own_attribute(cls, '__setattr__')) if (has_own_setattr and is_frozen): msg = "Can't freeze a class with a custom __setattr__." raise ValueError(msg) builder = _ClassBuilder(cls, these, slots, is_frozen, weakref_slot, _determine_whether_to_implement(cls, getstate_setstate, auto_detect, ('__getstate__', '__setstate__'), default=slots), auto_attribs, kw_only, cache_hash, is_exc, collect_by_mro, on_setattr, has_own_setattr, field_transformer) if _determine_whether_to_implement(cls, repr, auto_detect, ('__repr__',)): builder.add_repr(repr_ns) if (str is True): builder.add_str() eq = _determine_whether_to_implement(cls, eq_, auto_detect, ('__eq__', '__ne__')) if ((not is_exc) and (eq is True)): builder.add_eq() if ((not is_exc) and _determine_whether_to_implement(cls, order_, auto_detect, ('__lt__', '__le__', '__gt__', '__ge__'))): builder.add_order() builder.add_setattr() nonlocal hash if ((hash is None) and (auto_detect is True) and _has_own_attribute(cls, '__hash__')): hash = False if ((hash is not True) and (hash is not False) and (hash is not None)): msg = 'Invalid value for hash. Must be True, False, or None.' raise TypeError(msg) if ((hash is False) or ((hash is None) and (eq is False)) or is_exc): if cache_hash: msg = 'Invalid value for cache_hash. To use hash caching, hashing must be either explicitly or implicitly enabled.' raise TypeError(msg) elif ((hash is True) or ((hash is None) and (eq is True) and (is_frozen is True))): builder.add_hash() else: if cache_hash: msg = 'Invalid value for cache_hash. To use hash caching, hashing must be either explicitly or implicitly enabled.' raise TypeError(msg) builder.make_unhashable() if _determine_whether_to_implement(cls, init, auto_detect, ('__init__',)): builder.add_init() else: builder.add_attrs_init() if cache_hash: msg = 'Invalid value for cache_hash. To use hash caching, init must be True.' raise TypeError(msg) if (PY310 and match_args and (not _has_own_attribute(cls, '__match_args__'))): builder.add_match_args() return builder.build_class() if (maybe_cls is None): return wrap return wrap(maybe_cls)
class VNetConvBlock(nn.Module): def __init__(self, in_channels, out_channels, layers=2): super(VNetConvBlock, self).__init__() self.layers = layers self.afs = torch.nn.ModuleList() self.convs = torch.nn.ModuleList() self.bns = torch.nn.ModuleList() self.convs.append(nn.Conv2d(in_channels, out_channels, kernel_size=5, padding=2)) self.bns.append(nn.BatchNorm2d(out_channels)) self.afs.append(nn.PReLU(out_channels)) for i in range((self.layers - 1)): self.convs.append(nn.Conv2d(out_channels, out_channels, kernel_size=5, padding=2)) self.bns.append(nn.BatchNorm2d(out_channels)) self.afs.append(nn.PReLU(out_channels)) def forward(self, x): out = x for i in range(self.layers): out = self.convs[i](out) out = self.bns[i](out) out = self.afs[i](out) return out
class AttrVI_ATTR_USB_RECV_INTR_SIZE(RangeAttribute): resources = [constants.EventType.usb_interrupt] py_name = 'size' visa_name = 'VI_ATTR_USB_RECV_INTR_SIZE' visa_type = 'ViUInt16' default = NotAvailable (read, write, local) = (True, False, True) (min_value, max_value, values) = (0, 65535, None)
class ValueConflictValidator(): requires_context = True def __call__(self, data, serializer): if serializer.instance: updated = serializer.context['view'].request.data.get('updated') if (updated is not None): delta = abs((parse_datetime(updated) - serializer.instance.updated)) if (delta > timedelta(seconds=settings.PROJECT_VALUES_CONFLICT_THRESHOLD)): raise serializers.ValidationError({'conflict': [_('A newer version of this value was found.')]}) else: try: serializer.context['view'].project.values.filter(snapshot=None).get(attribute=data.get('attribute'), set_prefix=data.get('set_prefix'), set_index=data.get('set_index'), collection_index=data.get('collection_index')) except ObjectDoesNotExist: return except MultipleObjectsReturned: pass raise serializers.ValidationError({'conflict': [_('An existing value for this attribute/set_prefix/set_index/collection_index was found.')]})
_loss('swav_loss') class SwAVLoss(ClassyLoss): def __init__(self, loss_config: AttrDict): super().__init__() self.loss_config = loss_config self.queue_start_iter = self.loss_config.queue.start_iter self.was_using_queue = False self.swav_criterion = SwAVCriterion(self.loss_config.temperature, self.loss_config.crops_for_assign, self.loss_config.num_crops, self.loss_config.num_iters, self.loss_config.epsilon, self.loss_config.use_double_precision, self.loss_config.num_prototypes, self.loss_config.queue.local_queue_length, self.loss_config.embedding_dim, self.loss_config.temp_hard_assignment_iters, self.loss_config.output_dir) def from_config(cls, loss_config: AttrDict): return cls(loss_config) def forward(self, output: torch.Tensor, target: torch.Tensor, training_iterations: int): self.swav_criterion.use_queue = ((self.swav_criterion.local_queue_length > 0) and (training_iterations >= self.queue_start_iter)) if ((not self.was_using_queue) and self.swav_criterion.use_queue): print(f'Using queue now! global niter = {training_iterations}') self.was_using_queue = self.swav_criterion.use_queue loss = 0 for (i, prototypes_scores) in enumerate(output[1:]): loss += self.swav_criterion(prototypes_scores, i) loss /= (len(output) - 1) self.swav_criterion.num_iteration += 1 if self.swav_criterion.use_queue: self.swav_criterion.update_emb_queue(output[0].detach()) return loss def __repr__(self): repr_dict = {'name': self._get_name(), 'epsilon': self.loss_config.epsilon, 'use_double_precision': self.loss_config.use_double_precision, 'local_queue_length': self.loss_config.queue.local_queue_length, 'temperature': self.loss_config.temperature, 'num_prototypes': self.loss_config.num_prototypes, 'num_crops': self.loss_config.num_crops, 'nmb_sinkhornknopp_iters': self.loss_config.num_iters, 'embedding_dim': self.loss_config.embedding_dim, 'temp_hard_assignment_iters': self.loss_config.temp_hard_assignment_iters} return pprint.pformat(repr_dict, indent=2)
class Test2_Forever(unittest.TestCase): def setUp(self): self.s = serial.serial_for_url(PORT, timeout=None) def tearDown(self): self.s.close() def test1_inWaitingEmpty(self): self.assertEqual(self.s.in_waiting, 0, 'expected empty buffer') def test2_Loopback(self): for block in segments(bytes_0to255): length = len(block) self.s.write(block) time.sleep(0.05) self.assertEqual(self.s.in_waiting, length) self.assertEqual(self.s.read(length), block) self.assertEqual(self.s.in_waiting, 0, 'expected empty buffer after all sent chars are read')
_ordering class ID3TimeStamp(object): import re def __init__(self, text): if isinstance(text, ID3TimeStamp): text = text.text elif (not isinstance(text, str)): raise TypeError('not a str') self.text = text __formats = (['%04d'] + (['%02d'] * 5)) __seps = ['-', '-', ' ', ':', ':', 'x'] def get_text(self): parts = [self.year, self.month, self.day, self.hour, self.minute, self.second] pieces = [] for (i, part) in enumerate(parts): if (part is None): break pieces.append(((self.__formats[i] % part) + self.__seps[i])) return u''.join(pieces)[:(- 1)] def set_text(self, text, splitre=re.compile('[-T:/.]|\\s+')): (year, month, day, hour, minute, second) = splitre.split((text + ':::::'))[:6] for a in 'year month day hour minute second'.split(): try: v = int(locals()[a]) except ValueError: v = None setattr(self, a, v) text = property(get_text, set_text, doc='ID3v2.4 date and time.') def __str__(self): return self.text def __bytes__(self): return self.text.encode('utf-8') def __repr__(self): return repr(self.text) def __eq__(self, other): return (isinstance(other, ID3TimeStamp) and (self.text == other.text)) def __lt__(self, other): return (self.text < other.text) __hash__ = object.__hash__ def encode(self, *args): return self.text.encode(*args)
def mv_images_to_folder(data_root='data/ref-davis', output_root='data/ref-davis'): train_img_path = os.path.join(output_root, 'train/JPEGImages') train_anno_path = os.path.join(output_root, 'train/Annotations') val_img_path = os.path.join(output_root, 'valid/JPEGImages') val_anno_path = os.path.join(output_root, 'valid/Annotations') meta_train_path = os.path.join(output_root, 'meta_expressions/train') meta_val_path = os.path.join(output_root, 'meta_expressions/valid') paths = [train_img_path, train_anno_path, val_img_path, val_anno_path, meta_train_path, meta_val_path] for path in paths: if (not os.path.exists(path)): os.makedirs(path) (train_set, val_set) = read_split_set(data_root) for video in train_set: base_img_path = os.path.join(data_root, 'DAVIS/JPEGImages/480p', video) mv_cmd = f'mv {base_img_path} {train_img_path}' os.system(mv_cmd) base_anno_path = os.path.join(data_root, 'DAVIS/Annotations_unsupervised/480p', video) mv_cmd = f'mv {base_anno_path} {train_anno_path}' os.system(mv_cmd) for video in val_set: base_img_path = os.path.join(data_root, 'DAVIS/JPEGImages/480p', video) mv_cmd = f'mv {base_img_path} {val_img_path}' os.system(mv_cmd) base_anno_path = os.path.join(data_root, 'DAVIS/Annotations_unsupervised/480p', video) mv_cmd = f'mv {base_anno_path} {val_anno_path}' os.system(mv_cmd)
class NormalQueue1EntryRTL(Component): def construct(s, EntryType): s.enq = EnqIfcRTL(EntryType) s.deq = DeqIfcRTL(EntryType) s.count = OutPort(Bits1) s.entry = Wire(EntryType) s.full = Wire(Bits1) s.count //= s.full s.deq.ret //= s.entry s.enq.rdy //= (lambda : ((~ s.reset) & (~ s.full))) s.deq.rdy //= (lambda : ((~ s.reset) & s.full)) _ff def ff_normal1(): s.full <<= ((~ s.reset) & ((~ s.deq.en) & (s.enq.en | s.full))) if s.enq.en: s.entry <<= s.enq.msg def line_trace(s): return f'{s.enq}({s.full}){s.deq}'
class Box(RegisterOp): error_kind = ERR_NEVER def __init__(self, src: Value, line: int=(- 1)) -> None: super().__init__(line) self.src = src self.type = object_rprimitive if (is_none_rprimitive(self.src.type) or is_bool_rprimitive(self.src.type) or is_bit_rprimitive(self.src.type)): self.is_borrowed = True def sources(self) -> list[Value]: return [self.src] def stolen(self) -> list[Value]: return [self.src] def accept(self, visitor: OpVisitor[T]) -> T: return visitor.visit_box(self)
def check_struct_group(crystal, group, dim=3, tol=0.01): import warnings with warnings.catch_warnings(): warnings.simplefilter('ignore') if (type(crystal) == random_crystal): lattice = struct.lattice.matrix if (dim != 0): old_coords = deepcopy(crystal.struct.frac_coords) old_species = deepcopy(crystal.struct.atomic_numbers) elif (dim == 0): old_coords = deepcopy(crystal.cart_coords) old_species = deepcopy(crystal.species) else: lattice = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]]) old_coords = np.array(crystal) old_species = (['C'] * len(old_coords)) from pyxtal.symmetry import distance from pyxtal.symmetry import filtered_coords from copy import deepcopy PBC = [1, 1, 1] if (dim == 3): from pyxtal.symmetry import get_wyckoffs generators = get_wyckoffs(group)[0] elif (dim == 2): from pyxtal.symmetry import get_layer generators = get_layer(group)[0] PBC = [1, 1, 0] elif (dim == 1): from pyxtal.symmetry import get_rod generators = get_rod(group)[0] PBC = [0, 0, 1] elif (dim == 0): from pyxtal.symmetry import Group generators = Group(group, dim=0)[0] PBC = [0, 0, 0] new_coords = [] new_species = [] for (i, point) in enumerate(old_coords): for (j, op) in enumerate(generators): if (j != 0): new_coords.append(op.operate(point)) new_species.append(old_species[i]) failed = False i_list = list(range(len(new_coords))) for (i, point1) in enumerate(new_coords): found = False for (j, point2) in enumerate(old_coords): if (new_species[i] == old_species[j]): difference = filtered_coords((point2 - point1), PBC=PBC) if (distance(difference, lattice, PBC=PBC) <= tol): found = True break if (found is False): failed = True break if (failed is False): return True else: return False
def get_selfie_and_smiles_info(smiles_list, filename): (largest_smiles_len, largest_selfies_len) = get_largest_string_len(smiles_list, filename) (smiles_alphabet, selfies_alphabet) = get_string_alphabet(smiles_list, filename) return (selfies_alphabet, largest_selfies_len, smiles_alphabet, largest_smiles_len)
def _launch_qt_console(connection_file): from subprocess import Popen exe = None if (sys.executable and (os.path.basename(sys.executable) in ('python.exe', 'pythonw.exe'))): path = os.path.join(os.path.dirname(sys.executable), 'Scripts') exe = os.path.join(path, 'jupyter-qtconsole.exe') if ((exe is None) or (not os.path.exists(exe))): exe = _which('jupyter-qtconsole.exe') if ((exe is None) or (not os.path.exists(exe))): raise Exception('jupyter-qtconsole.exe not found') cmd = [exe, '--existing', connection_file] proc = Popen(cmd, shell=True) if (proc.poll() is not None): raise Exception(("Command '%s' failed to start" % ' '.join(cmd)))
class BasicSingleContextAndQuestionIndependentModel(MultipleContextModel): def __init__(self, encoder: QuestionsAndParagraphsEncoder, word_embed: Optional[WordEmbedder], char_embed: Optional[CharWordEmbedder], embed_mapper: Optional[Union[(SequenceMapper, ElmoWrapper)]], sequence_encoder: SequenceEncoder, merger: MergeLayer, post_merger: Optional[Mapper], predictor: BinaryFixedPredictor, max_batch_size: Optional[int]=None, elmo_model: Optional[LanguageModel]=None): super().__init__(encoder=encoder, word_embed=word_embed, char_embed=char_embed, max_batch_size=max_batch_size, elmo_model=elmo_model) self.embed_mapper = embed_mapper self.sequence_encoder = sequence_encoder self.merger = merger self.post_merger = post_merger self.predictor = predictor def _get_predictions_for(self, is_train, question_embed, question_mask, context_embed, context_mask, answer, question_lm=None, context_lm=None, sentence_segments=None, sentence_mask=None): (question_rep, context_rep) = (question_embed, context_embed) (context1_rep,) = tf.unstack(context_rep, axis=1, num=1) (context1_mask,) = tf.unstack(context_mask, axis=1, num=1) (q_lm_in, c1_lm_in) = ([], []) if self.use_elmo: (context1_lm,) = tf.unstack(context_lm, axis=1, num=1) q_lm_in = [question_lm] c1_lm_in = [context1_lm] if (self.embed_mapper is not None): with tf.variable_scope('map_embed'): context1_rep = self.embed_mapper.apply(is_train, context1_rep, context1_mask, *c1_lm_in) with tf.variable_scope('map_embed', reuse=True): question_rep = self.embed_mapper.apply(is_train, question_rep, question_mask, *q_lm_in) with tf.variable_scope('seq_enc'): context1_rep = self.sequence_encoder.apply(is_train, context1_rep, context1_mask) context1_rep = tf.identity(context1_rep, name='encode_context') tf.add_to_collection(INTERMEDIATE_LAYER_COLLECTION, context1_rep) with tf.variable_scope('seq_enc', reuse=True): question_rep = self.sequence_encoder.apply(is_train, question_rep, question_mask) with tf.variable_scope('merger'): merged_rep = self.merger.apply(is_train, question_rep, context1_rep) if (self.post_merger is not None): with tf.variable_scope('post_merger'): merged_rep = self.post_merger.apply(is_train, merged_rep, mask=None) with tf.variable_scope('predictor'): return self.predictor.apply(is_train, merged_rep, answer) def __setstate__(self, state): if ('post_merger' not in state): state['post_merger'] = None super().__setstate__(state)
def test_junction_group(): jg = pyodrx.JunctionGroup('my roundabout', 0) jg.add_junction(1) jg.add_junction(2) jg.add_junction(3) prettyprint(jg.get_element()) jg2 = pyodrx.JunctionGroup('my roundabout', 0) jg2.add_junction(1) jg2.add_junction(2) jg2.add_junction(3) jg3 = pyodrx.JunctionGroup('my roundabout', 0) jg3.add_junction(1) jg3.add_junction(2) assert (jg == jg2) assert (jg != jg3) assert (version_validation('t_junctionGroup', jg, wanted_schema='xodr') == ValidationResponse.OK)
class SimpleTokenizer(object): def __init__(self, bpe_path: str=default_bpe(), special_tokens=None): self.byte_encoder = bytes_to_unicode() self.byte_decoder = {v: k for (k, v) in self.byte_encoder.items()} merges = gzip.open(bpe_path).read().decode('utf-8').split('\n') merges = merges[1:(((49152 - 256) - 2) + 1)] merges = [tuple(merge.split()) for merge in merges] vocab = list(bytes_to_unicode().values()) vocab = (vocab + [(v + '</w>') for v in vocab]) for merge in merges: vocab.append(''.join(merge)) if (not special_tokens): special_tokens = ['<start_of_text>', '<end_of_text>'] else: special_tokens = (['<start_of_text>', '<end_of_text>'] + special_tokens) vocab.extend(special_tokens) self.encoder = dict(zip(vocab, range(len(vocab)))) self.decoder = {v: k for (k, v) in self.encoder.items()} self.bpe_ranks = dict(zip(merges, range(len(merges)))) self.cache = {t: t for t in special_tokens} special = '|'.join(special_tokens) self.pat = re.compile((special + "|'s|'t|'re|'ve|'m|'ll|'d|[\\p{L}]+|[\\p{N}]|[^\\s\\p{L}\\p{N}]+"), re.IGNORECASE) self.vocab_size = len(self.encoder) self.all_special_ids = [self.encoder[t] for t in special_tokens] def bpe(self, token): if (token in self.cache): return self.cache[token] word = (tuple(token[:(- 1)]) + ((token[(- 1)] + '</w>'),)) pairs = get_pairs(word) if (not pairs): return (token + '</w>') while True: bigram = min(pairs, key=(lambda pair: self.bpe_ranks.get(pair, float('inf')))) if (bigram not in self.bpe_ranks): break (first, second) = bigram new_word = [] i = 0 while (i < len(word)): try: j = word.index(first, i) new_word.extend(word[i:j]) i = j except: new_word.extend(word[i:]) break if ((word[i] == first) and (i < (len(word) - 1)) and (word[(i + 1)] == second)): new_word.append((first + second)) i += 2 else: new_word.append(word[i]) i += 1 new_word = tuple(new_word) word = new_word if (len(word) == 1): break else: pairs = get_pairs(word) word = ' '.join(word) self.cache[token] = word return word def encode(self, text): bpe_tokens = [] text = whitespace_clean(basic_clean(text)).lower() for token in re.findall(self.pat, text): token = ''.join((self.byte_encoder[b] for b in token.encode('utf-8'))) bpe_tokens.extend((self.encoder[bpe_token] for bpe_token in self.bpe(token).split(' '))) return bpe_tokens def decode(self, tokens): text = ''.join([self.decoder[token] for token in tokens]) text = bytearray([self.byte_decoder[c] for c in text]).decode('utf-8', errors='replace').replace('</w>', ' ') return text
class Conv_BN_LeakyReLU(nn.Module): def __init__(self, in_channels, out_channels, ksize, padding=0, stride=1, dilation=1): super(Conv_BN_LeakyReLU, self).__init__() self.convs = nn.Sequential(nn.Conv2d(in_channels, out_channels, ksize, padding=padding, stride=stride, dilation=dilation), nn.BatchNorm2d(out_channels), nn.LeakyReLU(0.1, inplace=True)) def forward(self, x): return self.convs(x)
def extract_summary_without_rerank(article, true_labels, opts): pred_summary = [] backup = [] for (sent_id, lbl) in enumerate(true_labels): if (lbl == 'T'): pred_summary.append(article[sent_id]) if (len(pred_summary) >= opts['topk']): break elif (lbl == 'F'): backup.append(article[sent_id]) if (len(pred_summary) < opts['topk']): for sent in backup: pred_summary.append(sent) if (len(pred_summary) >= opts['topk']): break return pred_summary
def qube_general(): with open('QUBE_general_pi.xml', 'w+') as qube: qube.write('<ForceField>\n <Info>\n <DateGenerated>2019-02-14--correctedHIS,THR,LYS,ASP issues, PRO-amino are still opls </DateGenerated>\n <Reference>modified using amber forcefield template +amber charges + opls atomtype+modified seminario parameters</Reference>\n </Info>\n <AtomTypes>\n <!-- from excel script -->\n <Type class="C" element="C" mass="12.011" name="C235"/>\n <Type class="C" element="C" mass="12.011" name="C267"/>\n <Type class="C" element="C" mass="12.011" name="C271"/>\n <Type class="CA" element="C" mass="12.011" name="C145"/>\n <Type class="CA" element="C" mass="12.011" name="C166"/>\n <Type class="CA" element="C" mass="12.011" name="C302"/>\n <Type class="CB" element="C" mass="12.011" name="C501"/>\n <Type class="CN" element="C" mass="12.011" name="C502"/>\n <Type class="CR" element="C" mass="12.011" name="C506"/>\n <Type class="CR" element="C" mass="12.011" name="C509"/>\n <Type class="CS" element="C" mass="12.011" name="C500"/>\n <Type class="CT" element="C" mass="12.011" name="C135"/>\n <Type class="CT" element="C" mass="12.011" name="C136"/>\n <Type class="CT" element="C" mass="12.011" name="C137"/>\n <Type class="CT" element="C" mass="12.011" name="C149"/>\n <Type class="CT" element="C" mass="12.011" name="C157"/>\n <Type class="CT" element="C" mass="12.011" name="C158"/>\n <Type class="CT" element="C" mass="12.011" name="C206"/>\n <Type class="CT" element="C" mass="12.011" name="C209"/>\n <Type class="CT" element="C" mass="12.011" name="C210"/>\n <Type class="CT" element="C" mass="12.011" name="C214"/>\n <Type class="CT" element="C" mass="12.011" name="C223"/>\n <!-- from c-alfa renaming -->\n <Type class="CT" element="C" mass="12.011" name="C224"/>\n <Type class="CT" element="C" mass="12.011" name="C224A"/>\n <Type class="CT" element="C" mass="12.011" name="C224I"/>\n <Type class="CT" element="C" mass="12.011" name="C224S"/>\n <Type class="CT" element="C" mass="12.011" name="C224K"/>\n <Type class="CT" element="C" mass="12.011" name="C224Y"/>\n <!-- from c-alfa DONE -->\n <Type class="CT" element="C" mass="12.011" name="C242"/>\n <Type class="CT" element="C" mass="12.011" name="C245"/>\n <Type class="CT" element="C" mass="12.011" name="C246"/>\n <Type class="CT" element="C" mass="12.011" name="C274"/>\n <Type class="CT" element="C" mass="12.011" name="C283"/>\n <Type class="CT" element="C" mass="12.011" name="C284"/>\n <Type class="CT" element="C" mass="12.011" name="C285"/>\n <Type class="CT" element="C" mass="12.011" name="C292"/>\n <Type class="CT" element="C" mass="12.011" name="C293"/>\n <Type class="CT" element="C" mass="12.011" name="C295"/>\n <Type class="CT" element="C" mass="12.011" name="C296"/>\n <Type class="CT" element="C" mass="12.011" name="C307"/>\n <Type class="CT" element="C" mass="12.011" name="C308"/>\n <Type class="CT" element="C" mass="12.011" name="C505"/>\n <Type class="CV" element="C" mass="12.011" name="C507"/>\n <Type class="CW" element="C" mass="12.011" name="C508"/>\n <Type class="CW" element="C" mass="12.011" name="C514"/>\n <Type class="CX" element="C" mass="12.011" name="C510"/>\n <Type class="H" element="H" mass="1.008" name="H240"/>\n <Type class="H" element="H" mass="1.008" name="H241"/>\n <Type class="H" element="H" mass="1.008" name="H504"/>\n <Type class="H" element="H" mass="1.008" name="H513"/>\n <Type class="H3" element="H" mass="1.008" name="H290"/>\n <Type class="H3" element="H" mass="1.008" name="H301"/>\n <Type class="H3" element="H" mass="1.008" name="H304"/>\n <Type class="H3" element="H" mass="1.008" name="H310"/>\n <Type class="HA" element="H" mass="1.008" name="H146"/>\n <Type class="HC" element="H" mass="1.008" name="H140"/>\n <Type class="HO" element="H" mass="1.008" name="H155"/>\n <Type class="HO" element="H" mass="1.008" name="H168"/>\n <Type class="HO" element="H" mass="1.008" name="H270"/>\n <Type class="HS" element="H" mass="1.008" name="H204"/>\n <Type class="N" element="N" mass="14.007" name="N237"/>\n <Type class="N" element="N" mass="14.007" name="N238"/>\n <Type class="N" element="N" mass="14.007" name="N239"/>\n <Type class="N2" element="N" mass="14.007" name="N300"/>\n <Type class="N2" element="N" mass="14.007" name="N303"/>\n <Type class="N3" element="N" mass="14.007" name="N287"/>\n <Type class="N3" element="N" mass="14.007" name="N309"/>\n <Type class="NA" element="N" mass="14.007" name="N503"/>\n <Type class="NA" element="N" mass="14.007" name="N512"/>\n <Type class="NB" element="N" mass="14.007" name="N511"/>\n <Type class="O" element="O" mass="15.9994" name="O236"/>\n <Type class="O" element="O" mass="15.9994" name="O269"/>\n <Type class="O2" element="O" mass="15.9994" name="O272"/>\n <Type class="OH" element="O" mass="15.9994" name="O154"/>\n <Type class="OH" element="O" mass="15.9994" name="O167"/>\n <Type class="OH" element="O" mass="15.9994" name="O268"/>\n <Type class="S" element="S" mass="32.06" name="S202"/>\n <Type class="S" element="S" mass="32.06" name="S203"/>\n <Type class="SH" element="S" mass="32.06" name="S200"/>\n <!-- from excel script -->\n <!--DATA FOR WATER -->\n <Type class="OT" element="O" mass="15.9994" name="tip3p-O"/>\n <Type class="HT" element="H" mass="15.9994" name="tip3p-H"/>\n <!--DATA FOR IONS -->\n <Type class="SOD" element="Na" mass="22.989800" name="SOD"/>\n <Type class="CLA" element="Cl" mass="35.450000" name="CLA"/>\n </AtomTypes>\n <Residues>\n <Residue name="TIP3">\n <Atom charge="-0.834" name="OH2" type="tip3p-O"/>\n <Atom charge="0.417" name="H1" type="tip3p-H"/>\n <Atom charge="0.417" name="H2" type="tip3p-H"/>\n <Bond atomName1="OH2" atomName2="H1"/>\n <Bond atomName1="OH2" atomName2="H2"/>\n </Residue>\n <Residue name="SOD">\n <Atom charge="1" name="SOD" type="SOD"/>\n </Residue>\n <Residue name="CLA">\n <Atom charge="-1" name="CLA" type="CLA"/>\n </Residue>\n <Residue name="ALA">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0337" name="CA" type="C224A"/>\n <Atom charge="0.0823" name="HA" type="H140"/>\n <Atom charge="-0.1825" name="CB" type="C135"/>\n <Atom charge="0.0603" name="HB1" type="H140"/>\n <Atom charge="0.0603" name="HB2" type="H140"/>\n <Atom charge="0.0603" name="HB3" type="H140"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB1"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="ARG">\n <Atom charge="-0.3479" name="N" type="N238"/>\n <Atom charge="0.2747" name="H" type="H241"/>\n <Atom charge="-0.2637" name="CA" type="C224"/>\n <Atom charge="0.156" name="HA" type="H140"/>\n <Atom charge="-0.0007" name="CB" type="C136"/>\n <Atom charge="0.0327" name="HB2" type="H140"/>\n <Atom charge="0.0327" name="HB3" type="H140"/>\n <Atom charge="0.039" name="CG" type="C308"/>\n <Atom charge="0.0285" name="HG2" type="H140"/>\n <Atom charge="0.0285" name="HG3" type="H140"/>\n <Atom charge="0.0486" name="CD" type="C307"/>\n <Atom charge="0.0687" name="HD2" type="H140"/>\n <Atom charge="0.0687" name="HD3" type="H140"/>\n <Atom charge="-0.5295" name="NE" type="N303"/>\n <Atom charge="0.3456" name="HE" type="H304"/>\n <Atom charge="0.8076" name="CZ" type="C302"/>\n <Atom charge="-0.8627" name="NH1" type="N300"/>\n <Atom charge="0.4478" name="HH11" type="H301"/>\n <Atom charge="0.4478" name="HH12" type="H301"/>\n <Atom charge="-0.8627" name="NH2" type="N300"/>\n <Atom charge="0.4478" name="HH21" type="H301"/>\n <Atom charge="0.4478" name="HH22" type="H301"/>\n <Atom charge="0.7341" name="C" type="C235"/>\n <Atom charge="-0.5894" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="NE"/>\n <Bond atomName1="NE" atomName2="HE"/>\n <Bond atomName1="NE" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="NH1"/>\n <Bond atomName1="CZ" atomName2="NH2"/>\n <Bond atomName1="NH1" atomName2="HH11"/>\n <Bond atomName1="NH1" atomName2="HH12"/>\n <Bond atomName1="NH2" atomName2="HH21"/>\n <Bond atomName1="NH2" atomName2="HH22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="ASH">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0341" name="CA" type="C224"/>\n <Atom charge="0.0864" name="HA" type="H140"/>\n <Atom charge="-0.0316" name="CB" type="C136"/>\n <Atom charge="0.0488" name="HB2" type="H140"/>\n <Atom charge="0.0488" name="HB3" type="H140"/>\n <Atom charge="0.6462" name="CG" type="C267"/>\n <Atom charge="-0.5554" name="OD1" type="O269"/>\n <Atom charge="-0.6376" name="OD2" type="O268"/>\n <Atom charge="0.4747" name="HD2" type="H270"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="OD2"/>\n <Bond atomName1="OD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="ASN">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0143" name="CA" type="C224"/>\n <Atom charge="0.1048" name="HA" type="H140"/>\n <Atom charge="-0.2041" name="CB" type="C136"/>\n <Atom charge="0.0797" name="HB2" type="H140"/>\n <Atom charge="0.0797" name="HB3" type="H140"/>\n <Atom charge="0.713" name="CG" type="C235"/>\n <Atom charge="-0.5931" name="OD1" type="O236"/>\n <Atom charge="-0.9191" name="ND2" type="N237"/>\n <Atom charge="0.4196" name="HD21" type="H240"/>\n <Atom charge="0.4196" name="HD22" type="H240"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="ND2"/>\n <Bond atomName1="ND2" atomName2="HD21"/>\n <Bond atomName1="ND2" atomName2="HD22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="ASP">\n <Atom charge="-0.5163" name="N" type="N238"/>\n <Atom charge="0.2936" name="H" type="H241"/>\n <Atom charge="0.0381" name="CA" type="C224"/>\n <Atom charge="0.088" name="HA" type="H140"/>\n <Atom charge="-0.0303" name="CB" type="C274"/>\n <Atom charge="-0.0122" name="HB2" type="H140"/>\n <Atom charge="-0.0122" name="HB3" type="H140"/>\n <Atom charge="0.7994" name="CG" type="C271"/>\n <Atom charge="-0.8014" name="OD1" type="O272"/>\n <Atom charge="-0.8014" name="OD2" type="O272"/>\n <Atom charge="0.5366" name="C" type="C235"/>\n <Atom charge="-0.5819" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="OD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="CYS">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0213" name="CA" type="C224"/>\n <Atom charge="0.1124" name="HA" type="H140"/>\n <Atom charge="-0.1231" name="CB" type="C206"/>\n <Atom charge="0.1112" name="HB2" type="H140"/>\n <Atom charge="0.1112" name="HB3" type="H140"/>\n <Atom charge="-0.3119" name="SG" type="S200"/>\n <Atom charge="0.1933" name="HG" type="H204"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="SG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="CYX">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0429" name="CA" type="C224"/>\n <Atom charge="0.0766" name="HA" type="H140"/>\n <Atom charge="-0.079" name="CB" type="C214"/>\n <Atom charge="0.091" name="HB2" type="H140"/>\n <Atom charge="0.091" name="HB3" type="H140"/>\n <Atom charge="-0.1081" name="SG" type="S203"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="SG"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="GLH">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0145" name="CA" type="C224"/>\n <Atom charge="0.0779" name="HA" type="H140"/>\n <Atom charge="-0.0071" name="CB" type="C136"/>\n <Atom charge="0.0256" name="HB2" type="H140"/>\n <Atom charge="0.0256" name="HB3" type="H140"/>\n <Atom charge="-0.0174" name="CG" type="C136"/>\n <Atom charge="0.043" name="HG2" type="H140"/>\n <Atom charge="0.043" name="HG3" type="H140"/>\n <Atom charge="0.6801" name="CD" type="C267"/>\n <Atom charge="-0.5838" name="OE1" type="O269"/>\n <Atom charge="-0.6511" name="OE2" type="O268"/>\n <Atom charge="0.4641" name="HE2" type="H270"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="OE2"/>\n <Bond atomName1="OE2" atomName2="HE2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="GLN">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0031" name="CA" type="C224"/>\n <Atom charge="0.085" name="HA" type="H140"/>\n <Atom charge="-0.0036" name="CB" type="C136"/>\n <Atom charge="0.0171" name="HB2" type="H140"/>\n <Atom charge="0.0171" name="HB3" type="H140"/>\n <Atom charge="-0.0645" name="CG" type="C136"/>\n <Atom charge="0.0352" name="HG2" type="H140"/>\n <Atom charge="0.0352" name="HG3" type="H140"/>\n <Atom charge="0.6951" name="CD" type="C235"/>\n <Atom charge="-0.6086" name="OE1" type="O236"/>\n <Atom charge="-0.9407" name="NE2" type="N237"/>\n <Atom charge="0.4251" name="HE21" type="H240"/>\n <Atom charge="0.4251" name="HE22" type="H240"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE21"/>\n <Bond atomName1="NE2" atomName2="HE22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="GLU">\n <Atom charge="-0.5163" name="N" type="N238"/>\n <Atom charge="0.2936" name="H" type="H241"/>\n <Atom charge="0.0397" name="CA" type="C224"/>\n <Atom charge="0.1105" name="HA" type="H140"/>\n <Atom charge="0.056" name="CB" type="C136"/>\n <Atom charge="-0.0173" name="HB2" type="H140"/>\n <Atom charge="-0.0173" name="HB3" type="H140"/>\n <Atom charge="0.0136" name="CG" type="C274"/>\n <Atom charge="-0.0425" name="HG2" type="H140"/>\n <Atom charge="-0.0425" name="HG3" type="H140"/>\n <Atom charge="0.8054" name="CD" type="C271"/>\n <Atom charge="-0.8188" name="OE1" type="O272"/>\n <Atom charge="-0.8188" name="OE2" type="O272"/>\n <Atom charge="0.5366" name="C" type="C235"/>\n <Atom charge="-0.5819" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="OE2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="GLY">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0252" name="CA" type="C223"/>\n <Atom charge="0.0698" name="HA2" type="H140"/>\n <Atom charge="0.0698" name="HA3" type="H140"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA2"/>\n <Bond atomName1="CA" atomName2="HA3"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="HID">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0188" name="CA" type="C224"/>\n <Atom charge="0.0881" name="HA" type="H140"/>\n <Atom charge="-0.0462" name="CB" type="C505"/>\n <Atom charge="0.0402" name="HB2" type="H140"/>\n <Atom charge="0.0402" name="HB3" type="H140"/>\n <Atom charge="-0.0266" name="CG" type="C508"/>\n <Atom charge="-0.3811" name="ND1" type="N503"/>\n <Atom charge="0.3649" name="HD1" type="H504"/>\n <Atom charge="0.2057" name="CE1" type="C506"/>\n <Atom charge="0.1392" name="HE1" type="H146"/>\n <Atom charge="-0.5727" name="NE2" type="N511"/>\n <Atom charge="0.1292" name="CD2" type="C507"/>\n <Atom charge="0.1147" name="HD2" type="H146"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="HIE">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0581" name="CA" type="C224"/>\n <Atom charge="0.136" name="HA" type="H140"/>\n <Atom charge="-0.0074" name="CB" type="C505"/>\n <Atom charge="0.0367" name="HB2" type="H140"/>\n <Atom charge="0.0367" name="HB3" type="H140"/>\n <Atom charge="0.1868" name="CG" type="C507"/>\n <Atom charge="-0.5432" name="ND1" type="N511"/>\n <Atom charge="0.1635" name="CE1" type="C506"/>\n <Atom charge="0.1435" name="HE1" type="H146"/>\n <Atom charge="-0.2795" name="NE2" type="N503"/>\n <Atom charge="0.3339" name="HE2" type="H504"/>\n <Atom charge="-0.2207" name="CD2" type="C508"/>\n <Atom charge="0.1862" name="HD2" type="H146"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="HIP">\n <Atom charge="-0.3479" name="N" type="N238"/>\n <Atom charge="0.2747" name="H" type="H241"/>\n <Atom charge="-0.1354" name="CA" type="C224"/>\n <Atom charge="0.1212" name="HA" type="H140"/>\n <Atom charge="-0.0414" name="CB" type="C505"/>\n <Atom charge="0.081" name="HB2" type="H140"/>\n <Atom charge="0.081" name="HB3" type="H140"/>\n <Atom charge="-0.0012" name="CG" type="C510"/>\n <Atom charge="-0.1513" name="ND1" type="N512"/>\n <Atom charge="0.3866" name="HD1" type="H513"/>\n <Atom charge="-0.017" name="CE1" type="C509"/>\n <Atom charge="0.2681" name="HE1" type="H146"/>\n <Atom charge="-0.1718" name="NE2" type="N512"/>\n <Atom charge="0.3911" name="HE2" type="H513"/>\n <Atom charge="-0.1141" name="CD2" type="C510"/>\n <Atom charge="0.2317" name="HD2" type="H146"/>\n <Atom charge="0.7341" name="C" type="C235"/>\n <Atom charge="-0.5894" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="ILE">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0597" name="CA" type="C224I"/>\n <Atom charge="0.0869" name="HA" type="H140"/>\n <Atom charge="0.1303" name="CB" type="C137"/>\n <Atom charge="0.0187" name="HB" type="H140"/>\n <Atom charge="-0.3204" name="CG2" type="C135"/>\n <Atom charge="0.0882" name="HG21" type="H140"/>\n <Atom charge="0.0882" name="HG22" type="H140"/>\n <Atom charge="0.0882" name="HG23" type="H140"/>\n <Atom charge="-0.043" name="CG1" type="C136"/>\n <Atom charge="0.0236" name="HG12" type="H140"/>\n <Atom charge="0.0236" name="HG13" type="H140"/>\n <Atom charge="-0.066" name="CD1" type="C135"/>\n <Atom charge="0.0186" name="HD11" type="H140"/>\n <Atom charge="0.0186" name="HD12" type="H140"/>\n <Atom charge="0.0186" name="HD13" type="H140"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG1" atomName2="CD1"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="LEU">\n <Atom charge="-0.6104" name="N" type="N238"/>\n <Atom charge="0.3534" name="H" type="H241"/>\n <Atom charge="0.1797" name="CA" type="C224"/>\n <Atom charge="0.0778" name="HA" type="H140"/>\n <Atom charge="-0.2488" name="CB" type="C136"/>\n <Atom charge="0.0848" name="HB2" type="H140"/>\n <Atom charge="0.0637" name="HB3" type="H140"/>\n <Atom charge="0.3273" name="CG" type="C137"/>\n <Atom charge="-0.0217" name="HG" type="H140"/>\n <Atom charge="-0.3691" name="CD1" type="C135"/>\n <Atom charge="0.0868" name="HD11" type="H140"/>\n <Atom charge="0.0868" name="HD12" type="H140"/>\n <Atom charge="0.0868" name="HD13" type="H140"/>\n <Atom charge="-0.3739" name="CD2" type="C135"/>\n <Atom charge="0.0939" name="HD21" type="H140"/>\n <Atom charge="0.0939" name="HD22" type="H140"/>\n <Atom charge="0.0939" name="HD23" type="H140"/>\n <Atom charge="0.4661" name="C" type="C235"/>\n <Atom charge="-0.6200" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="CD2" atomName2="HD21"/>\n <Bond atomName1="CD2" atomName2="HD22"/>\n <Bond atomName1="CD2" atomName2="HD23"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="LYS">\n <Atom charge="-0.3479" name="N" type="N238"/>\n <Atom charge="0.2747" name="H" type="H241"/>\n <Atom charge="-0.24" name="CA" type="C224K"/>\n <Atom charge="0.1426" name="HA" type="H140"/>\n <Atom charge="-0.0094" name="CB" type="C136"/>\n <Atom charge="0.0362" name="HB2" type="H140"/>\n <Atom charge="0.0362" name="HB3" type="H140"/>\n <Atom charge="0.0187" name="CG" type="C136"/>\n <Atom charge="0.0103" name="HG2" type="H140"/>\n <Atom charge="0.0103" name="HG3" type="H140"/>\n <Atom charge="-0.0479" name="CD" type="C136"/>\n <Atom charge="0.0621" name="HD2" type="H140"/>\n <Atom charge="0.0621" name="HD3" type="H140"/>\n <Atom charge="-0.0143" name="CE" type="C292"/>\n <Atom charge="0.1135" name="HE2" type="H140"/>\n <Atom charge="0.1135" name="HE3" type="H140"/>\n <Atom charge="-0.3854" name="NZ" type="N287"/>\n <Atom charge="0.34" name="HZ1" type="H290"/>\n <Atom charge="0.34" name="HZ2" type="H290"/>\n <Atom charge="0.34" name="HZ3" type="H290"/>\n <Atom charge="0.7341" name="C" type="C235"/>\n <Atom charge="-0.5894" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="CE" atomName2="NZ"/>\n <Bond atomName1="NZ" atomName2="HZ1"/>\n <Bond atomName1="NZ" atomName2="HZ2"/>\n <Bond atomName1="NZ" atomName2="HZ3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="MET">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0237" name="CA" type="C224"/>\n <Atom charge="0.088" name="HA" type="H140"/>\n <Atom charge="0.0342" name="CB" type="C136"/>\n <Atom charge="0.0241" name="HB2" type="H140"/>\n <Atom charge="0.0241" name="HB3" type="H140"/>\n <Atom charge="0.0018" name="CG" type="C210"/>\n <Atom charge="0.044" name="HG2" type="H140"/>\n <Atom charge="0.044" name="HG3" type="H140"/>\n <Atom charge="-0.2737" name="SD" type="S202"/>\n <Atom charge="-0.0536" name="CE" type="C209"/>\n <Atom charge="0.0684" name="HE1" type="H140"/>\n <Atom charge="0.0684" name="HE2" type="H140"/>\n <Atom charge="0.0684" name="HE3" type="H140"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="SD"/>\n <Bond atomName1="SD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE1"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="PHE">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0024" name="CA" type="C224"/>\n <Atom charge="0.0978" name="HA" type="H140"/>\n <Atom charge="-0.0343" name="CB" type="C149"/>\n <Atom charge="0.0295" name="HB2" type="H140"/>\n <Atom charge="0.0295" name="HB3" type="H140"/>\n <Atom charge="0.0118" name="CG" type="C145"/>\n <Atom charge="-0.1256" name="CD1" type="C145"/>\n <Atom charge="0.133" name="HD1" type="H146"/>\n <Atom charge="-0.1704" name="CE1" type="C145"/>\n <Atom charge="0.143" name="HE1" type="H146"/>\n <Atom charge="-0.1072" name="CZ" type="C145"/>\n <Atom charge="0.1297" name="HZ" type="H146"/>\n <Atom charge="-0.1704" name="CE2" type="C145"/>\n <Atom charge="0.143" name="HE2" type="H146"/>\n <Atom charge="-0.1256" name="CD2" type="C145"/>\n <Atom charge="0.133" name="HD2" type="H146"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="HZ"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="PRO">\n <Atom charge="-0.2548" name="N" type="N239"/>\n <Atom charge="0.0192" name="CD" type="C245"/>\n <Atom charge="0.0391" name="HD2" type="H140"/>\n <Atom charge="0.0391" name="HD3" type="H140"/>\n <Atom charge="0.0189" name="CG" type="C136"/>\n <Atom charge="0.0213" name="HG2" type="H140"/>\n <Atom charge="0.0213" name="HG3" type="H140"/>\n <Atom charge="-0.007" name="CB" type="C136"/>\n <Atom charge="0.0253" name="HB2" type="H140"/>\n <Atom charge="0.0253" name="HB3" type="H140"/>\n <Atom charge="-0.0266" name="CA" type="C246"/>\n <Atom charge="0.0641" name="HA" type="H140"/>\n <Atom charge="0.5896" name="C" type="C235"/>\n <Atom charge="-0.5748" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="CD"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CB"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="SER">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0249" name="CA" type="C224S"/>\n <Atom charge="0.0843" name="HA" type="H140"/>\n <Atom charge="0.2117" name="CB" type="C157"/>\n <Atom charge="0.0352" name="HB2" type="H140"/>\n <Atom charge="0.0352" name="HB3" type="H140"/>\n <Atom charge="-0.6546" name="OG" type="O154"/>\n <Atom charge="0.4275" name="HG" type="H155"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="OG"/>\n <Bond atomName1="OG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="THR">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0389" name="CA" type="C224S"/>\n <Atom charge="0.1007" name="HA" type="H140"/>\n <Atom charge="0.3654" name="CB" type="C158"/>\n <Atom charge="0.0043" name="HB" type="H140"/>\n <Atom charge="-0.2438" name="CG2" type="C135"/>\n <Atom charge="0.0642" name="HG21" type="H140"/>\n <Atom charge="0.0642" name="HG22" type="H140"/>\n <Atom charge="0.0642" name="HG23" type="H140"/>\n <Atom charge="-0.6761" name="OG1" type="O154"/>\n <Atom charge="0.4102" name="HG1" type="H155"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="OG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="OG1" atomName2="HG1"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="TRP">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0275" name="CA" type="C224"/>\n <Atom charge="0.1123" name="HA" type="H140"/>\n <Atom charge="-0.005" name="CB" type="C136"/>\n <Atom charge="0.0339" name="HB2" type="H140"/>\n <Atom charge="0.0339" name="HB3" type="H140"/>\n <Atom charge="-0.1415" name="CG" type="C500"/>\n <Atom charge="-0.1638" name="CD1" type="C514"/>\n <Atom charge="0.2062" name="HD1" type="H146"/>\n <Atom charge="-0.3418" name="NE1" type="N503"/>\n <Atom charge="0.3412" name="HE1" type="H504"/>\n <Atom charge="0.138" name="CE2" type="C502"/>\n <Atom charge="-0.2601" name="CZ2" type="C145"/>\n <Atom charge="0.1572" name="HZ2" type="H146"/>\n <Atom charge="-0.1134" name="CH2" type="C145"/>\n <Atom charge="0.1417" name="HH2" type="H146"/>\n <Atom charge="-0.1972" name="CZ3" type="C145"/>\n <Atom charge="0.1447" name="HZ3" type="H146"/>\n <Atom charge="-0.2387" name="CE3" type="C145"/>\n <Atom charge="0.17" name="HE3" type="H146"/>\n <Atom charge="0.1243" name="CD2" type="C501"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="NE1"/>\n <Bond atomName1="NE1" atomName2="HE1"/>\n <Bond atomName1="NE1" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="CZ2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CZ2" atomName2="HZ2"/>\n <Bond atomName1="CZ2" atomName2="CH2"/>\n <Bond atomName1="CH2" atomName2="HH2"/>\n <Bond atomName1="CH2" atomName2="CZ3"/>\n <Bond atomName1="CZ3" atomName2="HZ3"/>\n <Bond atomName1="CZ3" atomName2="CE3"/>\n <Bond atomName1="CE3" atomName2="HE3"/>\n <Bond atomName1="CE3" atomName2="CD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="TYR">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0014" name="CA" type="C224Y"/>\n <Atom charge="0.0876" name="HA" type="H140"/>\n <Atom charge="-0.0152" name="CB" type="C149"/>\n <Atom charge="0.0295" name="HB2" type="H140"/>\n <Atom charge="0.0295" name="HB3" type="H140"/>\n <Atom charge="-0.0011" name="CG" type="C145"/>\n <Atom charge="-0.1906" name="CD1" type="C145"/>\n <Atom charge="0.1699" name="HD1" type="H146"/>\n <Atom charge="-0.2341" name="CE1" type="C145"/>\n <Atom charge="0.1656" name="HE1" type="H146"/>\n <Atom charge="0.3226" name="CZ" type="C166"/>\n <Atom charge="-0.5579" name="OH" type="O167"/>\n <Atom charge="0.3992" name="HH" type="H168"/>\n <Atom charge="-0.2341" name="CE2" type="C145"/>\n <Atom charge="0.1656" name="HE2" type="H146"/>\n <Atom charge="-0.1906" name="CD2" type="C145"/>\n <Atom charge="0.1699" name="HD2" type="H146"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="OH"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="OH" atomName2="HH"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="VAL">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="-0.0875" name="CA" type="C224"/>\n <Atom charge="0.0969" name="HA" type="H140"/>\n <Atom charge="0.2985" name="CB" type="C137"/>\n <Atom charge="-0.0297" name="HB" type="H140"/>\n <Atom charge="-0.3192" name="CG1" type="C135"/>\n <Atom charge="0.0791" name="HG11" type="H140"/>\n <Atom charge="0.0791" name="HG12" type="H140"/>\n <Atom charge="0.0791" name="HG13" type="H140"/>\n <Atom charge="-0.3192" name="CG2" type="C135"/>\n <Atom charge="0.0791" name="HG21" type="H140"/>\n <Atom charge="0.0791" name="HG22" type="H140"/>\n <Atom charge="0.0791" name="HG23" type="H140"/>\n <Atom charge="0.5973" name="C" type="C235"/>\n <Atom charge="-0.5679" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CG1" atomName2="HG11"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="N"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="CALA">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.1747" name="CA" type="C283"/>\n <Atom charge="0.1067" name="HA" type="H140"/>\n <Atom charge="-0.2093" name="CB" type="C135"/>\n <Atom charge="0.0764" name="HB1" type="H140"/>\n <Atom charge="0.0764" name="HB2" type="H140"/>\n <Atom charge="0.0764" name="HB3" type="H140"/>\n <Atom charge="0.7731" name="C" type="C271"/>\n <Atom charge="-0.8055" name="O" type="O272"/>\n <Atom charge="-0.8055" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB1"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CARG">\n <Atom charge="-0.3481" name="N" type="N238"/>\n <Atom charge="0.2764" name="H" type="H241"/>\n <Atom charge="-0.3068" name="CA" type="C283"/>\n <Atom charge="0.1447" name="HA" type="H140"/>\n <Atom charge="-0.0374" name="CB" type="C136"/>\n <Atom charge="0.0371" name="HB2" type="H140"/>\n <Atom charge="0.0371" name="HB3" type="H140"/>\n <Atom charge="0.0744" name="CG" type="C308"/>\n <Atom charge="0.0185" name="HG2" type="H140"/>\n <Atom charge="0.0185" name="HG3" type="H140"/>\n <Atom charge="0.1114" name="CD" type="C307"/>\n <Atom charge="0.0468" name="HD2" type="H140"/>\n <Atom charge="0.0468" name="HD3" type="H140"/>\n <Atom charge="-0.5564" name="NE" type="N303"/>\n <Atom charge="0.3479" name="HE" type="H304"/>\n <Atom charge="0.8368" name="CZ" type="C302"/>\n <Atom charge="-0.8737" name="NH1" type="N300"/>\n <Atom charge="0.4493" name="HH11" type="H301"/>\n <Atom charge="0.4493" name="HH12" type="H301"/>\n <Atom charge="-0.8737" name="NH2" type="N300"/>\n <Atom charge="0.4493" name="HH21" type="H301"/>\n <Atom charge="0.4493" name="HH22" type="H301"/>\n <Atom charge="0.8557" name="C" type="C271"/>\n <Atom charge="-0.8266" name="O" type="O272"/>\n <Atom charge="-0.8266" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="NE"/>\n <Bond atomName1="NE" atomName2="HE"/>\n <Bond atomName1="NE" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="NH1"/>\n <Bond atomName1="CZ" atomName2="NH2"/>\n <Bond atomName1="NH1" atomName2="HH11"/>\n <Bond atomName1="NH1" atomName2="HH12"/>\n <Bond atomName1="NH2" atomName2="HH21"/>\n <Bond atomName1="NH2" atomName2="HH22"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CASH">\n <Atom charge="-0.4157" name="N" type="N238"/>\n <Atom charge="0.2719" name="H" type="H241"/>\n <Atom charge="0.0341" name="CA" type="C283"/>\n <Atom charge="0.0864" name="HA" type="H140"/>\n <Atom charge="-0.0316" name="CB" type="C136"/>\n <Atom charge="0.0488" name="HB2" type="H140"/>\n <Atom charge="0.0488" name="HB3" type="H140"/>\n <Atom charge="0.6462" name="CG" type="C267"/>\n <Atom charge="-0.5554" name="OD1" type="O269"/>\n <Atom charge="-0.6376" name="OD2" type="O268"/>\n <Atom charge="0.4747" name="HD2" type="H270"/>\n <Atom charge="0.805" name="C" type="C271"/>\n <Atom charge="-0.8147" name="O" type="O272"/>\n <Atom charge="-0.8147" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="OD2"/>\n <Bond atomName1="OD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CASN">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.208" name="CA" type="C283"/>\n <Atom charge="0.1358" name="HA" type="H140"/>\n <Atom charge="-0.2299" name="CB" type="C136"/>\n <Atom charge="0.1023" name="HB2" type="H140"/>\n <Atom charge="0.1023" name="HB3" type="H140"/>\n <Atom charge="0.7153" name="CG" type="C235"/>\n <Atom charge="-0.601" name="OD1" type="O236"/>\n <Atom charge="-0.9084" name="ND2" type="N237"/>\n <Atom charge="0.415" name="HD21" type="H240"/>\n <Atom charge="0.415" name="HD22" type="H240"/>\n <Atom charge="0.805" name="C" type="C271"/>\n <Atom charge="-0.8147" name="O" type="O272"/>\n <Atom charge="-0.8147" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="ND2"/>\n <Bond atomName1="ND2" atomName2="HD21"/>\n <Bond atomName1="ND2" atomName2="HD22"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CASP">\n <Atom charge="-0.5192" name="N" type="N238"/>\n <Atom charge="0.3055" name="H" type="H241"/>\n <Atom charge="-0.1817" name="CA" type="C283"/>\n <Atom charge="0.1046" name="HA" type="H140"/>\n <Atom charge="-0.0677" name="CB" type="C274"/>\n <Atom charge="-0.0212" name="HB2" type="H140"/>\n <Atom charge="-0.0212" name="HB3" type="H140"/>\n <Atom charge="0.8851" name="CG" type="C271"/>\n <Atom charge="-0.8162" name="OD1" type="O272"/>\n <Atom charge="-0.8162" name="OD2" type="O272"/>\n <Atom charge="0.7256" name="C" type="C271"/>\n <Atom charge="-0.7887" name="O" type="O272"/>\n <Atom charge="-0.7887" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="OD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CCYS">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.1635" name="CA" type="C283"/>\n <Atom charge="0.1396" name="HA" type="H140"/>\n <Atom charge="-0.1996" name="CB" type="C206"/>\n <Atom charge="0.1437" name="HB2" type="H140"/>\n <Atom charge="0.1437" name="HB3" type="H140"/>\n <Atom charge="-0.3102" name="SG" type="S200"/>\n <Atom charge="0.2068" name="HG" type="H204"/>\n <Atom charge="0.7497" name="C" type="C271"/>\n <Atom charge="-0.7981" name="O" type="O272"/>\n <Atom charge="-0.7981" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="SG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CCYX">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.1318" name="CA" type="C283"/>\n <Atom charge="0.0938" name="HA" type="H140"/>\n <Atom charge="-0.1943" name="CB" type="C214"/>\n <Atom charge="0.1228" name="HB2" type="H140"/>\n <Atom charge="0.1228" name="HB3" type="H140"/>\n <Atom charge="-0.0529" name="SG" type="S203"/>\n <Atom charge="0.7618" name="C" type="C271"/>\n <Atom charge="-0.8041" name="O" type="O272"/>\n <Atom charge="-0.8041" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="SG"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CGLN">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2248" name="CA" type="C283"/>\n <Atom charge="0.1232" name="HA" type="H140"/>\n <Atom charge="-0.0664" name="CB" type="C136"/>\n <Atom charge="0.0452" name="HB2" type="H140"/>\n <Atom charge="0.0452" name="HB3" type="H140"/>\n <Atom charge="-0.021" name="CG" type="C136"/>\n <Atom charge="0.0203" name="HG2" type="H140"/>\n <Atom charge="0.0203" name="HG3" type="H140"/>\n <Atom charge="0.7093" name="CD" type="C235"/>\n <Atom charge="-0.6098" name="OE1" type="O236"/>\n <Atom charge="-0.9574" name="NE2" type="N237"/>\n <Atom charge="0.4304" name="HE21" type="H240"/>\n <Atom charge="0.4304" name="HE22" type="H240"/>\n <Atom charge="0.7775" name="C" type="C271"/>\n <Atom charge="-0.8042" name="O" type="O272"/>\n <Atom charge="-0.8042" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE21"/>\n <Bond atomName1="NE2" atomName2="HE22"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CGLU">\n <Atom charge="-0.5192" name="N" type="N238"/>\n <Atom charge="0.3055" name="H" type="H241"/>\n <Atom charge="-0.2059" name="CA" type="C283"/>\n <Atom charge="0.1399" name="HA" type="H140"/>\n <Atom charge="0.0071" name="CB" type="C136"/>\n <Atom charge="-0.0078" name="HB2" type="H140"/>\n <Atom charge="-0.0078" name="HB3" type="H140"/>\n <Atom charge="0.0675" name="CG" type="C274"/>\n <Atom charge="-0.0548" name="HG2" type="H140"/>\n <Atom charge="-0.0548" name="HG3" type="H140"/>\n <Atom charge="0.8183" name="CD" type="C271"/>\n <Atom charge="-0.822" name="OE1" type="O272"/>\n <Atom charge="-0.822" name="OE2" type="O272"/>\n <Atom charge="0.742" name="C" type="C271"/>\n <Atom charge="-0.793" name="O" type="O272"/>\n <Atom charge="-0.793" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="OE2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CGLY">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2493" name="CA" type="C284"/>\n <Atom charge="0.1056" name="HA2" type="H140"/>\n <Atom charge="0.1056" name="HA3" type="H140"/>\n <Atom charge="0.7231" name="C" type="C271"/>\n <Atom charge="-0.7855" name="O" type="O272"/>\n <Atom charge="-0.7855" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA2"/>\n <Bond atomName1="CA" atomName2="HA3"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CHID">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.1739" name="CA" type="C283"/>\n <Atom charge="0.11" name="HA" type="H140"/>\n <Atom charge="-0.1046" name="CB" type="C505"/>\n <Atom charge="0.0565" name="HB2" type="H140"/>\n <Atom charge="0.0565" name="HB3" type="H140"/>\n <Atom charge="0.0293" name="CG" type="C508"/>\n <Atom charge="-0.3892" name="ND1" type="N503"/>\n <Atom charge="0.3755" name="HD1" type="H504"/>\n <Atom charge="0.1925" name="CE1" type="C506"/>\n <Atom charge="0.1418" name="HE1" type="H146"/>\n <Atom charge="-0.5629" name="NE2" type="N511"/>\n <Atom charge="0.1001" name="CD2" type="C507"/>\n <Atom charge="0.1241" name="HD2" type="H146"/>\n <Atom charge="0.7615" name="C" type="C271"/>\n <Atom charge="-0.8016" name="O" type="O272"/>\n <Atom charge="-0.8016" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CHIE">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2699" name="CA" type="C283"/>\n <Atom charge="0.165" name="HA" type="H140"/>\n <Atom charge="-0.1068" name="CB" type="C505"/>\n <Atom charge="0.062" name="HB2" type="H140"/>\n <Atom charge="0.062" name="HB3" type="H140"/>\n <Atom charge="0.2724" name="CG" type="C507"/>\n <Atom charge="-0.5517" name="ND1" type="N511"/>\n <Atom charge="0.1558" name="CE1" type="C506"/>\n <Atom charge="0.1448" name="HE1" type="H146"/>\n <Atom charge="-0.267" name="NE2" type="N503"/>\n <Atom charge="0.3319" name="HE2" type="H504"/>\n <Atom charge="-0.2588" name="CD2" type="C508"/>\n <Atom charge="0.1957" name="HD2" type="H146"/>\n <Atom charge="0.7916" name="C" type="C271"/>\n <Atom charge="-0.8065" name="O" type="O272"/>\n <Atom charge="-0.8065" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CHIP">\n <Atom charge="-0.3481" name="N" type="N238"/>\n <Atom charge="0.2764" name="H" type="H241"/>\n <Atom charge="-0.1445" name="CA" type="C283"/>\n <Atom charge="0.1115" name="HA" type="H140"/>\n <Atom charge="-0.08" name="CB" type="C505"/>\n <Atom charge="0.0868" name="HB2" type="H140"/>\n <Atom charge="0.0868" name="HB3" type="H140"/>\n <Atom charge="0.0298" name="CG" type="C510"/>\n <Atom charge="-0.1501" name="ND1" type="N512"/>\n <Atom charge="0.3883" name="HD1" type="H513"/>\n <Atom charge="-0.0251" name="CE1" type="C509"/>\n <Atom charge="0.2694" name="HE1" type="H146"/>\n <Atom charge="-0.1683" name="NE2" type="N512"/>\n <Atom charge="0.3913" name="HE2" type="H513"/>\n <Atom charge="-0.1256" name="CD2" type="C510"/>\n <Atom charge="0.2336" name="HD2" type="H146"/>\n <Atom charge="0.8032" name="C" type="C271"/>\n <Atom charge="-0.8177" name="O" type="O272"/>\n <Atom charge="-0.8177" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CILE">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.31" name="CA" type="C283"/>\n <Atom charge="0.1375" name="HA" type="H140"/>\n <Atom charge="0.0363" name="CB" type="C137"/>\n <Atom charge="0.0766" name="HB" type="H140"/>\n <Atom charge="-0.3498" name="CG2" type="C135"/>\n <Atom charge="0.1021" name="HG21" type="H140"/>\n <Atom charge="0.1021" name="HG22" type="H140"/>\n <Atom charge="0.1021" name="HG23" type="H140"/>\n <Atom charge="-0.0323" name="CG1" type="C136"/>\n <Atom charge="0.0321" name="HG12" type="H140"/>\n <Atom charge="0.0321" name="HG13" type="H140"/>\n <Atom charge="-0.0699" name="CD1" type="C135"/>\n <Atom charge="0.0196" name="HD11" type="H140"/>\n <Atom charge="0.0196" name="HD12" type="H140"/>\n <Atom charge="0.0196" name="HD13" type="H140"/>\n <Atom charge="0.8343" name="C" type="C271"/>\n <Atom charge="-0.819" name="O" type="O272"/>\n <Atom charge="-0.819" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG1" atomName2="CD1"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CLEU">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2847" name="CA" type="C283"/>\n <Atom charge="0.1346" name="HA" type="H140"/>\n <Atom charge="-0.2469" name="CB" type="C136"/>\n <Atom charge="0.0974" name="HB2" type="H140"/>\n <Atom charge="0.0974" name="HB3" type="H140"/>\n <Atom charge="0.3706" name="CG" type="C137"/>\n <Atom charge="-0.0374" name="HG" type="H140"/>\n <Atom charge="-0.4163" name="CD1" type="C135"/>\n <Atom charge="0.1038" name="HD11" type="H140"/>\n <Atom charge="0.1038" name="HD12" type="H140"/>\n <Atom charge="0.1038" name="HD13" type="H140"/>\n <Atom charge="-0.4163" name="CD2" type="C135"/>\n <Atom charge="0.1038" name="HD21" type="H140"/>\n <Atom charge="0.1038" name="HD22" type="H140"/>\n <Atom charge="0.1038" name="HD23" type="H140"/>\n <Atom charge="0.8326" name="C" type="C271"/>\n <Atom charge="-0.8199" name="O" type="O272"/>\n <Atom charge="-0.8199" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="CD2" atomName2="HD21"/>\n <Bond atomName1="CD2" atomName2="HD22"/>\n <Bond atomName1="CD2" atomName2="HD23"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CLYS">\n <Atom charge="-0.3481" name="N" type="N238"/>\n <Atom charge="0.2764" name="H" type="H241"/>\n <Atom charge="-0.2903" name="CA" type="C283"/>\n <Atom charge="0.1438" name="HA" type="H140"/>\n <Atom charge="-0.0538" name="CB" type="C136"/>\n <Atom charge="0.0482" name="HB2" type="H140"/>\n <Atom charge="0.0482" name="HB3" type="H140"/>\n <Atom charge="0.0227" name="CG" type="C136"/>\n <Atom charge="0.0134" name="HG2" type="H140"/>\n <Atom charge="0.0134" name="HG3" type="H140"/>\n <Atom charge="-0.0392" name="CD" type="C136"/>\n <Atom charge="0.0611" name="HD2" type="H140"/>\n <Atom charge="0.0611" name="HD3" type="H140"/>\n <Atom charge="-0.0176" name="CE" type="C292"/>\n <Atom charge="0.1121" name="HE2" type="H140"/>\n <Atom charge="0.1121" name="HE3" type="H140"/>\n <Atom charge="-0.3741" name="NZ" type="N287"/>\n <Atom charge="0.3374" name="HZ1" type="H290"/>\n <Atom charge="0.3374" name="HZ2" type="H290"/>\n <Atom charge="0.3374" name="HZ3" type="H290"/>\n <Atom charge="0.8488" name="C" type="C271"/>\n <Atom charge="-0.8252" name="O" type="O272"/>\n <Atom charge="-0.8252" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="CE" atomName2="NZ"/>\n <Bond atomName1="NZ" atomName2="HZ1"/>\n <Bond atomName1="NZ" atomName2="HZ2"/>\n <Bond atomName1="NZ" atomName2="HZ3"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CMET">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2597" name="CA" type="C283"/>\n <Atom charge="0.1277" name="HA" type="H140"/>\n <Atom charge="-0.0236" name="CB" type="C136"/>\n <Atom charge="0.048" name="HB2" type="H140"/>\n <Atom charge="0.048" name="HB3" type="H140"/>\n <Atom charge="0.0492" name="CG" type="C210"/>\n <Atom charge="0.0317" name="HG2" type="H140"/>\n <Atom charge="0.0317" name="HG3" type="H140"/>\n <Atom charge="-0.2692" name="SD" type="S202"/>\n <Atom charge="-0.0376" name="CE" type="C209"/>\n <Atom charge="0.0625" name="HE1" type="H140"/>\n <Atom charge="0.0625" name="HE2" type="H140"/>\n <Atom charge="0.0625" name="HE3" type="H140"/>\n <Atom charge="0.8013" name="C" type="C271"/>\n <Atom charge="-0.8105" name="O" type="O272"/>\n <Atom charge="-0.8105" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="SD"/>\n <Bond atomName1="SD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE1"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CPHE">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.1825" name="CA" type="C283"/>\n <Atom charge="0.1098" name="HA" type="H140"/>\n <Atom charge="-0.0959" name="CB" type="C149"/>\n <Atom charge="0.0443" name="HB2" type="H140"/>\n <Atom charge="0.0443" name="HB3" type="H140"/>\n <Atom charge="0.0552" name="CG" type="C145"/>\n <Atom charge="-0.13" name="CD1" type="C145"/>\n <Atom charge="0.1408" name="HD1" type="H146"/>\n <Atom charge="-0.1847" name="CE1" type="C145"/>\n <Atom charge="0.1461" name="HE1" type="H146"/>\n <Atom charge="-0.0944" name="CZ" type="C145"/>\n <Atom charge="0.128" name="HZ" type="H146"/>\n <Atom charge="-0.1847" name="CE2" type="C145"/>\n <Atom charge="0.1461" name="HE2" type="H146"/>\n <Atom charge="-0.13" name="CD2" type="C145"/>\n <Atom charge="0.1408" name="HD2" type="H146"/>\n <Atom charge="0.766" name="C" type="C271"/>\n <Atom charge="-0.8026" name="O" type="O272"/>\n <Atom charge="-0.8026" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="HZ"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CPRO">\n <Atom charge="-0.2802" name="N" type="N239"/>\n <Atom charge="0.0434" name="CD" type="C245"/>\n <Atom charge="0.0331" name="HD2" type="H140"/>\n <Atom charge="0.0331" name="HD3" type="H140"/>\n <Atom charge="0.0466" name="CG" type="C136"/>\n <Atom charge="0.0172" name="HG2" type="H140"/>\n <Atom charge="0.0172" name="HG3" type="H140"/>\n <Atom charge="-0.0543" name="CB" type="C136"/>\n <Atom charge="0.0381" name="HB2" type="H140"/>\n <Atom charge="0.0381" name="HB3" type="H140"/>\n <Atom charge="-0.1336" name="CA" type="C285"/>\n <Atom charge="0.0776" name="HA" type="H140"/>\n <Atom charge="0.6631" name="C" type="C271"/>\n <Atom charge="-0.7697" name="O" type="O272"/>\n <Atom charge="-0.7697" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="CD"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CB"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CSER">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2722" name="CA" type="C283"/>\n <Atom charge="0.1304" name="HA" type="H140"/>\n <Atom charge="0.1123" name="CB" type="C157"/>\n <Atom charge="0.0813" name="HB2" type="H140"/>\n <Atom charge="0.0813" name="HB3" type="H140"/>\n <Atom charge="-0.6514" name="OG" type="O154"/>\n <Atom charge="0.4474" name="HG" type="H155"/>\n <Atom charge="0.8113" name="C" type="C271"/>\n <Atom charge="-0.8132" name="O" type="O272"/>\n <Atom charge="-0.8132" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="OG"/>\n <Bond atomName1="OG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CTHR">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.242" name="CA" type="C283"/>\n <Atom charge="0.1207" name="HA" type="H140"/>\n <Atom charge="0.3025" name="CB" type="C158"/>\n <Atom charge="0.0078" name="HB" type="H140"/>\n <Atom charge="-0.1853" name="CG2" type="C135"/>\n <Atom charge="0.0586" name="HG21" type="H140"/>\n <Atom charge="0.0586" name="HG22" type="H140"/>\n <Atom charge="0.0586" name="HG23" type="H140"/>\n <Atom charge="-0.6496" name="OG1" type="O154"/>\n <Atom charge="0.4119" name="HG1" type="H155"/>\n <Atom charge="0.781" name="C" type="C271"/>\n <Atom charge="-0.8044" name="O" type="O272"/>\n <Atom charge="-0.8044" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="OG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="OG1" atomName2="HG1"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CTRP">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2084" name="CA" type="C283"/>\n <Atom charge="0.1272" name="HA" type="H140"/>\n <Atom charge="-0.0742" name="CB" type="C136"/>\n <Atom charge="0.0497" name="HB2" type="H140"/>\n <Atom charge="0.0497" name="HB3" type="H140"/>\n <Atom charge="-0.0796" name="CG" type="C500"/>\n <Atom charge="-0.1808" name="CD1" type="C514"/>\n <Atom charge="0.2043" name="HD1" type="H146"/>\n <Atom charge="-0.3316" name="NE1" type="N503"/>\n <Atom charge="0.3413" name="HE1" type="H504"/>\n <Atom charge="0.1222" name="CE2" type="C502"/>\n <Atom charge="-0.2594" name="CZ2" type="C145"/>\n <Atom charge="0.1567" name="HZ2" type="H146"/>\n <Atom charge="-0.102" name="CH2" type="C145"/>\n <Atom charge="0.1401" name="HH2" type="H146"/>\n <Atom charge="-0.2287" name="CZ3" type="C145"/>\n <Atom charge="0.1507" name="HZ3" type="H146"/>\n <Atom charge="-0.1837" name="CE3" type="C145"/>\n <Atom charge="0.1491" name="HE3" type="H146"/>\n <Atom charge="0.1078" name="CD2" type="C501"/>\n <Atom charge="0.7658" name="C" type="C271"/>\n <Atom charge="-0.8011" name="O" type="O272"/>\n <Atom charge="-0.8011" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="NE1"/>\n <Bond atomName1="NE1" atomName2="HE1"/>\n <Bond atomName1="NE1" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="CZ2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CZ2" atomName2="HZ2"/>\n <Bond atomName1="CZ2" atomName2="CH2"/>\n <Bond atomName1="CH2" atomName2="HH2"/>\n <Bond atomName1="CH2" atomName2="CZ3"/>\n <Bond atomName1="CZ3" atomName2="HZ3"/>\n <Bond atomName1="CZ3" atomName2="CE3"/>\n <Bond atomName1="CE3" atomName2="HE3"/>\n <Bond atomName1="CE3" atomName2="CD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CTYR">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.2015" name="CA" type="C283"/>\n <Atom charge="0.1092" name="HA" type="H140"/>\n <Atom charge="-0.0752" name="CB" type="C149"/>\n <Atom charge="0.049" name="HB2" type="H140"/>\n <Atom charge="0.049" name="HB3" type="H140"/>\n <Atom charge="0.0243" name="CG" type="C145"/>\n <Atom charge="-0.1922" name="CD1" type="C145"/>\n <Atom charge="0.178" name="HD1" type="H146"/>\n <Atom charge="-0.2458" name="CE1" type="C145"/>\n <Atom charge="0.1673" name="HE1" type="H146"/>\n <Atom charge="0.3395" name="CZ" type="C166"/>\n <Atom charge="-0.5643" name="OH" type="O167"/>\n <Atom charge="0.4017" name="HH" type="H168"/>\n <Atom charge="-0.2458" name="CE2" type="C145"/>\n <Atom charge="0.1673" name="HE2" type="H146"/>\n <Atom charge="-0.1922" name="CD2" type="C145"/>\n <Atom charge="0.178" name="HD2" type="H146"/>\n <Atom charge="0.7817" name="C" type="C271"/>\n <Atom charge="-0.807" name="O" type="O272"/>\n <Atom charge="-0.807" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="OH"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="OH" atomName2="HH"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="CVAL">\n <Atom charge="-0.3821" name="N" type="N238"/>\n <Atom charge="0.2681" name="H" type="H241"/>\n <Atom charge="-0.3438" name="CA" type="C283"/>\n <Atom charge="0.1438" name="HA" type="H140"/>\n <Atom charge="0.194" name="CB" type="C137"/>\n <Atom charge="0.0308" name="HB" type="H140"/>\n <Atom charge="-0.3064" name="CG1" type="C135"/>\n <Atom charge="0.0836" name="HG11" type="H140"/>\n <Atom charge="0.0836" name="HG12" type="H140"/>\n <Atom charge="0.0836" name="HG13" type="H140"/>\n <Atom charge="-0.3064" name="CG2" type="C135"/>\n <Atom charge="0.0836" name="HG21" type="H140"/>\n <Atom charge="0.0836" name="HG22" type="H140"/>\n <Atom charge="0.0836" name="HG23" type="H140"/>\n <Atom charge="0.835" name="C" type="C271"/>\n <Atom charge="-0.8173" name="O" type="O272"/>\n <Atom charge="-0.8173" name="OXT" type="O272"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CG1" atomName2="HG11"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="C" atomName2="O"/>\n <Bond atomName1="C" atomName2="OXT"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="NHE">\n <Atom charge="-0.463" name="N" type="N237"/>\n <Atom charge="0.2315" name="HN1" type="H240"/>\n <Atom charge="0.2315" name="HN2" type="H240"/>\n <Bond atomName1="N" atomName2="HN1"/>\n <Bond atomName1="N" atomName2="HN2"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="NME">\n <Atom charge="-0.4412" name="N" type="N238"/>\n <Atom charge="0.3083" name="H" type="H241"/>\n <Atom charge="-0.0041" name="CH3" type="C242"/>\n <Atom charge="0.0613" name="HH31" type="H140"/>\n <Atom charge="0.0613" name="HH32" type="H140"/>\n <Atom charge="0.0613" name="HH33" type="H140"/>\n <Bond atomName1="N" atomName2="H"/>\n <Bond atomName1="N" atomName2="CH3"/>\n <Bond atomName1="CH3" atomName2="HH31"/>\n <Bond atomName1="CH3" atomName2="HH32"/>\n <Bond atomName1="CH3" atomName2="HH33"/>\n <ExternalBond atomName="N"/>\n </Residue>\n <Residue name="ACE">\n <Atom charge="0.1504" name="H1" type="H140"/>\n <Atom charge="-0.5264" name="CH3" type="C135"/>\n <Atom charge="0.1504" name="H2" type="H140"/>\n <Atom charge="0.1504" name="H3" type="H140"/>\n <Atom charge="0.7857" name="C" type="C235"/>\n <Atom charge="-0.6082" name="O" type="O236"/>\n <Bond atomName1="H1" atomName2="CH3"/>\n <Bond atomName1="CH3" atomName2="H2"/>\n <Bond atomName1="CH3" atomName2="H3"/>\n <Bond atomName1="CH3" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NALA">\n <Atom charge="0.1414" name="N" type="N287"/>\n <Atom charge="0.1997" name="H1" type="H290"/>\n <Atom charge="0.1997" name="H2" type="H290"/>\n <Atom charge="0.1997" name="H3" type="H290"/>\n <Atom charge="0.0962" name="CA" type="C293"/>\n <Atom charge="0.0889" name="HA" type="H140"/>\n <Atom charge="-0.0597" name="CB" type="C135"/>\n <Atom charge="0.03" name="HB1" type="H140"/>\n <Atom charge="0.03" name="HB2" type="H140"/>\n <Atom charge="0.03" name="HB3" type="H140"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB1"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NARG">\n <Atom charge="0.1305" name="N" type="N287"/>\n <Atom charge="0.2083" name="H1" type="H290"/>\n <Atom charge="0.2083" name="H2" type="H290"/>\n <Atom charge="0.2083" name="H3" type="H290"/>\n <Atom charge="-0.0223" name="CA" type="C293"/>\n <Atom charge="0.1242" name="HA" type="H140"/>\n <Atom charge="0.0118" name="CB" type="C136"/>\n <Atom charge="0.0226" name="HB2" type="H140"/>\n <Atom charge="0.0226" name="HB3" type="H140"/>\n <Atom charge="0.0236" name="CG" type="C308"/>\n <Atom charge="0.0309" name="HG2" type="H140"/>\n <Atom charge="0.0309" name="HG3" type="H140"/>\n <Atom charge="0.0935" name="CD" type="C307"/>\n <Atom charge="0.0527" name="HD2" type="H140"/>\n <Atom charge="0.0527" name="HD3" type="H140"/>\n <Atom charge="-0.565" name="NE" type="N303"/>\n <Atom charge="0.3592" name="HE" type="H304"/>\n <Atom charge="0.8281" name="CZ" type="C302"/>\n <Atom charge="-0.8693" name="NH1" type="N300"/>\n <Atom charge="0.4494" name="HH11" type="H301"/>\n <Atom charge="0.4494" name="HH12" type="H301"/>\n <Atom charge="-0.8693" name="NH2" type="N300"/>\n <Atom charge="0.4494" name="HH21" type="H301"/>\n <Atom charge="0.4494" name="HH22" type="H301"/>\n <Atom charge="0.7214" name="C" type="C235"/>\n <Atom charge="-0.6013" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="NE"/>\n <Bond atomName1="NE" atomName2="HE"/>\n <Bond atomName1="NE" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="NH1"/>\n <Bond atomName1="CZ" atomName2="NH2"/>\n <Bond atomName1="NH1" atomName2="HH11"/>\n <Bond atomName1="NH1" atomName2="HH12"/>\n <Bond atomName1="NH2" atomName2="HH21"/>\n <Bond atomName1="NH2" atomName2="HH22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NASN">\n <Atom charge="0.1801" name="N" type="N287"/>\n <Atom charge="0.1921" name="H1" type="H290"/>\n <Atom charge="0.1921" name="H2" type="H290"/>\n <Atom charge="0.1921" name="H3" type="H290"/>\n <Atom charge="0.0368" name="CA" type="C293"/>\n <Atom charge="0.1231" name="HA" type="H140"/>\n <Atom charge="-0.0283" name="CB" type="C136"/>\n <Atom charge="0.0515" name="HB2" type="H140"/>\n <Atom charge="0.0515" name="HB3" type="H140"/>\n <Atom charge="0.5833" name="CG" type="C235"/>\n <Atom charge="-0.5744" name="OD1" type="O236"/>\n <Atom charge="-0.8634" name="ND2" type="N237"/>\n <Atom charge="0.4097" name="HD21" type="H240"/>\n <Atom charge="0.4097" name="HD22" type="H240"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="ND2"/>\n <Bond atomName1="ND2" atomName2="HD21"/>\n <Bond atomName1="ND2" atomName2="HD22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NASP">\n <Atom charge="0.0782" name="N" type="N287"/>\n <Atom charge="0.22" name="H1" type="H290"/>\n <Atom charge="0.22" name="H2" type="H290"/>\n <Atom charge="0.22" name="H3" type="H290"/>\n <Atom charge="0.0292" name="CA" type="C293"/>\n <Atom charge="0.1141" name="HA" type="H140"/>\n <Atom charge="-0.0235" name="CB" type="C274"/>\n <Atom charge="-0.0169" name="HB2" type="H140"/>\n <Atom charge="-0.0169" name="HB3" type="H140"/>\n <Atom charge="0.8194" name="CG" type="C271"/>\n <Atom charge="-0.8084" name="OD1" type="O272"/>\n <Atom charge="-0.8084" name="OD2" type="O272"/>\n <Atom charge="0.5621" name="C" type="C235"/>\n <Atom charge="-0.5889" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="OD1"/>\n <Bond atomName1="CG" atomName2="OD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NCYS">\n <Atom charge="0.1325" name="N" type="N287"/>\n <Atom charge="0.2023" name="H1" type="H290"/>\n <Atom charge="0.2023" name="H2" type="H290"/>\n <Atom charge="0.2023" name="H3" type="H290"/>\n <Atom charge="0.0927" name="CA" type="C293"/>\n <Atom charge="0.1411" name="HA" type="H140"/>\n <Atom charge="-0.1195" name="CB" type="C206"/>\n <Atom charge="0.1188" name="HB2" type="H140"/>\n <Atom charge="0.1188" name="HB3" type="H140"/>\n <Atom charge="-0.3298" name="SG" type="S200"/>\n <Atom charge="0.1975" name="HG" type="H204"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="SG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NCYX">\n <Atom charge="0.2069" name="N" type="N287"/>\n <Atom charge="0.1815" name="H1" type="H290"/>\n <Atom charge="0.1815" name="H2" type="H290"/>\n <Atom charge="0.1815" name="H3" type="H290"/>\n <Atom charge="0.1055" name="CA" type="C293"/>\n <Atom charge="0.0922" name="HA" type="H140"/>\n <Atom charge="-0.0277" name="CB" type="C214"/>\n <Atom charge="0.068" name="HB2" type="H140"/>\n <Atom charge="0.068" name="HB3" type="H140"/>\n <Atom charge="-0.0984" name="SG" type="S203"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="SG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="SG"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NGLN">\n <Atom charge="0.1493" name="N" type="N287"/>\n <Atom charge="0.1996" name="H1" type="H290"/>\n <Atom charge="0.1996" name="H2" type="H290"/>\n <Atom charge="0.1996" name="H3" type="H290"/>\n <Atom charge="0.0536" name="CA" type="C293"/>\n <Atom charge="0.1015" name="HA" type="H140"/>\n <Atom charge="0.0651" name="CB" type="C136"/>\n <Atom charge="0.005" name="HB2" type="H140"/>\n <Atom charge="0.005" name="HB3" type="H140"/>\n <Atom charge="-0.0903" name="CG" type="C136"/>\n <Atom charge="0.0331" name="HG2" type="H140"/>\n <Atom charge="0.0331" name="HG3" type="H140"/>\n <Atom charge="0.7354" name="CD" type="C235"/>\n <Atom charge="-0.6133" name="OE1" type="O236"/>\n <Atom charge="-1.0031" name="NE2" type="N237"/>\n <Atom charge="0.4429" name="HE21" type="H240"/>\n <Atom charge="0.4429" name="HE22" type="H240"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE21"/>\n <Bond atomName1="NE2" atomName2="HE22"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NGLU">\n <Atom charge="0.0017" name="N" type="N287"/>\n <Atom charge="0.2391" name="H1" type="H290"/>\n <Atom charge="0.2391" name="H2" type="H290"/>\n <Atom charge="0.2391" name="H3" type="H290"/>\n <Atom charge="0.0588" name="CA" type="C293"/>\n <Atom charge="0.1202" name="HA" type="H140"/>\n <Atom charge="0.0909" name="CB" type="C136"/>\n <Atom charge="-0.0232" name="HB2" type="H140"/>\n <Atom charge="-0.0232" name="HB3" type="H140"/>\n <Atom charge="-0.0236" name="CG" type="C274"/>\n <Atom charge="-0.0315" name="HG2" type="H140"/>\n <Atom charge="-0.0315" name="HG3" type="H140"/>\n <Atom charge="0.8087" name="CD" type="C271"/>\n <Atom charge="-0.8189" name="OE1" type="O272"/>\n <Atom charge="-0.8189" name="OE2" type="O272"/>\n <Atom charge="0.5621" name="C" type="C235"/>\n <Atom charge="-0.5889" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="OE1"/>\n <Bond atomName1="CD" atomName2="OE2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NGLY">\n <Atom charge="0.2943" name="N" type="N287"/>\n <Atom charge="0.1642" name="H1" type="H290"/>\n <Atom charge="0.1642" name="H2" type="H290"/>\n <Atom charge="0.1642" name="H3" type="H290"/>\n <Atom charge="-0.01" name="CA" type="C292"/>\n <Atom charge="0.0895" name="HA2" type="H140"/>\n <Atom charge="0.0895" name="HA3" type="H140"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA2"/>\n <Bond atomName1="CA" atomName2="HA3"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NHID">\n <Atom charge="0.1542" name="N" type="N287"/>\n <Atom charge="0.1963" name="H1" type="H290"/>\n <Atom charge="0.1963" name="H2" type="H290"/>\n <Atom charge="0.1963" name="H3" type="H290"/>\n <Atom charge="0.0964" name="CA" type="C293"/>\n <Atom charge="0.0958" name="HA" type="H140"/>\n <Atom charge="0.0259" name="CB" type="C505"/>\n <Atom charge="0.0209" name="HB2" type="H140"/>\n <Atom charge="0.0209" name="HB3" type="H140"/>\n <Atom charge="-0.0399" name="CG" type="C508"/>\n <Atom charge="-0.3819" name="ND1" type="N503"/>\n <Atom charge="0.3632" name="HD1" type="H504"/>\n <Atom charge="0.2127" name="CE1" type="C506"/>\n <Atom charge="0.1385" name="HE1" type="H146"/>\n <Atom charge="-0.5711" name="NE2" type="N511"/>\n <Atom charge="0.1046" name="CD2" type="C507"/>\n <Atom charge="0.1299" name="HD2" type="H146"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NHIE">\n <Atom charge="0.1472" name="N" type="N287"/>\n <Atom charge="0.2016" name="H1" type="H290"/>\n <Atom charge="0.2016" name="H2" type="H290"/>\n <Atom charge="0.2016" name="H3" type="H290"/>\n <Atom charge="0.0236" name="CA" type="C293"/>\n <Atom charge="0.138" name="HA" type="H140"/>\n <Atom charge="0.0489" name="CB" type="C505"/>\n <Atom charge="0.0223" name="HB2" type="H140"/>\n <Atom charge="0.0223" name="HB3" type="H140"/>\n <Atom charge="0.174" name="CG" type="C507"/>\n <Atom charge="-0.5579" name="ND1" type="N511"/>\n <Atom charge="0.1804" name="CE1" type="C506"/>\n <Atom charge="0.1397" name="HE1" type="H146"/>\n <Atom charge="-0.2781" name="NE2" type="N503"/>\n <Atom charge="0.3324" name="HE2" type="H504"/>\n <Atom charge="-0.2349" name="CD2" type="C508"/>\n <Atom charge="0.1963" name="HD2" type="H146"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NHIP">\n <Atom charge="0.256" name="N" type="N287"/>\n <Atom charge="0.1704" name="H1" type="H290"/>\n <Atom charge="0.1704" name="H2" type="H290"/>\n <Atom charge="0.1704" name="H3" type="H290"/>\n <Atom charge="0.0581" name="CA" type="C293"/>\n <Atom charge="0.1047" name="HA" type="H140"/>\n <Atom charge="0.0484" name="CB" type="C505"/>\n <Atom charge="0.0531" name="HB2" type="H140"/>\n <Atom charge="0.0531" name="HB3" type="H140"/>\n <Atom charge="-0.0236" name="CG" type="C510"/>\n <Atom charge="-0.151" name="ND1" type="N512"/>\n <Atom charge="0.3821" name="HD1" type="H513"/>\n <Atom charge="-0.0011" name="CE1" type="C509"/>\n <Atom charge="0.2645" name="HE1" type="H146"/>\n <Atom charge="-0.1739" name="NE2" type="N512"/>\n <Atom charge="0.3921" name="HE2" type="H513"/>\n <Atom charge="-0.1433" name="CD2" type="C510"/>\n <Atom charge="0.2495" name="HD2" type="H146"/>\n <Atom charge="0.7214" name="C" type="C235"/>\n <Atom charge="-0.6013" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="ND1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="ND1" atomName2="HD1"/>\n <Bond atomName1="ND1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="NE2"/>\n <Bond atomName1="NE2" atomName2="HE2"/>\n <Bond atomName1="NE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NILE">\n <Atom charge="0.0311" name="N" type="N287"/>\n <Atom charge="0.2329" name="H1" type="H290"/>\n <Atom charge="0.2329" name="H2" type="H290"/>\n <Atom charge="0.2329" name="H3" type="H290"/>\n <Atom charge="0.0257" name="CA" type="C293"/>\n <Atom charge="0.1031" name="HA" type="H140"/>\n <Atom charge="0.1885" name="CB" type="C137"/>\n <Atom charge="0.0213" name="HB" type="H140"/>\n <Atom charge="-0.372" name="CG2" type="C135"/>\n <Atom charge="0.0947" name="HG21" type="H140"/>\n <Atom charge="0.0947" name="HG22" type="H140"/>\n <Atom charge="0.0947" name="HG23" type="H140"/>\n <Atom charge="-0.0387" name="CG1" type="C136"/>\n <Atom charge="0.0201" name="HG12" type="H140"/>\n <Atom charge="0.0201" name="HG13" type="H140"/>\n <Atom charge="-0.0908" name="CD1" type="C135"/>\n <Atom charge="0.0226" name="HD11" type="H140"/>\n <Atom charge="0.0226" name="HD12" type="H140"/>\n <Atom charge="0.0226" name="HD13" type="H140"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG1" atomName2="CD1"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NLEU">\n <Atom charge="0.101" name="N" type="N287"/>\n <Atom charge="0.2148" name="H1" type="H290"/>\n <Atom charge="0.2148" name="H2" type="H290"/>\n <Atom charge="0.2148" name="H3" type="H290"/>\n <Atom charge="0.0104" name="CA" type="C293"/>\n <Atom charge="0.1053" name="HA" type="H140"/>\n <Atom charge="-0.0244" name="CB" type="C136"/>\n <Atom charge="0.0256" name="HB2" type="H140"/>\n <Atom charge="0.0256" name="HB3" type="H140"/>\n <Atom charge="0.3421" name="CG" type="C137"/>\n <Atom charge="-0.038" name="HG" type="H140"/>\n <Atom charge="-0.4106" name="CD1" type="C135"/>\n <Atom charge="0.098" name="HD11" type="H140"/>\n <Atom charge="0.098" name="HD12" type="H140"/>\n <Atom charge="0.098" name="HD13" type="H140"/>\n <Atom charge="-0.4104" name="CD2" type="C135"/>\n <Atom charge="0.098" name="HD21" type="H140"/>\n <Atom charge="0.098" name="HD22" type="H140"/>\n <Atom charge="0.098" name="HD23" type="H140"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD11"/>\n <Bond atomName1="CD1" atomName2="HD12"/>\n <Bond atomName1="CD1" atomName2="HD13"/>\n <Bond atomName1="CD2" atomName2="HD21"/>\n <Bond atomName1="CD2" atomName2="HD22"/>\n <Bond atomName1="CD2" atomName2="HD23"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NLYS">\n <Atom charge="0.0966" name="N" type="N287"/>\n <Atom charge="0.2165" name="H1" type="H290"/>\n <Atom charge="0.2165" name="H2" type="H290"/>\n <Atom charge="0.2165" name="H3" type="H290"/>\n <Atom charge="-0.0015" name="CA" type="C293"/>\n <Atom charge="0.118" name="HA" type="H140"/>\n <Atom charge="0.0212" name="CB" type="C136"/>\n <Atom charge="0.0283" name="HB2" type="H140"/>\n <Atom charge="0.0283" name="HB3" type="H140"/>\n <Atom charge="-0.0048" name="CG" type="C136"/>\n <Atom charge="0.0121" name="HG2" type="H140"/>\n <Atom charge="0.0121" name="HG3" type="H140"/>\n <Atom charge="-0.0608" name="CD" type="C136"/>\n <Atom charge="0.0633" name="HD2" type="H140"/>\n <Atom charge="0.0633" name="HD3" type="H140"/>\n <Atom charge="-0.0181" name="CE" type="C296"/>\n <Atom charge="0.1171" name="HE2" type="H140"/>\n <Atom charge="0.1171" name="HE3" type="H140"/>\n <Atom charge="-0.3764" name="NZ" type="N287"/>\n <Atom charge="0.3382" name="HZ1" type="H290"/>\n <Atom charge="0.3382" name="HZ2" type="H290"/>\n <Atom charge="0.3382" name="HZ3" type="H290"/>\n <Atom charge="0.7214" name="C" type="C235"/>\n <Atom charge="-0.6013" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CD"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="CE" atomName2="NZ"/>\n <Bond atomName1="NZ" atomName2="HZ1"/>\n <Bond atomName1="NZ" atomName2="HZ2"/>\n <Bond atomName1="NZ" atomName2="HZ3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NMET">\n <Atom charge="0.1592" name="N" type="N287"/>\n <Atom charge="0.1984" name="H1" type="H290"/>\n <Atom charge="0.1984" name="H2" type="H290"/>\n <Atom charge="0.1984" name="H3" type="H290"/>\n <Atom charge="0.0221" name="CA" type="C293"/>\n <Atom charge="0.1116" name="HA" type="H140"/>\n <Atom charge="0.0865" name="CB" type="C136"/>\n <Atom charge="0.0125" name="HB2" type="H140"/>\n <Atom charge="0.0125" name="HB3" type="H140"/>\n <Atom charge="0.0334" name="CG" type="C210"/>\n <Atom charge="0.0292" name="HG2" type="H140"/>\n <Atom charge="0.0292" name="HG3" type="H140"/>\n <Atom charge="-0.2774" name="SD" type="S202"/>\n <Atom charge="-0.0341" name="CE" type="C209"/>\n <Atom charge="0.0597" name="HE1" type="H140"/>\n <Atom charge="0.0597" name="HE2" type="H140"/>\n <Atom charge="0.0597" name="HE3" type="H140"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="SD"/>\n <Bond atomName1="SD" atomName2="CE"/>\n <Bond atomName1="CE" atomName2="HE1"/>\n <Bond atomName1="CE" atomName2="HE2"/>\n <Bond atomName1="CE" atomName2="HE3"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NPHE">\n <Atom charge="0.1737" name="N" type="N287"/>\n <Atom charge="0.1921" name="H1" type="H290"/>\n <Atom charge="0.1921" name="H2" type="H290"/>\n <Atom charge="0.1921" name="H3" type="H290"/>\n <Atom charge="0.0733" name="CA" type="C293"/>\n <Atom charge="0.1041" name="HA" type="H140"/>\n <Atom charge="0.033" name="CB" type="C149"/>\n <Atom charge="0.0104" name="HB2" type="H140"/>\n <Atom charge="0.0104" name="HB3" type="H140"/>\n <Atom charge="0.0031" name="CG" type="C145"/>\n <Atom charge="-0.1392" name="CD1" type="C145"/>\n <Atom charge="0.1374" name="HD1" type="H146"/>\n <Atom charge="-0.1602" name="CE1" type="C145"/>\n <Atom charge="0.1433" name="HE1" type="H146"/>\n <Atom charge="-0.1208" name="CZ" type="C145"/>\n <Atom charge="0.1329" name="HZ" type="H146"/>\n <Atom charge="-0.1603" name="CE2" type="C145"/>\n <Atom charge="0.1433" name="HE2" type="H146"/>\n <Atom charge="-0.1391" name="CD2" type="C145"/>\n <Atom charge="0.1374" name="HD2" type="H146"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="HZ"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NPRO">\n <Atom charge="-0.202" name="N" type="N309"/>\n <Atom charge="0.312" name="H2" type="H310"/>\n <Atom charge="0.312" name="H3" type="H310"/>\n <Atom charge="-0.012" name="CD" type="C296"/>\n <Atom charge="0.1" name="HD2" type="H140"/>\n <Atom charge="0.1" name="HD3" type="H140"/>\n <Atom charge="-0.121" name="CG" type="C136"/>\n <Atom charge="0.1" name="HG2" type="H140"/>\n <Atom charge="0.1" name="HG3" type="H140"/>\n <Atom charge="-0.115" name="CB" type="C136"/>\n <Atom charge="0.1" name="HB2" type="H140"/>\n <Atom charge="0.1" name="HB3" type="H140"/>\n <Atom charge="0.1" name="CA" type="C295"/>\n <Atom charge="0.1" name="HA" type="H140"/>\n <Atom charge="0.526" name="C" type="C235"/>\n <Atom charge="-0.5" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CD"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CD" atomName2="HD2"/>\n <Bond atomName1="CD" atomName2="HD3"/>\n <Bond atomName1="CD" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="HG2"/>\n <Bond atomName1="CG" atomName2="HG3"/>\n <Bond atomName1="CG" atomName2="CB"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NSER">\n <Atom charge="0.1849" name="N" type="N287"/>\n <Atom charge="0.1898" name="H1" type="H290"/>\n <Atom charge="0.1898" name="H2" type="H290"/>\n <Atom charge="0.1898" name="H3" type="H290"/>\n <Atom charge="0.0567" name="CA" type="C293"/>\n <Atom charge="0.0782" name="HA" type="H140"/>\n <Atom charge="0.2596" name="CB" type="C157"/>\n <Atom charge="0.0273" name="HB2" type="H140"/>\n <Atom charge="0.0273" name="HB3" type="H140"/>\n <Atom charge="-0.6714" name="OG" type="O154"/>\n <Atom charge="0.4239" name="HG" type="H155"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="OG"/>\n <Bond atomName1="OG" atomName2="HG"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NTHR">\n <Atom charge="0.1812" name="N" type="N287"/>\n <Atom charge="0.1934" name="H1" type="H290"/>\n <Atom charge="0.1934" name="H2" type="H290"/>\n <Atom charge="0.1934" name="H3" type="H290"/>\n <Atom charge="0.0034" name="CA" type="C293"/>\n <Atom charge="0.1087" name="HA" type="H140"/>\n <Atom charge="0.4514" name="CB" type="C158"/>\n <Atom charge="-0.0323" name="HB" type="H140"/>\n <Atom charge="-0.2554" name="CG2" type="C135"/>\n <Atom charge="0.0627" name="HG21" type="H140"/>\n <Atom charge="0.0627" name="HG22" type="H140"/>\n <Atom charge="0.0627" name="HG23" type="H140"/>\n <Atom charge="-0.6764" name="OG1" type="O154"/>\n <Atom charge="0.407" name="HG1" type="H155"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CB" atomName2="OG1"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="OG1" atomName2="HG1"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NTRP">\n <Atom charge="0.1913" name="N" type="N287"/>\n <Atom charge="0.1888" name="H1" type="H290"/>\n <Atom charge="0.1888" name="H2" type="H290"/>\n <Atom charge="0.1888" name="H3" type="H290"/>\n <Atom charge="0.0421" name="CA" type="C293"/>\n <Atom charge="0.1162" name="HA" type="H140"/>\n <Atom charge="0.0543" name="CB" type="C136"/>\n <Atom charge="0.0222" name="HB2" type="H140"/>\n <Atom charge="0.0222" name="HB3" type="H140"/>\n <Atom charge="-0.1654" name="CG" type="C500"/>\n <Atom charge="-0.1788" name="CD1" type="C514"/>\n <Atom charge="0.2195" name="HD1" type="H146"/>\n <Atom charge="-0.3444" name="NE1" type="N503"/>\n <Atom charge="0.3412" name="HE1" type="H504"/>\n <Atom charge="0.1575" name="CE2" type="C502"/>\n <Atom charge="-0.271" name="CZ2" type="C145"/>\n <Atom charge="0.1589" name="HZ2" type="H146"/>\n <Atom charge="-0.108" name="CH2" type="C145"/>\n <Atom charge="0.1411" name="HH2" type="H146"/>\n <Atom charge="-0.2034" name="CZ3" type="C145"/>\n <Atom charge="0.1458" name="HZ3" type="H146"/>\n <Atom charge="-0.2265" name="CE3" type="C145"/>\n <Atom charge="0.1646" name="HE3" type="H146"/>\n <Atom charge="0.1132" name="CD2" type="C501"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="NE1"/>\n <Bond atomName1="NE1" atomName2="HE1"/>\n <Bond atomName1="NE1" atomName2="CE2"/>\n <Bond atomName1="CE2" atomName2="CZ2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CZ2" atomName2="HZ2"/>\n <Bond atomName1="CZ2" atomName2="CH2"/>\n <Bond atomName1="CH2" atomName2="HH2"/>\n <Bond atomName1="CH2" atomName2="CZ3"/>\n <Bond atomName1="CZ3" atomName2="HZ3"/>\n <Bond atomName1="CZ3" atomName2="CE3"/>\n <Bond atomName1="CE3" atomName2="HE3"/>\n <Bond atomName1="CE3" atomName2="CD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NTYR">\n <Atom charge="0.194" name="N" type="N287"/>\n <Atom charge="0.1873" name="H1" type="H290"/>\n <Atom charge="0.1873" name="H2" type="H290"/>\n <Atom charge="0.1873" name="H3" type="H290"/>\n <Atom charge="0.057" name="CA" type="C293"/>\n <Atom charge="0.0983" name="HA" type="H140"/>\n <Atom charge="0.0659" name="CB" type="C149"/>\n <Atom charge="0.0102" name="HB2" type="H140"/>\n <Atom charge="0.0102" name="HB3" type="H140"/>\n <Atom charge="-0.0205" name="CG" type="C145"/>\n <Atom charge="-0.2002" name="CD1" type="C145"/>\n <Atom charge="0.172" name="HD1" type="H146"/>\n <Atom charge="-0.2239" name="CE1" type="C145"/>\n <Atom charge="0.165" name="HE1" type="H146"/>\n <Atom charge="0.3139" name="CZ" type="C166"/>\n <Atom charge="-0.5578" name="OH" type="O167"/>\n <Atom charge="0.4001" name="HH" type="H168"/>\n <Atom charge="-0.2239" name="CE2" type="C145"/>\n <Atom charge="0.165" name="HE2" type="H146"/>\n <Atom charge="-0.2002" name="CD2" type="C145"/>\n <Atom charge="0.172" name="HD2" type="H146"/>\n <Atom charge="0.6123" name="C" type="C235"/>\n <Atom charge="-0.5713" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB2"/>\n <Bond atomName1="CB" atomName2="HB3"/>\n <Bond atomName1="CB" atomName2="CG"/>\n <Bond atomName1="CG" atomName2="CD1"/>\n <Bond atomName1="CG" atomName2="CD2"/>\n <Bond atomName1="CD1" atomName2="HD1"/>\n <Bond atomName1="CD1" atomName2="CE1"/>\n <Bond atomName1="CE1" atomName2="HE1"/>\n <Bond atomName1="CE1" atomName2="CZ"/>\n <Bond atomName1="CZ" atomName2="OH"/>\n <Bond atomName1="CZ" atomName2="CE2"/>\n <Bond atomName1="OH" atomName2="HH"/>\n <Bond atomName1="CE2" atomName2="HE2"/>\n <Bond atomName1="CE2" atomName2="CD2"/>\n <Bond atomName1="CD2" atomName2="HD2"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n <Residue name="NVAL">\n <Atom charge="0.0577" name="N" type="N287"/>\n <Atom charge="0.2272" name="H1" type="H290"/>\n <Atom charge="0.2272" name="H2" type="H290"/>\n <Atom charge="0.2272" name="H3" type="H290"/>\n <Atom charge="-0.0054" name="CA" type="C293"/>\n <Atom charge="0.1093" name="HA" type="H140"/>\n <Atom charge="0.3196" name="CB" type="C137"/>\n <Atom charge="-0.0221" name="HB" type="H140"/>\n <Atom charge="-0.3129" name="CG1" type="C135"/>\n <Atom charge="0.0735" name="HG11" type="H140"/>\n <Atom charge="0.0735" name="HG12" type="H140"/>\n <Atom charge="0.0735" name="HG13" type="H140"/>\n <Atom charge="-0.3129" name="CG2" type="C135"/>\n <Atom charge="0.0735" name="HG21" type="H140"/>\n <Atom charge="0.0735" name="HG22" type="H140"/>\n <Atom charge="0.0735" name="HG23" type="H140"/>\n <Atom charge="0.6163" name="C" type="C235"/>\n <Atom charge="-0.5722" name="O" type="O236"/>\n <Bond atomName1="N" atomName2="H1"/>\n <Bond atomName1="N" atomName2="H2"/>\n <Bond atomName1="N" atomName2="H3"/>\n <Bond atomName1="N" atomName2="CA"/>\n <Bond atomName1="CA" atomName2="HA"/>\n <Bond atomName1="CA" atomName2="CB"/>\n <Bond atomName1="CA" atomName2="C"/>\n <Bond atomName1="CB" atomName2="HB"/>\n <Bond atomName1="CB" atomName2="CG1"/>\n <Bond atomName1="CB" atomName2="CG2"/>\n <Bond atomName1="CG1" atomName2="HG11"/>\n <Bond atomName1="CG1" atomName2="HG12"/>\n <Bond atomName1="CG1" atomName2="HG13"/>\n <Bond atomName1="CG2" atomName2="HG21"/>\n <Bond atomName1="CG2" atomName2="HG22"/>\n <Bond atomName1="CG2" atomName2="HG23"/>\n <Bond atomName1="C" atomName2="O"/>\n <ExternalBond atomName="C"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="HC" class2="CT" length="0.1092" k="273432.768"/>\n <Bond class1="CT" class2="C" length="0.1523" k="166657.088"/>\n <Bond class1="C" class2="N" length="0.1353" k="312461.12"/>\n <Bond class1="C" class2="O" length="0.122" k="581350.064"/>\n <Bond class1="N" class2="CT" length="0.1449" k="211040.96"/>\n <Bond class1="N" class2="H" length="0.1011" k="387907.008"/>\n <Bond class1="CT" class2="CT" length="0.1537" k="159109.152"/>\n <Bond class1="CT" class2="N2" length="0.1468" k="194689.888"/>\n <Bond class1="N2" class2="CA" length="0.1332" k="365104.208"/>\n <Bond class1="N2" class2="H3" length="0.1006" k="404802"/>\n <Bond class1="C" class2="OH" length="0.1357" k="228329.248"/>\n <Bond class1="OH" class2="HO" length="0.096" k="456943.008"/>\n <Bond class1="CT" class2="SH" length="0.1826" k="117963.696"/>\n <Bond class1="SH" class2="HS" length="0.1345" k="244010.88"/>\n <Bond class1="C" class2="O2" length="0.1253" k="457654.288"/>\n <Bond class1="CT" class2="CX" length="0.1492" k="204873.744"/>\n <Bond class1="CX" class2="NA" length="0.1383" k="245224.24"/>\n <Bond class1="CX" class2="CX" length="0.136" k="360024.832"/>\n <Bond class1="NA" class2="CR" length="0.1341" k="331213.808"/>\n <Bond class1="NA" class2="H" length="0.1006" k="405806.16"/>\n <Bond class1="CR" class2="HA" length="0.1078" k="312661.952"/>\n <Bond class1="CX" class2="HA" length="0.1083" k="308327.328"/>\n <Bond class1="CT" class2="CV" length="0.1494" k="210028.432"/>\n <Bond class1="CV" class2="NB" length="0.1379" k="233659.664"/>\n <Bond class1="CV" class2="CW" length="0.1364" k="349665.248"/>\n <Bond class1="NB" class2="CR" length="0.131" k="371087.328"/>\n <Bond class1="NA" class2="CW" length="0.1375" k="273800.96"/>\n <Bond class1="CW" class2="HA" length="0.1078" k="311189.184"/>\n <Bond class1="CT" class2="N3" length="0.1517" k="134791.744"/>\n <Bond class1="N3" class2="H3" length="0.1022" k="358259.184"/>\n <Bond class1="CT" class2="S" length="0.1817" k="128122.448"/>\n <Bond class1="CT" class2="CA" length="0.1505" k="189635.616"/>\n <Bond class1="CA" class2="CA" length="0.1391" k="303256.32"/>\n <Bond class1="CA" class2="HA" length="0.1085" k="291942.784"/>\n <Bond class1="CT" class2="OH" length="0.1418" k="208572.4"/>\n <Bond class1="CT" class2="CS" length="0.1495" k="204522.288"/>\n <Bond class1="CS" class2="CW" length="0.1364" k="358133.664"/>\n <Bond class1="CS" class2="CB" length="0.1439" k="223341.92"/>\n <Bond class1="NA" class2="CN" length="0.1374" k="270855.424"/>\n <Bond class1="CN" class2="CA" length="0.1396" k="292854.896"/>\n <Bond class1="CN" class2="CB" length="0.141" k="254512.72"/>\n <Bond class1="CA" class2="CB" length="0.1401" k="282947.184"/>\n <Bond class1="CA" class2="OH" length="0.136" k="277432.672"/>\n <Bond class1="S" class2="S" length="0.207" k="122415.472"/>\n <Bond class1="OT" class2="HT" length="0.09572" k="376560"/>\n <Bond class1="HT" class2="HT" length="0.15139" k="0"/>\n <!-- STILL Cv-ha this one is qubemaker USES OPLS -->\n <Bond class1="CV" class2="HA" length="0.108" k="307105.6"/>\n <!-- CT-CW this is opls -->\n <Bond class1="CT" class2="CW" length=".1504" k="265265.6"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HC" class2="CT" class3="C" angle="1." k="435.72176"/>\n <Angle class1="HC" class2="CT" class3="HC" angle="1." k="266.85552"/>\n <Angle class1="CT" class2="C" class3="N" angle="2." k="624.42016"/>\n <Angle class1="CT" class2="C" class3="O" angle="2." k="486.85024"/>\n <Angle class1="N" class2="C" class3="O" angle="2." k="506.43136"/>\n <Angle class1="C" class2="N" class3="CT" angle="2." k="678.47744"/>\n <Angle class1="C" class2="N" class3="H" angle="2." k="284.00992"/>\n <Angle class1="CT" class2="N" class3="H" angle="2." k="262.67152"/>\n <Angle class1="N" class2="CT" class3="C" angle="1." k="954.53776"/>\n <Angle class1="N" class2="CT" class3="CT" angle="1." k="795.96416"/>\n <Angle class1="N" class2="CT" class3="HC" angle="1." k="459.31952"/>\n <Angle class1="C" class2="CT" class3="CT" angle="1." k="961.23216"/>\n <Angle class1="CT" class2="CT" class3="HC" angle="1." k="378.98672"/>\n <Angle class1="CT" class2="CT" class3="CT" angle="1." k="847.00896"/>\n <Angle class1="CT" class2="CT" class3="N2" angle="1." k="1083.99072"/>\n <Angle class1="N2" class2="CT" class3="HC" angle="1." k="477.8128"/>\n <Angle class1="CT" class2="N2" class3="CA" angle="2." k="626.67952"/>\n <Angle class1="CT" class2="N2" class3="H3" angle="2." k="267.69232"/>\n <Angle class1="CA" class2="N2" class3="H3" angle="2." k="280.83008"/>\n <Angle class1="N2" class2="CA" class3="N2" angle="2." k="629.2736"/>\n <Angle class1="H3" class2="N2" class3="H3" angle="2." k="181.66928"/>\n <Angle class1="H" class2="N" class3="H" angle="2." k="190.70672"/>\n <Angle class1="CT" class2="C" class3="OH" angle="1." k="616.97264"/>\n <Angle class1="OH" class2="C" class3="O" angle="2." k="556.30464"/>\n <Angle class1="C" class2="OH" class3="HO" angle="1." k="553.37584"/>\n <Angle class1="CT" class2="CT" class3="SH" angle="2." k="680.23472"/>\n <Angle class1="SH" class2="CT" class3="HC" angle="1." k="383.2544"/>\n <Angle class1="CT" class2="SH" class3="HS" angle="1." k="642.82976"/>\n <Angle class1="CT" class2="C" class3="O2" angle="2." k="454.8008"/>\n <Angle class1="O2" class2="C" class3="O2" angle="2." k="468.44064"/>\n <Angle class1="CT" class2="CT" class3="CX" angle="1." k="820.39872"/>\n <Angle class1="CX" class2="CT" class3="HC" angle="1." k="401.07824"/>\n <Angle class1="CT" class2="CX" class3="NA" angle="2." k="603.83488"/>\n <Angle class1="CT" class2="CX" class3="CX" angle="2." k="525.25936"/>\n <Angle class1="NA" class2="CX" class3="CX" angle="1." k="542.49744"/>\n <Angle class1="CX" class2="NA" class3="CR" angle="1." k="545.50992"/>\n <Angle class1="CX" class2="NA" class3="H" angle="2." k="274.55408"/>\n <Angle class1="CR" class2="NA" class3="H" angle="2." k="252.12784"/>\n <Angle class1="NA" class2="CR" class3="NA" angle="1." k="467.60384"/>\n <Angle class1="NA" class2="CR" class3="HA" angle="2." k="236.22864"/>\n <Angle class1="CX" class2="CX" class3="HA" angle="2." k="282.58736"/>\n <Angle class1="NA" class2="CX" class3="HA" angle="2." k="292.62896"/>\n <Angle class1="CT" class2="CT" class3="CV" angle="1." k="807.42832"/>\n <Angle class1="CV" class2="CT" class3="HC" angle="1." k="424.676"/>\n <Angle class1="CT" class2="CV" class3="NB" angle="2." k="507.1008"/>\n <Angle class1="CT" class2="CV" class3="CW" angle="2." k="469.69584"/>\n <Angle class1="NB" class2="CV" class3="CW" angle="1." k="492.70784"/>\n <Angle class1="CV" class2="NB" class3="CR" angle="1." k="1008.59504"/>\n <Angle class1="NB" class2="CR" class3="NA" angle="1." k="467.10176"/>\n <Angle class1="NB" class2="CR" class3="HA" angle="2." k="223.844"/>\n <Angle class1="CR" class2="NA" class3="CW" angle="1." k="529.6944"/>\n <Angle class1="CW" class2="NA" class3="H" angle="2." k="248.02752"/>\n <Angle class1="CV" class2="CW" class3="NA" angle="1." k="505.34352"/>\n <Angle class1="CV" class2="CW" class3="HA" angle="2." k="269.36592"/>\n <Angle class1="NA" class2="CW" class3="HA" angle="2." k="265.76768"/>\n <Angle class1="CT" class2="CT" class3="N3" angle="1." k="939.39168"/>\n <Angle class1="N3" class2="CT" class3="HC" angle="1." k="613.62544"/>\n <Angle class1="CT" class2="N3" class3="H3" angle="1." k="355.2216"/>\n <Angle class1="H3" class2="N3" class3="H3" angle="1." k="307.35664"/>\n <Angle class1="CT" class2="CT" class3="S" angle="2." k="672.53616"/>\n <Angle class1="S" class2="CT" class3="HC" angle="1." k="306.18512"/>\n <Angle class1="CT" class2="S" class3="CT" angle="1." k="1486.82624"/>\n <Angle class1="CT" class2="CT" class3="CA" angle="1." k="809.85504"/>\n <Angle class1="CA" class2="CT" class3="HC" angle="1." k="416.97744"/>\n <Angle class1="CT" class2="CA" class3="CA" angle="2." k="614.2112"/>\n <Angle class1="CA" class2="CA" class3="CA" angle="2." k="807.9304"/>\n <Angle class1="CA" class2="CA" class3="HA" angle="2." k="258.06912"/>\n <Angle class1="CT" class2="N" class3="CT" angle="1." k="557.47616"/>\n <Angle class1="CT" class2="CT" class3="OH" angle="1." k="955.70928"/>\n <Angle class1="OH" class2="CT" class3="HC" angle="1." k="409.11152"/>\n <Angle class1="CT" class2="OH" class3="HO" angle="1." k="545.92832"/>\n <Angle class1="CT" class2="CT" class3="CS" angle="1." k="701.82416"/>\n <Angle class1="CS" class2="CT" class3="HC" angle="1." k="355.97472"/>\n <Angle class1="CT" class2="CS" class3="CW" angle="2." k="489.44432"/>\n <Angle class1="CT" class2="CS" class3="CB" angle="2." k="509.44384"/>\n <Angle class1="CW" class2="CS" class3="CB" angle="1." k="545.34256"/>\n <Angle class1="CS" class2="CW" class3="NA" angle="1." k="480.65792"/>\n <Angle class1="CS" class2="CW" class3="HA" angle="2." k="265.76768"/>\n <Angle class1="CW" class2="NA" class3="CN" angle="1." k="555.38416"/>\n <Angle class1="CN" class2="NA" class3="H" angle="2." k="260.91424"/>\n <Angle class1="NA" class2="CN" class3="CA" angle="2." k="657.80848"/>\n <Angle class1="NA" class2="CN" class3="CB" angle="1." k="637.6416"/>\n <Angle class1="CA" class2="CN" class3="CB" angle="2." k="806.50784"/>\n <Angle class1="CN" class2="CA" class3="CA" angle="2." k="608.18624"/>\n <Angle class1="CN" class2="CA" class3="HA" angle="2." k="245.85184"/>\n <Angle class1="CA" class2="CA" class3="CB" angle="2." k="607.76784"/>\n <Angle class1="CB" class2="CA" class3="HA" angle="2." k="245.34976"/>\n <Angle class1="CS" class2="CB" class3="CN" angle="1." k="644.7544"/>\n <Angle class1="CS" class2="CB" class3="CA" angle="2." k="661.74144"/>\n <Angle class1="CN" class2="CB" class3="CA" angle="2." k="727.5976"/>\n <Angle class1="CA" class2="CA" class3="OH" angle="2." k="730.44272"/>\n <Angle class1="CA" class2="OH" class3="HO" angle="1." k="565.59312"/>\n <Angle class1="S" class2="S" class3="CT" angle="1." k="832.616"/>\n <Angle class1="HT" class2="OT" class3="HT" angle="1." k="460.24"/>\n <!-- THIS IS OPLS PARAMETER -->\n <Angle class1="CW" class2="CV" class3="HA" angle="2." k="292.88"/>\n <Angle class1="NB" class2="CV" class3="HA" angle="2." k="292.88"/>\n <Angle class1="CW" class2="CT" class3="CT" angle="1." k="527.184"/>\n <Angle class1="CT" class2="CW" class3="NA" angle="2." k="585.76"/>\n <Angle class1="CV" class2="CW" class3="CT" angle="2." k="585.76"/>\n <Angle class1="CW" class2="CT" class3="HC" angle="1." k="292.88"/>\n </HarmonicAngleForce>\n <PeriodicTorsionForce>\n <Proper type1="C157" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C136" type3="C137" type4="C135" k1="0.2092" k2="-0.29288" k3="0.27196" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C136" type3="C137" type4="C224I" k1="0.2092" k2="-0.29288" k3="0.27196" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C136" type3="C137" type4="C283" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C136" type3="C137" type4="C293" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C136" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C136" type4="C224" k1="-2.28028" k2="1.48532" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C136" type4="C283" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C136" type4="C293" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224I" type4="C235" k1="10.48092" k2="-0.39748" k3="2.07108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224" type4="C235" k1="-3.64008" k2="-0.23012" k3="0.06276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224I" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224" type4="N238" k1="7.97052" k2="-1.1506" k3="1.65268" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C224I" type4="N238" k1="15.71092" k2="-1.23428" k3="-0.43932" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C283" type4="C271" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C283" type4="N238" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C293" type4="C235" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C137" type3="C293" type4="N287" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C224S" type4="C235" k1="-8.09604" k2="6.52704" k3="-0.1046" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C224S" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C224S" type4="N238" k1="-6.98728" k2="2.46856" k3="-3.59824" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C283" type4="C271" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C283" type4="N238" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C293" type4="C235" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="C293" type4="N287" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C158" type3="O154" type4="H155" k1="0.43932" k2="-2.53132" k3="0.85772" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="C235" type4="N238" k1="-0.58576" k2="-0.71128" k3="-0.54392" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="C267" type4="O268" k1="2.092" k2="1.142232" k3="0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="C267" type4="O269" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="N238" type4="C235" k1="-0.79496" k2="-0.35564" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C224A" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C223" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C135" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C136" type4="C224K" k1="-5.23" k2="-1.00416" k3="0.79496" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C136" type4="C224" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C136" type4="C283" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C136" type4="C292" k1="-5.23" k2="-1.00416" k3="0.79496" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C136" type4="C293" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224" type4="C235" k1="-3.38904" k2="0.50208" k3="0.16736" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224K" type4="C235" k1="-4.184" k2="-0.4184" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224K" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224" type4="N238" k1="4.45596" k2="-0.77404" k3="3.30536" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C224K" type4="N238" k1="0.1046" k2="-0.27196" k3="1.82004" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C235" type4="N237" k1="5.949648" k2="-0.755212" k3="-0.6799" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C235" type4="O236" k1="0.849352" k2="2.727968" k3="0.290788" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C245" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C245" type4="N239" k1="1.76774" k2="-2.012504" k3="1.491596" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C246" type4="C235" k1="1.10876" k2="0.71128" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C246" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C246" type4="N239" k1="-4.35136" k2="-1.3598" k3="1.21336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C267" type4="O268" k1="2.092" k2="1.142232" k3="0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C267" type4="O269" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C283" type4="C271" k1="-4.932936" k2="1.905812" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C283" type4="N238" k1="1.849328" k2="1.876524" k3="1.84096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C285" type4="C271" k1="-3.663092" k2="3.359752" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C285" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C285" type4="N239" k1="3.288624" k2="0.332628" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C292" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C292" type4="N287" k1="5.715344" k2="-0.479068" k3="1.01462" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C293" type4="C235" k1="-4.932936" k2="1.905812" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C293" type4="N287" k1="1.849328" k2="1.876524" k3="1.84096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C295" type4="C235" k1="-3.663092" k2="3.359752" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C295" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C295" type4="N309" k1="5.715344" k2="-0.479068" k3="1.01462" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C296" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C136" type3="C296" type4="N309" k1="5.715344" k2="-0.479068" k3="1.01462" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C224I" type4="C235" k1="10.48092" k2="-0.39748" k3="2.07108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C224I" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C224I" type4="N238" k1="15.71092" k2="-1.23428" k3="-0.43932" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C283" type4="C271" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C283" type4="N238" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C293" type4="C235" k1="-2.974824" k2="2.234256" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C137" type3="C293" type4="N287" k1="6.263448" k2="0.527184" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C210" type3="S202" type4="C209" k1="1.9351" k2="-1.204992" k3="1.416284" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224K" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224K" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224K" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224K" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C224K" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C235" type3="N237" type4="H240" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C245" type3="N239" type4="C235" k1="-0.77404" k2="0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C245" type3="N239" type4="C246" k1="5.981028" k2="4.305336" k3="-23.568472" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C245" type3="N239" type4="C285" k1="5.981028" k2="4.305336" k3="-23.568472" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C246" type3="C235" type4="N238" k1="3.28444" k2="-2.28028" k3="2.76144" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C246" type3="C235" type4="N239" k1="3.28444" k2="-2.28028" k3="2.76144" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C246" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C246" type3="N239" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C246" type3="N239" type4="C245" k1="9.943276" k2="-1.535528" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C274" type3="C271" type4="O272" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C283K" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C283K" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C285" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C285" type3="N239" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C285" type3="N239" type4="C245" k1="9.943276" k2="-1.535528" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C292" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C295" type3="C235" type4="N238" k1="10.520668" k2="1.504148" k3="4.68608" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C295" type3="C235" type4="N239" k1="10.520668" k2="1.504148" k3="4.68608" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C295" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C295" type3="N309" type4="C296" k1="3.0080868" k2="-0.2589896" k3="0.5520788" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C295" type3="N309" type4="H310" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C296" type3="N309" type4="C295" k1="3.0080868" k2="-0.2589896" k3="0.5520788" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C296" type3="N309" type4="H310" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C308" type3="C307" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C136" type2="C308" type3="C307" type4="N303" k1="5.715344" k2="-0.479068" k3="1.01462" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C224" type4="C235" k1="1.10876" k2="0.71128" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C224" type4="N238" k1="-4.35136" k2="-1.3598" k3="1.21336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C283" type4="C271" k1="-3.663092" k2="3.359752" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C283" type4="N238" k1="3.288624" k2="0.332628" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C293" type4="C235" k1="-3.663092" k2="3.359752" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C136" type3="C293" type4="N287" k1="3.288624" k2="0.332628" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224I" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224I" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224I" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224I" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C224I" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C137" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C145" type3="C149" type4="C224" k1="-10.89932" k2="0.39748" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C145" type3="C149" type4="C224Y" k1="-9.2048" k2="0.39748" k3="1.23428" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C145" type3="C149" type4="C283" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C145" type3="C149" type4="C293" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C145" type3="C149" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224" type4="C235" k1="0.96232" k2="1.21336" k3="0.66944" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224Y" type4="C235" k1="-0.27196" k2="2.13384" k3="-0.02092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224Y" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224" type4="N238" k1="-1.96648" k2="1.58992" k3="1.90372" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C224Y" type4="N238" k1="-0.25104" k2="1.4644" k3="2.23844" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C283" type4="C271" k1="-2.941352" k2="3.717484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C283" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C283" type4="N238" k1="3.581504" k2="1.5167" k3="0.765672" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C293" type4="C235" k1="-2.941352" k2="3.717484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C293" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C149" type3="C293" type4="N287" k1="3.581504" k2="1.5167" k3="0.765672" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C166" type3="C145" type4="H146" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C166" type3="O167" type4="H168" k1="0" k2="3.518744" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C501" type3="C500" type4="C514" k1="0" k2="7.0082" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C145" type2="C502" type3="C501" type4="C500" k1="0" k2="12.552" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224Y" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224Y" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224Y" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224Y" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C224Y" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C149" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C224S" type3="C235" type4="N238" k1="0.35564" k2="0.25104" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C224S" type3="C235" type4="N239" k1="0.35564" k2="0.25104" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C224S" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C224S" type3="N238" type4="C235" k1="-0.04184" k2="0.39748" k3="-0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C224S" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C157" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C224S" type3="C235" type4="N238" k1="0.35564" k2="0.25104" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C224S" type3="C235" type4="N239" k1="0.35564" k2="0.25104" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C224S" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C224S" type3="N238" type4="C235" k1="-0.04184" k2="0.39748" k3="-0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C224S" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C158" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C224" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C206" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C209" type2="S202" type3="C210" type4="H140" k1="0" k2="0" k3="1.353524" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C224" type4="C235" k1="1.69452" k2="0.06276" k3="3.40996" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C224" type4="N238" k1="0.39748" k2="-1.73636" k3="-1.54808" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C283" type4="C271" k1="-1.905812" k2="1.462308" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C283" type4="N238" k1="0.447688" k2="1.131772" k3="0.820064" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C293" type4="C235" k1="-1.905812" k2="1.462308" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="C136" type3="C293" type4="N287" k1="0.447688" k2="1.131772" k3="0.820064" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C210" type2="S202" type3="C209" type4="H140" k1="0" k2="0" k3="1.353524" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C224" type3="N238" type4="C235" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C283" type3="N238" type4="C235" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C214" type2="S203" type3="S203" type4="C214" k1="0" k2="-15.510088" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C223" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C295" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C136" type4="C235" k1="-2.42672" k2="2.11292" k3="-0.12552" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C210" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C210" type4="S202" k1="-2.4058" k2="-0.9414" k3="-0.48116" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C235" type4="N237" k1="1.69452" k2="1.06692" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C235" type4="O236" k1="3.32628" k2="-0.2092" k3="-0.2092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C267" type4="O268" k1="2.092" k2="1.142232" k3="0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C267" type4="O269" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C274" type4="C271" k1="-18.43052" k2="-0.23012" k3="-1.6736" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C274" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C308" type4="C307" k1="-2.1966" k2="-0.523" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C308" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C500" type4="C501" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C136" type3="C500" type4="C514" k1="1.00416" k2="-1.21336" k3="-0.39748" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C137" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C157" type3="O154" type4="H155" k1="0.43932" k2="-2.53132" k3="0.85772" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C158" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C158" type3="O154" type4="H155" k1="0.43932" k2="-2.53132" k3="0.85772" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C206" type3="S200" type4="H204" k1="1.63176" k2="2.17568" k3="4.37228" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C214" type3="S203" type4="S203" k1="4.060572" k2="-1.748912" k3="1.95602" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224I" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224A" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224S" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224K" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C224Y" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C242" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N239" type4="C245" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C223" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="C267" type3="O268" type4="H270" k1="3.138" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C274" type3="C271" type4="O272" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C507" type4="C508" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C507" type4="N511" k1="-2.48948" k2="-1.046" k3="0.06276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C508" type4="C507" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C508" type4="N503" k1="6.08772" k2="-3.36812" k3="0.8368" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C510" type4="C510" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="C505" type3="C510" type4="N512" k1="-0.79496" k2="1.046" k3="0.39748" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="N238" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="N238" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224I" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224A" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224S" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224K" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C224Y" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C136" type4="C283" k1="-2.650564" k2="1.002068" k3="-1.016712" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C136" type4="C293" k1="-2.650564" k2="1.002068" k3="-1.016712" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="-0.2092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C224" type4="C235" k1="10.02068" k2="1.2552" k3="0.43932" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C224" type4="N238" k1="-15.71092" k2="1.10876" k3="-1.17152" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C283" type4="C271" k1="1.251016" k2="3.259336" k3="0.53346" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C283" type4="N238" k1="-11.508092" k2="3.194484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C293" type4="C235" k1="1.251016" k2="3.259336" k3="0.53346" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C136" type3="C293" type4="N287" k1="-11.508092" k2="3.194484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C223" type3="N238" type4="C235" k1="0.14644" k2="0.87864" k3="-0.77404" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C223" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224A" type3="C135" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C136" type4="C267" k1="1.251016" k2="3.259336" k3="0.53346" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C136" type4="C274" k1="-4.72792" k2="-3.91204" k3="2.17568" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C136" type4="C308" k1="-1.1506" k2="-0.3661" k3="0.46024" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C136" type4="C500" k1="-0.8368" k2="1.8828" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224K" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C137" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224I" type3="C137" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C149" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224Y" type3="C149" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="C157" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="C157" type4="O154" k1="-14.49756" k2="1.9874" k3="2.44764" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="C158" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="C158" type4="O154" k1="-3.36812" k2="4.45596" k3="-1.86188" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C206" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C206" type4="S200" k1="-5.87852" k2="-0.06276" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C214" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C214" type4="S203" k1="-6.951716" k2="1.106668" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C274" type4="C271" k1="7.48936" k2="1.52716" k3="-0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C274" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C505" type4="C507" k1="3.9748" k2="1.046" k3="0.2092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C505" type4="C508" k1="0.4184" k2="1.2552" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C505" type4="C510" k1="-0.58576" k2="-1.90372" k3="0.02092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="C505" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="N238" type4="C235" k1="0.04184" k2="0.85772" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224I" type3="N238" type4="C235" k1="0.04184" k2="0.85772" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224K" type3="N238" type4="C235" k1="0.04184" k2="0.85772" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224Y" type3="N238" type4="C235" k1="0.04184" k2="0.85772" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224A" type3="N238" type4="C235" k1="0.04184" k2="0.85772" k3="-0.14644" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="N238" type4="C235" k1="0.16736" k2="-0.33472" k3="-0.27196" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224I" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224A" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224S" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224K" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C224Y" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C223" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224I" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224A" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224S" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224K" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224Y" type4="C267" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C246" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C246" type3="N239" type4="C235" k1="0.04184" k2="0.85772" k3="-0.18828" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C246" type3="N239" type4="C245" k1="-3.633804" k2="2.617092" k3="-7.324092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C292" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C135" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C136" type4="C274" k1="-3.690288" k2="1.4644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C136" type4="C308" k1="-4.123332" k2="1.61084" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C136" type4="C500" k1="-1.058552" k2="2.0397" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C137" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C149" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C157" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C157" type4="O154" k1="-12.118956" k2="0.84726" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C158" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C158" type4="O154" k1="-12.118956" k2="0.84726" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C206" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C206" type4="S200" k1="-6.951716" k2="1.106668" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C214" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C214" type4="S203" k1="-6.951716" k2="1.106668" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C274" type4="C271" k1="3.227956" k2="1.456032" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C274" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C505" type4="C507" k1="-2.681944" k2="3.44134" k3="-0.035564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C505" type4="C508" k1="-2.681944" k2="3.44134" k3="-0.035564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C505" type4="C510" k1="-3.573136" k2="3.171472" k3="-1.050184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C505" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C295" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C295" type3="N309" type4="C296" k1="3.0080868" k2="-0.2589896" k3="0.5520788" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C295" type3="N309" type4="H310" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C223" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224" type4="C274" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224" type4="C505" k1="-0.77404" k2="-0.33472" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224I" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224A" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224S" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224K" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C224Y" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C242" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C283" type4="C271" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C283" type4="C274" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C283" type4="C505" k1="-1.426744" k2="0.27196" k3="0.707096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C283" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C284" type4="C271" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N238" type3="C284" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N239" type3="C245" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N239" type3="C246" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N239" type3="C285" type4="C271" k1="-5.253012" k2="0.43932" k3="-0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="N239" type3="C285" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C242" type2="N238" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C242" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="C136" type3="C136" type4="C246" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="C136" type3="C136" type4="C285" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C235" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C246" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C285" type4="C271" k1="-3.633804" k2="2.617092" k3="-7.324092" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C245" type2="N239" type3="C285" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C235" type3="N238" type4="C283" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C235" type3="N238" type4="C284" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C235" type3="N239" type4="C246" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="C235" type3="N239" type4="C285" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="N239" type3="C235" type4="C292" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="N239" type3="C235" type4="C293" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="N239" type3="C235" type4="C295" k1="4.8116" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="N239" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C246" type2="N239" type3="C245" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C224" type4="N238" k1="-11.508092" k2="3.194484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224A" type3="C135" type4="H140" k1="0" k2="0" k3="0.154808" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C223" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224I" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224A" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224S" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224K" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C224Y" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C136" type4="C283" k1="-1.85142" k2="2.1443" k3="-2.704956" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C136" type4="C293" k1="-1.85142" k2="2.1443" k3="-2.704956" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C136" type4="H140" k1="0" k2="0" k3="-0.4707" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C224" type4="N238" k1="-16.81968" k2="-1.19244" k3="1.52716" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C283" type4="C271" k1="3.227956" k2="1.456032" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C283" type4="N238" k1="-16.50588" k2="1.384904" k3="2.085724" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C274" type3="C293" type4="N287" k1="-16.50588" k2="1.384904" k3="2.085724" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C135" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C136" type4="C274" k1="-3.690288" k2="1.4644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C136" type4="C308" k1="-4.123332" k2="1.61084" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C136" type4="C500" k1="-1.058552" k2="2.0397" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C137" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C149" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C157" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C157" type4="O154" k1="-12.118956" k2="0.84726" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C158" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C158" type4="O154" k1="-12.118956" k2="0.84726" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C206" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C206" type4="S200" k1="-6.951716" k2="1.106668" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C214" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C214" type4="S203" k1="-6.951716" k2="1.106668" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C274" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C505" type4="C507" k1="-2.681944" k2="3.44134" k3="-0.035564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C505" type4="C508" k1="-2.681944" k2="3.44134" k3="-0.035564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C505" type4="C510" k1="-3.573136" k2="3.171472" k3="-1.050184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="C505" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C284" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C271" type2="C285" type3="C136" type4="H140" k1="0" k2="0" k3="-0.158992" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C224" type4="N238" k1="-1.19244" k2="-3.0334" k3="2.78236" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C283" type4="N238" k1="4.156804" k2="0.956044" k3="1.71544" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C136" type3="C293" type4="N287" k1="4.156804" k2="0.956044" k3="1.71544" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C293" type3="C235" type4="N239" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C274" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C210" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C210" type4="S202" k1="-3.27398" k2="-0.018828" k3="-0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C235" type4="N237" k1="3.125448" k2="-1.069012" k3="0.2615" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C235" type4="O236" k1="3.464352" k2="2.727968" k3="0.918388" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C267" type4="O268" k1="2.092" k2="1.142232" k3="0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C267" type4="O269" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C274" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C308" type4="C307" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C308" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C500" type4="C501" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C136" type3="C500" type4="C514" k1="-1.493688" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C137" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C157" type3="O154" type4="H155" k1="-0.744752" k2="-0.364008" k3="1.029264" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C158" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C158" type3="O154" type4="H155" k1="-0.744752" k2="-0.364008" k3="1.029264" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C206" type3="S200" type4="H204" k1="-1.587828" k2="-0.589944" k3="1.42256" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C214" type3="S203" type4="S203" k1="4.060572" k2="-1.748912" k3="1.95602" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C274" type3="C271" type4="O272" k1="5.23" k2="2.092" k3="2.8242" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C507" type4="C508" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C507" type4="N511" k1="-1.17152" k2="-1.54808" k3="0.730108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C508" type4="C507" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C508" type4="N503" k1="-1.17152" k2="-1.54808" k3="0.730108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C510" type4="C510" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="C505" type3="C510" type4="N512" k1="-8.34708" k2="3.51456" k3="0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C283" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C284" type2="N238" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C285" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C285" type2="N239" type3="C235" type4="O236" k1="0" k2="12.738188" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C285" type2="N239" type3="C245" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C292" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C292" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C210" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C210" type4="S202" k1="-3.27398" k2="-0.018828" k3="-0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C235" type4="N237" k1="3.125448" k2="-1.069012" k3="0.2615" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C235" type4="O236" k1="3.464352" k2="2.727968" k3="0.918388" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C267" type4="O268" k1="2.092" k2="1.142232" k3="0.9414" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C267" type4="O269" k1="0" k2="1.142232" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C274" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C308" type4="C307" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C308" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C500" type4="C501" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C136" type3="C500" type4="C514" k1="-1.493688" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C137" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C137" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C157" type3="O154" type4="H155" k1="-0.744752" k2="-0.364008" k3="1.029264" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C158" type3="C135" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C158" type3="O154" type4="H155" k1="-0.744752" k2="-0.364008" k3="1.029264" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C206" type3="S200" type4="H204" k1="-1.587828" k2="-0.589944" k3="1.42256" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C214" type3="S203" type4="S203" k1="4.060572" k2="-1.748912" k3="1.95602" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C274" type3="C271" type4="O272" k1="5.23" k2="2.092" k3="2.8242" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C507" type4="C508" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C507" type4="N511" k1="-1.17152" k2="-1.54808" k3="0.730108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C508" type4="C507" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C508" type4="N503" k1="-1.17152" k2="-1.54808" k3="0.730108" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C510" type4="C510" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C293" type2="C505" type3="C510" type4="N512" k1="-8.34708" k2="3.51456" k3="0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C295" type2="C136" type3="C136" type4="C296" k1="2.7196" k2="-0.4184" k3="0.4184" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C295" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C295" type2="C235" type3="N238" type4="H241" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C295" type2="N309" type3="C296" type4="H140" k1="0" k2="0" k3="0.6311564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C296" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C296" type2="N309" type3="C295" type4="H140" k1="0" k2="0" k3="0.6311564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C302" type2="N303" type3="C307" type4="C308" k1="3.826268" k2="0.508356" k3="-1.041816" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C302" type2="N303" type3="C307" type4="H140" k1="0" k2="0" k3="0.370284" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C307" type2="C308" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C307" type2="N303" type3="C302" type4="N300" k1="0" k2="16.602112" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C224" type4="N238" k1="1.99786" k2="-0.30334" k3="0.58576" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C283" type4="N238" k1="0.215476" k2="1.366076" k3="1.177796" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C136" type3="C293" type4="N287" k1="0.215476" k2="1.366076" k3="1.177796" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C308" type2="C307" type3="N303" type4="H304" k1="-0.39748" k2="-0.872364" k3="0.874456" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C224" type4="N238" k1="2.28028" k2="1.23428" k3="1.84096" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C283" type4="N238" k1="-1.230096" k2="2.13384" k3="1.39118" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C136" type3="C293" type4="N287" k1="-1.230096" k2="2.13384" k3="1.39118" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C500" type2="C501" type3="C145" type4="H146" k1="0" k2="14.644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C501" type2="C500" type3="C136" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C501" type2="C502" type3="C145" type4="H146" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C502" type2="C501" type3="C145" type4="H146" k1="0" k2="14.644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C502" type2="C501" type3="C500" type4="C514" k1="0" k2="7.0082" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C502" type2="N503" type3="C514" type4="H146" k1="0" k2="6.276" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C224" type3="C235" type4="N238" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C224" type3="C235" type4="N239" k1="-0.54392" k2="-0.66944" k3="-0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C293" type3="C235" type4="N238" k1="3.721668" k2="0.876548" k3="-0.23012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.725924" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C508" type3="C507" type4="H146" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C508" type3="C507" type4="N511" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C508" type3="N503" type4="C506" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C508" type3="N503" type4="H504" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C510" type3="N512" type4="C509" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C505" type2="C510" type3="N512" type4="H513" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C506" type2="N503" type3="C508" type4="C507" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C506" type2="N503" type3="C508" type4="H146" k1="0" k2="10.46" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C506" type2="N511" type3="C507" type4="C508" k1="0" k2="10.0416" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C506" type2="N511" type3="C507" type4="H146" k1="0" k2="10.0416" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C224" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C224" type4="N238" k1="-6.52704" k2="0.81588" k3="1.92464" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C283" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C283" type4="N238" k1="-1.133864" k2="0.91002" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C293" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C505" type3="C293" type4="N287" k1="-1.133864" k2="0.91002" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C508" type3="C505" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="C508" type3="N503" type4="H504" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="N511" type3="C506" type4="H146" k1="0" k2="20.92" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C507" type2="N511" type3="C506" type4="N503" k1="0" k2="20.92" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C224" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C224" type4="N238" k1="-1.4644" k2="0.39748" k3="1.046" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C283" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C283" type4="N238" k1="-1.133864" k2="0.91002" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C293" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C505" type3="C293" type4="N287" k1="-1.133864" k2="0.91002" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="C507" type3="C505" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="N503" type3="C506" type4="H146" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C508" type2="N503" type3="C506" type4="N511" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C509" type2="N512" type3="C510" type4="C510" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C509" type2="N512" type3="C510" type4="H146" k1="0" k2="10.46" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C224" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C224" type4="N238" k1="-2.74052" k2="-0.77404" k3="2.05016" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C283" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C283" type4="N238" k1="-6.355496" k2="0.876548" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C293" type4="H140" k1="0" k2="0" k3="0.966504" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C505" type3="C293" type4="N287" k1="-6.355496" k2="0.876548" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C510" type3="C505" type4="H140" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="C510" type3="N512" type4="H513" k1="0" k2="5.8576" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="N512" type3="C509" type4="H146" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C510" type2="N512" type3="C509" type4="N512" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C514" type2="C500" type3="C136" type4="H140" k1="0" k2="0" k3="-1.00416" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C158" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C158" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C224A" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C224A" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C135" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C136" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C137" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C210" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C210" type4="S202" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C224K" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C224K" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C235" type4="N237" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C245" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C245" type4="N239" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C246" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C246" type4="N239" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C274" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C285" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C285" type4="N239" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C292" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C292" type4="N287" k1="0" k2="0" k3="0.803328" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C295" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C295" type4="N309" k1="0" k2="0" k3="0.803328" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C296" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C296" type4="N309" k1="0" k2="0" k3="0.803328" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C136" type3="C308" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C224I" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C224I" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C137" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C224Y" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C224Y" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C149" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C224S" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C224S" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C157" type3="O154" type4="H155" k1="0" k2="0" k3="0.7372208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C224S" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C224S" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C158" type3="O154" type4="H155" k1="0" k2="0" k3="0.7372208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C206" type3="S200" type4="H204" k1="1.94556" k2="6.0668" k3="-0.66944" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C224" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C214" type3="S203" type4="S203" k1="0" k2="0" k3="1.167336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C157" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C158" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C206" type4="S200" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C214" type4="S203" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C223" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="C267" type4="O268" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C274" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="C505" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224I" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224A" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224S" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224K" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C224Y" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C242" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C246" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C246" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C246" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C271" type4="O272" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C283" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C293" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C274" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C157" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C158" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C206" type4="S200" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C214" type4="S203" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C271" type4="O272" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="C505" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C283" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C284" type3="C271" type4="O272" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C284" type3="N238" type4="H241" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C285" type3="C271" type4="O272" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C292" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C292" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C292" type3="N287" type4="H290" k1="0" k2="0" k3="0.546012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C157" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C158" type4="O154" k1="0" k2="0" k3="0.979056" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C206" type4="S200" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C214" type4="S203" k1="0" k2="0" k3="0.945584" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="C505" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C293" type3="N287" type4="H290" k1="0" k2="0" k3="0.546012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C295" type3="C235" type4="N238" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C295" type3="C235" type4="N239" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C295" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C295" type3="N309" type4="H310" k1="0" k2="0" k3="0.546012" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C296" type3="N309" type4="H310" k1="0" k2="0" k3="0.803328" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C307" type3="C308" type4="H140" k1="0" k2="0" k3="0.6276" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C307" type3="N303" type4="H304" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C308" type3="C307" type4="N303" k1="0" k2="0" k3="-1.217544" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C224" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C283" type4="N238" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C293" type4="N287" k1="0" k2="0" k3="0.970688" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C507" type4="N511" k1="0" k2="0" k3="0.876548" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C508" type4="N503" k1="0" k2="0" k3="0.876548" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H140" type2="C505" type3="C510" type4="N512" k1="0" k2="0" k3="0.876548" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H146" type2="C508" type3="C507" type4="N511" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H146" type2="C508" type3="N503" type4="H504" k1="0" k2="10.46" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H146" type2="C510" type3="N512" type4="H513" k1="0" k2="10.46" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H240" type2="N237" type3="C235" type4="O236" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H241" type2="N238" type3="C235" type4="O236" k1="0" k2="10.2508" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H270" type2="O268" type3="C267" type4="O269" k1="0" k2="11.506" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H301" type2="N300" type3="C302" type4="N300" k1="0" k2="8.1588" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H301" type2="N300" type3="C302" type4="N303" k1="0" k2="8.1588" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H304" type2="N303" type3="C302" type4="N300" k1="0" k2="8.1588" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H504" type2="N503" type3="C506" type4="N511" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="H513" type2="N512" type3="C509" type4="N512" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C223" type3="C235" type4="N238" k1="0.29288" k2="1.08784" k3="-0.69036" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C223" type3="C235" type4="N239" k1="0.29288" k2="1.08784" k3="-0.69036" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C223" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C157" type4="O154" k1="11.12944" k2="1.569" k3="0.48116" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C158" type4="O154" k1="7.61488" k2="5.94128" k3="8.17972" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C206" type4="S200" k1="6.92452" k2="0.60668" k3="3.59824" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C214" type4="S203" k1="4.29906" k2="1.106668" k3="1.138048" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C235" type4="N238" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224I" type3="C235" type4="N238" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224K" type3="C235" type4="N238" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C235" type4="N238" k1="-0.06276" k2="0" k3="0.25104" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224Y" type3="C235" type4="N238" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224A" type3="C235" type4="N238" k1="0.18828" k2="0.87864" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224A" type3="C235" type4="N239" k1="0.37656" k2="1.75728" k3="-1.21336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C235" type4="N239" k1="-0.12552" k2="0" k3="0.50208" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224K" type3="C235" type4="N239" k1="0.37656" k2="1.79912" k3="-1.21336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224Y" type3="C235" type4="N239" k1="0.37656" k2="1.79912" k3="-1.21336" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224I" type3="C235" type4="N239" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C235" type4="N239" k1="0.18828" k2="0.89956" k3="-0.60668" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224I" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224A" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224K" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224Y" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C223" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224I" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224A" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224K" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224Y" type3="C267" type4="O268" k1="11.00392" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C223" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224I" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224A" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224S" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224K" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C224Y" type3="C267" type4="O269" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C235" type3="C246" type4="N239" k1="4.41412" k2="1.9874" k3="-4.93712" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C235" type3="C292" type4="N287" k1="3.78652" k2="4.50826" k3="-0.98324" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C235" type3="C293" type4="N287" k1="3.78652" k2="4.50826" k3="-0.98324" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C235" type3="C295" type4="N309" k1="-1.96648" k2="5.76346" k3="-5.58564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C283" type3="C157" type4="O154" k1="13.091736" k2="-2.169404" k3="2.859764" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C283" type3="C158" type4="O154" k1="13.091736" k2="-2.169404" k3="2.859764" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C283" type3="C206" type4="S200" k1="4.29906" k2="1.106668" k3="1.138048" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C283" type3="C214" type4="S203" k1="4.29906" k2="1.106668" k3="1.138048" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C283" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N238" type2="C284" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N239" type2="C235" type3="C246" type4="N239" k1="4.41412" k2="1.9874" k3="-4.93712" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N239" type2="C235" type3="C293" type4="N287" k1="3.78652" k2="4.50826" k3="-0.98324" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N239" type2="C235" type3="C295" type4="N309" k1="-1.96648" k2="5.76346" k3="-5.58564" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N239" type2="C246" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N239" type2="C285" type3="C271" type4="O272" k1="0" k2="1.71544" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C292" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C293" type3="C157" type4="O154" k1="13.091736" k2="-2.169404" k3="2.859764" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C293" type3="C158" type4="O154" k1="13.091736" k2="-2.169404" k3="2.859764" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C293" type3="C206" type4="S200" k1="4.29906" k2="1.106668" k3="1.138048" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C293" type3="C214" type4="S203" k1="4.29906" k2="1.106668" k3="1.138048" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N287" type2="C293" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N309" type2="C295" type3="C235" type4="O236" k1="0" k2="0" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="N503" type2="C508" type3="C507" type4="N511" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C293" type4="N287" k1="-11.508092" k2="3.194484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C235" type2="C293" type3="C136" type4="C267" k1="1.251016" k2="3.259336" k3="0.53346" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C283" type4="N238" k1="-11.508092" k2="3.194484" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="C267" type2="C136" type3="C283" type4="C271" k1="1.251016" k2="3.259336" k3="0.53346" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C145" type3="C145" type4="" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C145" type3="C166" type4="" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C166" type3="C145" type4="" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C145" type3="C501" type4="" k1="0" k2="14.644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C501" type3="C145" type4="" k1="0" k2="14.644" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C145" type3="C502" type4="" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C502" type3="C145" type4="" k1="0" k2="15.167" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N300" type3="C302" type4="" k1="0" k2="8.1588" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C302" type3="N300" type4="" k1="0" k2="8.1588" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C500" type3="C501" type4="" k1="0" k2="7.0082" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C501" type3="C500" type4="" k1="0" k2="7.0082" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C500" type3="C514" type4="" k1="0" k2="27.3006" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C514" type3="C500" type4="" k1="0" k2="27.3006" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C501" type3="C502" type4="" k1="0" k2="12.552" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C502" type3="C501" type4="" k1="0" k2="12.552" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N503" type3="C502" type4="" k1="0" k2="6.3806" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C502" type3="N503" type4="" k1="0" k2="6.3806" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C506" type3="N503" type4="" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N503" type3="C506" type4="" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N511" type3="C506" type4="" k1="0" k2="20.92" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C506" type3="N511" type4="" k1="0" k2="20.92" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C507" type3="C508" type4="" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C508" type3="C507" type4="" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N511" type3="C507" type4="" k1="0" k2="10.0416" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C507" type3="N511" type4="" k1="0" k2="10.0416" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N512" type3="C509" type4="" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C509" type3="N512" type4="" k1="0" k2="9.7278" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C510" type3="C510" type4="" k1="0" k2="22.489" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="N503" type3="C514" type4="" k1="0" k2="6.276" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Proper type1="" type2="C514" type3="N503" type4="" k1="0" k2="6.276" k3="0" k4="0.0" periodicity1="1" periodicity2="2" periodicity3="3" periodicity4="4" phase1="0.00" phase2="3." phase3="0.00" phase4="3."/>\n <Improper type1="C500" type2="C136" type3="C501" type4="C514" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C500" type2="C136" type3="C514" type4="C501" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C502" type2="C145" type3="C501" type4="N503" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C502" type2="C145" type3="N503" type4="C501" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="C149" type3="C145" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="C245" type3="C235" type4="C285" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="C245" type3="C285" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N239" type2="C245" type3="C235" type4="C246" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N239" type2="C245" type3="C235" type4="C285" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N239" type2="C245" type3="C246" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N239" type2="C245" type3="C285" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="C501" type2="C502" type3="C145" type4="C500" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C501" type2="C502" type3="C500" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C507" type2="C505" type3="C508" type4="N511" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C507" type2="C505" type3="N511" type4="C508" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C508" type2="C505" type3="C507" type4="N503" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C508" type2="C505" type3="N503" type4="C507" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C510" type2="C505" type3="C510" type4="N512" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C510" type2="C505" type3="N512" type4="C510" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C145" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C166" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C145" type4="C166" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C145" type4="C501" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C501" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C145" type4="C502" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C145" type2="H146" type3="C502" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C506" type2="H146" type3="N503" type4="N511" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C506" type2="H146" type3="N511" type4="N503" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C507" type2="H146" type3="C508" type4="N511" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C507" type2="H146" type3="N511" type4="C508" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C508" type2="H146" type3="C507" type4="N503" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C508" type2="H146" type3="N503" type4="C507" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C509" type2="H146" type3="N512" type4="N512" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C510" type2="H146" type3="C510" type4="N512" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C510" type2="H146" type3="N512" type4="C510" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C514" type2="H146" type3="C500" type4="N503" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C514" type2="H146" type3="N503" type4="C500" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="N237" type2="H240" type3="C235" type4="H240" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N237" type2="H240" type3="H240" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C223" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224I" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224A" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224S" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224K" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C224Y" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C223" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224I" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224A" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224S" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224K" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C224Y" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C242" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C283" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C235" type4="C284" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C242" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C283" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N238" type2="H241" type3="C284" type4="C235" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N300" type2="H301" type3="C302" type4="H301" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N300" type2="H301" type3="H301" type4="C302" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N303" type2="H304" type3="C302" type4="C307" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N303" type2="H304" type3="C307" type4="C302" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N503" type2="H504" type3="C502" type4="C514" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N503" type2="H504" type3="C506" type4="C508" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N503" type2="H504" type3="C508" type4="C506" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N503" type2="H504" type3="C514" type4="C502" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N512" type2="H513" type3="C509" type4="C510" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="N512" type2="H513" type3="C510" type4="C509" k1="10.46" periodicity1="2" phase1="3." />\n <Improper type1="C302" type2="N300" type3="N300" type4="N303" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C302" type2="N300" type3="N303" type4="N300" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C166" type2="O167" type3="C145" type4="C145" k1="4.6024" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C135" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C135" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C136" type4="N237" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C223" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C223" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224I" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224A" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224S" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224K" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224Y" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224I" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224A" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224S" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224K" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C224Y" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C246" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C246" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C292" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C293" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C293" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C295" type4="N238" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="C295" type4="N239" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N237" type4="C136" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C135" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C223" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224I" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224A" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224S" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224K" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C224Y" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C246" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C292" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C293" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N238" type4="C295" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C135" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C223" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C224" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C224A" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C224S" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C224K" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C224Y" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C246" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C293" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C235" type2="O236" type3="N239" type4="C295" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C136" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C136" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224I" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224A" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224S" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224K" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="C224Y" type4="O268" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224I" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224A" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224S" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224K" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O269" type3="O268" type4="C224Y" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="C274" type4="O272" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="C283" type4="O272" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="C284" type4="O272" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="C285" type4="O272" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="O272" type4="C274" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="O272" type4="C283" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="O272" type4="C284" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C271" type2="O272" type3="O272" type4="C285" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C136" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C223" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224I" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224A" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224S" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224K" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n <Improper type1="C267" type2="O268" type3="C224Y" type4="O269" k1="43.932" periodicity1="2" phase1="3." />\n </PeriodicTorsionForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <UseAttributeFromResidue name="charge"/>\n <Atom epsilon="1" sigma="1" type="C235"/>\n <Atom epsilon="1" sigma="1" type="C267"/>\n <Atom epsilon="1" sigma="1" type="C271"/>\n <Atom epsilon="1" sigma="1" type="C145"/>\n <Atom epsilon="1" sigma="1" type="C166"/>\n <Atom epsilon="1" sigma="1" type="C302"/>\n <Atom epsilon="1" sigma="1" type="C501"/>\n <Atom epsilon="1" sigma="1" type="C502"/>\n <Atom epsilon="1" sigma="1" type="C506"/>\n <Atom epsilon="1" sigma="1" type="C509"/>\n <Atom epsilon="1" sigma="1" type="C500"/>\n <Atom epsilon="1" sigma="1" type="C135"/>\n <Atom epsilon="1" sigma="1" type="C136"/>\n <Atom epsilon="1" sigma="1" type="C137"/>\n <Atom epsilon="1" sigma="1" type="C149"/>\n <Atom epsilon="1" sigma="1" type="C157"/>\n <Atom epsilon="1" sigma="1" type="C158"/>\n <Atom epsilon="1" sigma="1" type="C206"/>\n <Atom epsilon="1" sigma="1" type="C209"/>\n <Atom epsilon="1" sigma="1" type="C210"/>\n <Atom epsilon="1" sigma="1" type="C214"/>\n <Atom epsilon="1" sigma="1" type="C223"/>\n <Atom epsilon="1" sigma="1" type="C224"/>\n <Atom epsilon="1" sigma="1" type="C224A"/>\n <Atom epsilon="1" sigma="1" type="C224I"/>\n <Atom epsilon="1" sigma="1" type="C224S"/>\n <Atom epsilon="1" sigma="1" type="C224Y"/>\n <Atom epsilon="1" sigma="1" type="C224K"/>\n <Atom epsilon="1" sigma="1" type="C242"/>\n <Atom epsilon="1" sigma="1" type="C245"/>\n <Atom epsilon="1" sigma="1" type="C246"/>\n <Atom epsilon="1" sigma="1" type="C274"/>\n <Atom epsilon="1" sigma="1" type="C283"/>\n <Atom epsilon="1" sigma="1" type="C284"/>\n <Atom epsilon="1" sigma="1" type="C285"/>\n <Atom epsilon="1" sigma="1" type="C292"/>\n <Atom epsilon="1" sigma="1" type="C293"/>\n <Atom epsilon="1" sigma="1" type="C295"/>\n <Atom epsilon="1" sigma="1" type="C296"/>\n <Atom epsilon="1" sigma="1" type="C307"/>\n <Atom epsilon="1" sigma="1" type="C308"/>\n <Atom epsilon="1" sigma="1" type="C505"/>\n <Atom epsilon="1" sigma="1" type="C507"/>\n <Atom epsilon="1" sigma="1" type="C508"/>\n <Atom epsilon="1" sigma="1" type="C514"/>\n <Atom epsilon="1" sigma="1" type="C510"/>\n <Atom epsilon="1" sigma="1" type="H240"/>\n <Atom epsilon="1" sigma="1" type="H241"/>\n <Atom epsilon="1" sigma="1" type="H504"/>\n <Atom epsilon="1" sigma="1" type="H513"/>\n <Atom epsilon="1" sigma="1" type="H290"/>\n <Atom epsilon="1" sigma="1" type="H301"/>\n <Atom epsilon="1" sigma="1" type="H304"/>\n <Atom epsilon="1" sigma="1" type="H310"/>\n <Atom epsilon="1" sigma="1" type="H146"/>\n <Atom epsilon="1" sigma="1" type="H140"/>\n <Atom epsilon="1" sigma="1" type="H155"/>\n <Atom epsilon="1" sigma="1" type="H168"/>\n <Atom epsilon="1" sigma="1" type="H270"/>\n <Atom epsilon="1" sigma="1" type="H204"/>\n <Atom epsilon="1" sigma="1" type="N237"/>\n <Atom epsilon="1" sigma="1" type="N238"/>\n <Atom epsilon="1" sigma="1" type="N239"/>\n <Atom epsilon="1" sigma="1" type="N300"/>\n <Atom epsilon="1" sigma="1" type="N303"/>\n <Atom epsilon="1" sigma="1" type="N287"/>\n <Atom epsilon="1" sigma="1" type="N309"/>\n <Atom epsilon="1" sigma="1" type="N503"/>\n <Atom epsilon="1" sigma="1" type="N512"/>\n <Atom epsilon="1" sigma="1" type="N511"/>\n <Atom epsilon="1" sigma="1" type="O236"/>\n <Atom epsilon="1" sigma="1" type="O269"/>\n <Atom epsilon="1" sigma="1" type="O272"/>\n <Atom epsilon="1" sigma="1" type="O154"/>\n <Atom epsilon="1" sigma="1" type="O167"/>\n <Atom epsilon="1" sigma="1" type="O268"/>\n <Atom epsilon="1" sigma="1" type="S202"/>\n <Atom epsilon="1" sigma="1" type="S203"/>\n <Atom epsilon="1" sigma="1" type="S200"/>\n <!--WATER -->\n <Atom epsilon="0.635968" sigma="0." type="tip3p-O"/>\n <Atom epsilon="0" sigma="1" type="tip3p-H"/>\n <!--DATA FOR IONS -->\n <Atom epsilon="0" sigma="1" type="SOD"/>\n <Atom epsilon="0" sigma="1" type="CLA"/>\n </NonbondedForce>\n</ForceField>')
class KS_With_Include_TestCase(TestCase): def setUp(self): super(KS_With_Include_TestCase, self).setUp() self._include_path = mktempfile('unknown_command --foo=bar', prefix='ks-include') ks_content = ('autopart --type=lvm\n%%include %s' % self._include_path) self._ks_path = mktempfile(ks_content) .object(parser, 'print', create=True) def runTest(self, _print): (retval, out) = ksvalidator.main([self._ks_path]) self.assertEqual(len(out), 0) self.assertEqual(retval, 0) (retval, _out) = ksvalidator.main(['-i', self._ks_path]) self.assertEqual(_print.call_count, 1) self.assertNotEqual(retval, 0) def tearDown(self): super(KS_With_Include_TestCase, self).tearDown() os.unlink(self._ks_path) os.unlink(self._include_path)
class SyncApis(Generic[ClientT]): def __init__(self, host: str=None, **kwargs: Any): self.client = ApiClient(host, **kwargs) self.cluster_api = SyncClusterApi(self.client) self.collections_api = SyncCollectionsApi(self.client) self.points_api = SyncPointsApi(self.client) self.service_api = SyncServiceApi(self.client) self.snapshots_api = SyncSnapshotsApi(self.client) def close(self) -> None: self.client.close()
class Shader(): VERSION = '1.10' def __init__(self, vertex, frag, name): self.vertex = vertex self.frag = frag self.compiled = False self.name = name self.uniforms = {} shaders[name] = self def __deepcopy__(self, memo=None): memo[id(self)] = self return self def loadCache(self, file): file = Path(file) if (not file.is_file()): return formats = gl.glGetIntegerv(gl.GL_PROGRAM_BINARY_FORMATS) if (not isinstance(formats, collections.abc.Sequence)): formats = [formats] with open(file, 'rb') as f: binary = f.read() ver = binary[:4].decode() binary = binary[4:] if (ver != Shader.VERSION): Logger.LogLine(Logger.WARN, 'Shader', repr(self.name), 'is not up-to-date') Logger.LogLine(Logger.WARN, 'Recompiling shader', repr(self.name)) return formatLength = int(binary[0]) hexstr = binary[1:(formatLength + 1)] binary = binary[(formatLength + 1):] binaryFormat = int(hexstr.decode(), base=16) self.program = gl.glCreateProgram() if (binaryFormat not in formats): Logger.LogLine(Logger.WARN, 'Shader binaryFormat not supported') Logger.LogLine(Logger.WARN, 'Recompiling shader', repr(self.name)) return try: gl.glProgramBinary(self.program, binaryFormat, binary, len(binary)) except gl.GLError as e: Logger.LogLine(Logger.WARN, 'glProgramBinary failed') Logger.LogLine(Logger.ERROR, f'ERROR: {e!r}', silent=True) Logger.LogLine(Logger.WARN, 'Recompiling shader', repr(self.name)) return success = gl.glGetProgramiv(self.program, gl.GL_LINK_STATUS) if (not success): log = gl.glGetProgramInfoLog(self.program) Logger.LogLine(Logger.WARN, 'GL_LINK_STATUS unsuccessful') Logger.LogLine(Logger.ERROR, 'ERROR:', log.decode(), silent=True) Logger.LogLine(Logger.WARN, 'Recompiling shader', repr(self.name)) return self.compiled = True Logger.LogLine(Logger.INFO, 'Loaded shader', repr(self.name), 'hash', file.name.rsplit('.', 1)[0]) def compile(self): formats = gl.glGetIntegerv(gl.GL_PROGRAM_BINARY_FORMATS) if (not isinstance(formats, collections.abc.Sequence)): formats = [formats] folder = (Logger.getDataFolder() / 'ShaderCache') sha256 = hashlib.sha256(self.vertex.encode('utf-8')) sha256.update(self.frag.encode('utf-8')) sha256.update(hex(formats[0])[2:].encode()) digest = sha256.hexdigest() file = (folder / (digest + '.bin')) self.loadCache(file) if self.compiled: return vertexShader = gl.glCreateShader(gl.GL_VERTEX_SHADER) gl.glShaderSource(vertexShader, self.vertex, 1, None) gl.glCompileShader(vertexShader) success = gl.glGetShaderiv(vertexShader, gl.GL_COMPILE_STATUS) if (not success): log = gl.glGetShaderInfoLog(vertexShader) raise PyUnityException(log.decode()) fragShader = gl.glCreateShader(gl.GL_FRAGMENT_SHADER) gl.glShaderSource(fragShader, self.frag, 1, None) gl.glCompileShader(fragShader) success = gl.glGetShaderiv(fragShader, gl.GL_COMPILE_STATUS) if (not success): log = gl.glGetShaderInfoLog(fragShader) raise PyUnityException(log.decode()) self.program = gl.glCreateProgram() gl.glAttachShader(self.program, vertexShader) gl.glAttachShader(self.program, fragShader) gl.glLinkProgram(self.program) success = gl.glGetProgramiv(self.program, gl.GL_LINK_STATUS) if (not success): log = gl.glGetProgramInfoLog(self.program) raise PyUnityException(log) gl.glDeleteShader(vertexShader) gl.glDeleteShader(fragShader) self.compiled = True Logger.LogLine(Logger.INFO, 'Compiled shader', repr(self.name)) length = gl.glGetProgramiv(self.program, gl.GL_PROGRAM_BINARY_LENGTH) if (length == 0): return out = gl.glGetProgramBinary(self.program, length) folder.mkdir(parents=True, exist_ok=True) with open(file, 'wb+') as f: f.write(Shader.VERSION.encode()) hexstr = hex(out[1])[2:] f.write(bytes([len(hexstr)])) f.write(hexstr.encode()) f.write(bytes(out[0])) Logger.LogLine(Logger.INFO, 'Saved shader', repr(self.name), 'hash', digest) def fromFolder(path, name): p = Path(path) if (not p.is_dir()): raise PyUnityException(f'Folder does not exist: {path!r}') with open((p / 'vertex.glsl')) as f: vertex = f.read() with open((p / 'fragment.glsl')) as f: fragment = f.read() return Shader(vertex, fragment, name) def setVec3(self, var, val): self.uniforms[var.decode()] = val location = gl.glGetUniformLocation(self.program, var) gl.glUniform3f(location, *val) def setMat3(self, var, val): self.uniforms[var.decode()] = val location = gl.glGetUniformLocation(self.program, var) gl.glUniformMatrix3fv(location, 1, gl.GL_FALSE, glm.value_ptr(val)) def setMat4(self, var, val): self.uniforms[var.decode()] = val location = gl.glGetUniformLocation(self.program, var) gl.glUniformMatrix4fv(location, 1, gl.GL_FALSE, glm.value_ptr(val)) def setInt(self, var, val): self.uniforms[var.decode()] = val location = gl.glGetUniformLocation(self.program, var) gl.glUniform1i(location, val) def setFloat(self, var, val): self.uniforms[var.decode()] = val location = gl.glGetUniformLocation(self.program, var) gl.glUniform1f(location, val) def use(self): if (os.environ['PYUNITY_INTERACTIVE'] == '1'): if (not self.compiled): self.compile() gl.glUseProgram(self.program)
def build_type_map(mapper: Mapper, modules: list[MypyFile], graph: Graph, types: dict[(Expression, Type)], options: CompilerOptions, errors: Errors) -> None: classes = [] for module in modules: module_classes = [node for node in module.defs if isinstance(node, ClassDef)] classes.extend([(module, cdef) for cdef in module_classes]) for (module, cdef) in classes: class_ir = ClassIR(cdef.name, module.fullname, is_trait(cdef), is_abstract=cdef.info.is_abstract) class_ir.is_ext_class = is_extension_class(cdef) if class_ir.is_ext_class: class_ir.deletable = cdef.info.deletable_attributes.copy() if (not options.global_opts): class_ir.children = None mapper.type_to_ir[cdef.info] = class_ir for (module, cdef) in classes: with catch_errors(module.path, cdef.line): if mapper.type_to_ir[cdef.info].is_ext_class: prepare_class_def(module.path, module.fullname, cdef, errors, mapper) else: prepare_non_ext_class_def(module.path, module.fullname, cdef, errors, mapper) for (module, cdef) in classes: class_ir = mapper.type_to_ir[cdef.info] if class_ir.is_ext_class: prepare_implicit_property_accessors(cdef.info, class_ir, module.fullname, mapper) for module in modules: for func in get_module_func_defs(module): prepare_func_def(module.fullname, None, func, mapper) for (module, cdef) in classes: class_ir = mapper.type_to_ir[cdef.info] for attr in class_ir.attributes: for base_ir in class_ir.mro[1:]: if (attr in base_ir.attributes): if (not is_same_type(class_ir.attributes[attr], base_ir.attributes[attr])): node = cdef.info.names[attr].node assert (node is not None) kind = ('trait' if base_ir.is_trait else 'class') errors.error(f'Type of "{attr}" is incompatible with definition in {kind} "{base_ir.name}"', module.path, node.line)
class Wavelet_LSTM(nn.Module): def __init__(self, seq_len, hidden_size, output_size): super(Wavelet_LSTM, self).__init__() self.seq_len = seq_len self.hidden_size = hidden_size self.output_size = output_size self.mWDN1_H = nn.Linear(seq_len, seq_len) self.mWDN1_L = nn.Linear(seq_len, seq_len) self.mWDN2_H = nn.Linear(int((seq_len / 2)), int((seq_len / 2))) self.mWDN2_L = nn.Linear(int((seq_len / 2)), int((seq_len / 2))) self.a_to_x = nn.AvgPool1d(2) self.sigmoid = nn.Sigmoid() self.lstm_xh1 = nn.LSTM(1, hidden_size, batch_first=True) self.lstm_xh2 = nn.LSTM(1, hidden_size, batch_first=True) self.lstm_xl2 = nn.LSTM(1, hidden_size, batch_first=True) self.output = nn.Linear(hidden_size, output_size) self.l_filter = [(- 0.0106), 0.0329, 0.0308, (- 0.187), (- 0.028), 0.6309, 0.7148, 0.2304] self.h_filter = [(- 0.2304), 0.7148, (- 0.6309), (- 0.028), 0.187, 0.0308, (- 0.0329), (- 0.0106)] self.cmp_mWDN1_H = ToVariable(self.create_W(seq_len, False, is_comp=True)) self.cmp_mWDN1_L = ToVariable(self.create_W(seq_len, True, is_comp=True)) self.cmp_mWDN2_H = ToVariable(self.create_W(int((seq_len / 2)), False, is_comp=True)) self.cmp_mWDN2_L = ToVariable(self.create_W(int((seq_len / 2)), True, is_comp=True)) self.mWDN1_H.weight = torch.nn.Parameter(ToVariable(self.create_W(seq_len, False))) self.mWDN1_L.weight = torch.nn.Parameter(ToVariable(self.create_W(seq_len, True))) self.mWDN2_H.weight = torch.nn.Parameter(ToVariable(self.create_W(int((seq_len / 2)), False))) self.mWDN2_L.weight = torch.nn.Parameter(ToVariable(self.create_W(int((seq_len / 2)), True))) def forward(self, input, h1, c1, h2, c2, h3, c3): input = input.view(input.shape[0], input.shape[1]) ah_1 = self.sigmoid(self.mWDN1_H(input)) al_1 = self.sigmoid(self.mWDN1_L(input)) xh_1 = self.a_to_x(ah_1.view(ah_1.shape[0], 1, (- 1))) xl_1 = self.a_to_x(al_1.view(al_1.shape[0], 1, (- 1))) ah_2 = self.sigmoid(self.mWDN2_H(xl_1)) al_2 = self.sigmoid(self.mWDN2_L(xl_1)) xh_2 = self.a_to_x(ah_2) xl_2 = self.a_to_x(al_2) xh_1 = xh_1.transpose(1, 2) xh_2 = xh_2.transpose(1, 2) xl_2 = xl_2.transpose(1, 2) (level1_lstm, (h1, c1)) = self.lstm_xh1(xh_1, (h1, c1)) (level2_lstm_h, (h2, c2)) = self.lstm_xh2(xh_2, (h2, c2)) (level2_lstm_l, (h3, c3)) = self.lstm_xl2(xl_2, (h3, c3)) output = self.output(torch.cat((level1_lstm, level2_lstm_h, level2_lstm_l), 1)) return (output, h1, c1, h2, c2, h3, c3) def init_state(self, batch_size): h1 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() c1 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() h2 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() c2 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() h3 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() c3 = Variable(torch.zeros(1, batch_size, self.hidden_size)).double() return (h1, c1, h2, c2, h3, c3) def create_W(self, P, is_l, is_comp=False): if is_l: filter_list = self.l_filter else: filter_list = self.h_filter list_len = len(filter_list) max_epsilon = np.min(np.abs(filter_list)) if is_comp: weight_np = np.zeros((P, P)) else: weight_np = ((np.random.randn(P, P) * 0.1) * max_epsilon) for i in range(0, P): filter_index = 0 for j in range(i, P): if (filter_index < len(filter_list)): weight_np[i][j] = filter_list[filter_index] filter_index += 1 return weight_np
class Director5x5(nn.Module): def __init__(self, channel, groups, outChannels=None): super().__init__() if (outChannels is None): outChannels = channel self._net = nn.Sequential(conv5x5(channel, channel, 1, groups=groups)) def forward(self, x: torch.Tensor): return self._net(x)
class GetChatJoinRequests(): async def get_chat_join_requests(self: 'pyrogram.Client', chat_id: Union[(int, str)], limit: int=0, query: str='') -> Optional[AsyncGenerator[('types.ChatJoiner', None)]]: current = 0 total = (abs(limit) or ((1 << 31) - 1)) limit = min(100, total) offset_date = 0 offset_user = raw.types.InputUserEmpty() while True: r = (await self.invoke(raw.functions.messages.GetChatInviteImporters(peer=(await self.resolve_peer(chat_id)), limit=limit, offset_date=offset_date, offset_user=offset_user, requested=True, q=query))) if (not r.importers): break users = {i.id: i for i in r.users} offset_date = r.importers[(- 1)].date offset_user = (await self.resolve_peer(r.importers[(- 1)].user_id)) for i in r.importers: (yield types.ChatJoiner._parse(self, i, users)) current += 1 if (current >= total): return
_fixtures(DependencyScenarios) def test_dependency_types_detected(dependency_scenarios): main_egg = ReahlEggStub('main_egg', {'1.0': []}) dependency_egg = ReahlEggStub('dependency_egg', {'5.0': []}) [mv1] = main_egg.get_versions() [dv1] = dependency_egg.get_versions() main_egg.dependencies = {str(mv1.version_number): [StubDependency(dv1, egg_type=dependency_scenarios.egg_type, is_component=dependency_scenarios.is_component)]} plan = MigrationPlan(main_egg, dependency_scenarios.orm_control) plan.do_planning() if dependency_scenarios.is_component: assert (dv1 in plan.version_graph.graph) else: assert (dv1 not in plan.version_graph.graph)
def test_render_very_verbose_better_error_message() -> None: io = BufferedIO() io.set_verbosity(Verbosity.VERY_VERBOSE) try: simple.simple_exception() except Exception as e: trace = ExceptionTrace(e) trace.render(io) expected = f''' Stack trace: 1 {trace._get_relative_file_path(__file__)}:125 in test_render_very_verbose_better_error_message simple.simple_exception() Exception Failed at {trace._get_relative_file_path(simple.__file__)}:2 in simple_exception 1 def simple_exception() -> None: 2 raise Exception("Failed") 3 ''' assert (expected == io.fetch_output())
def load_config(filename): cp = ConfigParser() cp.add_section('irc') cp.set('irc', 'port', '6667') cp.set('irc', 'nick', 'twitterbot') cp.set('irc', 'prefixes', 'cats') cp.add_section('twitter') cp.set('twitter', 'oauth_token_file', OAUTH_FILE) cp.read((filename,)) (cp.get('twitter', 'oauth_token_file'),) cp.get('irc', 'server') cp.getint('irc', 'port') cp.get('irc', 'nick') cp.get('irc', 'channel') return cp
def iterate_testfiles(skip_encrypted=True): encrypted = (TestFiles.encrypted,) for attr_name in dir(TestFiles): if attr_name.startswith('_'): continue member = getattr(TestFiles, attr_name) if (skip_encrypted and (member in encrypted)): continue (yield member)
class DimmerLightOnCommand(Command): light: Light prevLevel: int = 0 def __init__(self, light: Light): self.light = light def execute(self) -> None: self.prevLevel = self.light.getLevel() self.light.dim(75) def undo(self) -> None: self.light.dim(self.prevLevel)
class SqueezeExciteCl(nn.Module): def __init__(self, channels, rd_ratio=(1.0 / 16), rd_channels=None, rd_divisor=8, bias=True, act_layer=nn.ReLU, gate_layer='sigmoid'): super().__init__() if (not rd_channels): rd_channels = make_divisible((channels * rd_ratio), rd_divisor, round_limit=0.0) self.fc1 = nn.Linear(channels, rd_channels, bias=bias) self.act = create_act_layer(act_layer, inplace=True) self.fc2 = nn.Linear(rd_channels, channels, bias=bias) self.gate = create_act_layer(gate_layer) def forward(self, x): x_se = x.mean((1, 2), keepdims=True) x_se = self.fc1(x_se) x_se = self.act(x_se) x_se = self.fc2(x_se) return (x * self.gate(x_se))
class Runtime(threading.Thread): SHUTDOWN_TRIGGER = 'RUNTIME SHUTDOWN TRIGGERED' def __init__(self, expert_backends: Dict[(str, ExpertBackend)], prefetch_batches=64, sender_threads: int=1, device: torch.device=None, stats_report_interval: Optional[int]=None): super().__init__() self.expert_backends = expert_backends self.pools = tuple(chain(*(expert.get_pools() for expert in expert_backends.values()))) (self.device, self.prefetch_batches, self.sender_threads) = (device, prefetch_batches, sender_threads) (self.shutdown_recv, self.shutdown_send) = mp.Pipe(duplex=False) self.shutdown_trigger = mp.Event() self.ready = mp.Event() self.stats_report_interval = stats_report_interval if (self.stats_report_interval is not None): self.stats_reporter = StatsReporter(self.stats_report_interval) def run(self): for pool in self.pools: if (not pool.is_alive()): pool.start() with mp.pool.ThreadPool(self.sender_threads) as output_sender_pool: try: self.ready.set() if (self.stats_report_interval is not None): self.stats_reporter.start() logger.info('Started') for (pool, batch_index, batch) in BackgroundGenerator(self.iterate_minibatches_from_pools(), self.prefetch_batches): logger.debug(f'Processing batch {batch_index} from pool {pool.name}') start = time() outputs = pool.process_func(*batch) batch_processing_time = (time() - start) batch_size = outputs[0].size(0) logger.debug(f'Pool {pool.name}: batch {batch_index} processed, size {batch_size}') if (self.stats_report_interval is not None): self.stats_reporter.report_stats(pool.name, batch_size, batch_processing_time) output_sender_pool.apply_async(pool.send_outputs_from_runtime, args=[batch_index, outputs]) finally: if (not self.shutdown_trigger.is_set()): self.shutdown() def shutdown(self): logger.info('Shutting down') self.ready.clear() if (self.stats_report_interval is not None): self.stats_reporter.stop.set() self.stats_reporter.join() logger.debug('Terminating pools') for pool in self.pools: if pool.is_alive(): pool.terminate() pool.join() logger.debug('Pools terminated') self.shutdown_send.send(self.SHUTDOWN_TRIGGER) self.shutdown_trigger.set() def iterate_minibatches_from_pools(self, timeout=None): with DefaultSelector() as selector: for pool in self.pools: selector.register(pool.batch_receiver, EVENT_READ, pool) selector.register(self.shutdown_recv, EVENT_READ, self.SHUTDOWN_TRIGGER) while True: logger.debug('Waiting for inputs from task pools') ready_fds = selector.select() ready_objects = {key.data for (key, events) in ready_fds} if (self.SHUTDOWN_TRIGGER in ready_objects): break logger.debug('Choosing the pool with highest priority') pool = max(ready_objects, key=(lambda pool: pool.priority)) logger.debug(f'Loading batch from {pool.name}') (batch_index, batch_tensors) = pool.load_batch_to_runtime(timeout, self.device) logger.debug(f'Loaded batch from {pool.name}') (yield (pool, batch_index, batch_tensors))
class ProgressBar(object): def __init__(self, widgets=['progress'], maxval=1, *args, **kwargs): self._widgets = widgets self._maxval = maxval self._val = 0 self._time = time.time() def label(self): for widget in self._widgets: if isinstance(widget, str): return widget def start(self): logger.info(('%s...' % self.label())) return self def update(self, val): self._val = val t = time.time() if ((t - self._time) > 5.0): logger.info(('%s: %i/%i %3.0f%%' % (self.label(), self._val, self._maxval, ((100.0 * float(self._val)) / float(self._maxval))))) self._time = t def finish(self): logger.info(('%s: done.' % self.label()))
class Effect11696(BaseEffect): type = 'passive' def handler(fit, src, context, projectionRange, **kwargs): fit.modules.filteredItemBoost((lambda mod: mod.item.requiresSkill('Capital Hybrid Turret')), 'trackingSpeed', src.getModifiedItemAttr('shipBonusDreadnoughtC1'), skill='Caldari Dreadnought', **kwargs)
class Variable(QuadraticProgramElement): Type = VarType def __init__(self, quadratic_program: Any, name: str, lowerbound: Union[(float, int)]=0, upperbound: Union[(float, int)]=INFINITY, vartype: VarType=VarType.CONTINUOUS) -> None: if (lowerbound > upperbound): raise QiskitOptimizationError('Lowerbound is greater than upperbound!') super().__init__(quadratic_program) self._name = name self._lowerbound = lowerbound self._upperbound = upperbound self._vartype = vartype def name(self) -> str: return self._name def lowerbound(self) -> Union[(float, int)]: return self._lowerbound def lowerbound(self, lowerbound: Union[(float, int)]) -> None: if (lowerbound > self.upperbound): raise QiskitOptimizationError('Lowerbound is greater than upperbound!') self._lowerbound = lowerbound def upperbound(self) -> Union[(float, int)]: return self._upperbound def upperbound(self, upperbound: Union[(float, int)]) -> None: if (self.lowerbound > upperbound): raise QiskitOptimizationError('Lowerbound is greater than upperbound!') self._upperbound = upperbound def vartype(self) -> VarType: return self._vartype def vartype(self, vartype: VarType) -> None: self._vartype = vartype def as_tuple(self) -> Tuple[(str, Union[(float, int)], Union[(float, int)], VarType)]: return (self.name, self.lowerbound, self.upperbound, self.vartype) def __repr__(self): return f'<{self.__class__.__name__}: {str(self)}>' def __str__(self): if (self._vartype == VarType.BINARY): return f'{self.name} ({self._vartype.name.lower()})' lowerbound = ('' if (self._lowerbound == (- INFINITY)) else f'{self._lowerbound} <= ') upperbound = ('' if (self._upperbound == INFINITY) else f' <= {self._upperbound}') return f'{lowerbound}{self.name}{upperbound} ({self._vartype.name.lower()})'
class CallExpr(Expression): __slots__ = ('callee', 'args', 'arg_kinds', 'arg_names', 'analyzed') __match_args__ = ('callee', 'args', 'arg_kinds', 'arg_names') def __init__(self, callee: Expression, args: list[Expression], arg_kinds: list[ArgKind], arg_names: list[(str | None)], analyzed: (Expression | None)=None) -> None: super().__init__() if (not arg_names): arg_names = ([None] * len(args)) self.callee = callee self.args = args self.arg_kinds = arg_kinds self.arg_names: list[(str | None)] = arg_names self.analyzed = analyzed def accept(self, visitor: ExpressionVisitor[T]) -> T: return visitor.visit_call_expr(self)
def load_json_logs(json_logs): log_dicts = [{} for _ in json_logs] for (json_log, log_dict) in zip(json_logs, log_dicts): with open(json_log, 'r') as log_file: for line in log_file: log = json.loads(line.strip()) if ('epoch' not in log): continue epoch = log.pop('epoch') if (epoch not in log_dict): log_dict[epoch] = defaultdict(list) for (k, v) in log.items(): log_dict[epoch][k].append(v) return log_dicts
class LogItemBundle(Event): def from_dict(self): super().from_dict() self.character = objects.Character(self._data.get('character', {})) self.parent_item = objects.Item(self._data.get('parentItem', {})) self.child_item = objects.Item(self._data.get('childItem', {}))
class Visualization(): def __init__(self, eigenstates): pass def plot_eigenstate(self): pass def slider_plot(self): pass def animate_eigenstates(self): pass def superpositions(self, states: Union[(int, List[int], Dict[(int, complex)])], **kw): pass
def is_an_upcast(type1, type2): category = {'bool': (0, 0), 'uint8': (1, 1), 'uint16': (1, 2), 'uint32': (1, 3), 'uint64': (1, 4), 'int8': (2, 1), 'int16': (2, 2), 'int32': (2, 3), 'int64': (2, 4), 'float16': (3, 1.5), 'float32': (3, 2.5), 'float64': (3, 3.5), 'complex64': (4, 3), 'complex128': (4, 4)} cat1 = category[type1] cat2 = category[type2] if ((cat2[0] >= cat1[0]) and (cat2[1] > cat1[1])): return True else: return False
class MarkConfig(): def __init__(self, keyword, run_by_default, addoption=True, option=None, help=None, condition_for_skip=None, reason=None): self.addoption = addoption if (option is None): option = f"--{('skip' if run_by_default else 'run')}-{keyword.replace('_', '-')}" self.option = option if (help is None): help = f"{('Skip' if run_by_default else 'Run')} tests decorated with {keyword}." self.help = help if (condition_for_skip is None): def condition_for_skip(config, item): has_keyword = (keyword in item.keywords) if run_by_default: return (has_keyword and config.getoption(option)) else: return (has_keyword and (not config.getoption(option))) self.condition_for_skip = condition_for_skip if (reason is None): reason = f"Test is {keyword} and {option} was {('' if run_by_default else 'not ')}given." self.marker = pytest.mark.skip(reason=reason)
def check_cert(host, cert): try: b = pem.dePem(cert, 'CERTIFICATE') x = x509.X509(b) except: traceback.print_exc(file=sys.stdout) return try: x.check_date() expired = False except: expired = True m = ('host: %s\n' % host) m += ('has_expired: %s\n' % expired) util.print_msg(m)
def test_animal_zebra_dataset(): dataset = 'AnimalZebraDataset' dataset_class = DATASETS.get(dataset) dataset_info = Config.fromfile('configs/_base_/datasets/zebra.py').dataset_info channel_cfg = dict(num_output_channels=9, dataset_joints=9, dataset_channel=[[0, 1, 2, 3, 4, 5, 6, 7, 8]], inference_channel=[0, 1, 2, 3, 4, 5, 6, 7, 8]) data_cfg = dict(image_size=[160, 160], heatmap_size=[40, 40], num_output_channels=channel_cfg['num_output_channels'], num_joints=channel_cfg['dataset_joints'], dataset_channel=channel_cfg['dataset_channel'], inference_channel=channel_cfg['inference_channel']) data_cfg_copy = copy.deepcopy(data_cfg) _ = dataset_class(ann_file='tests/data/zebra/test_zebra.json', img_prefix='tests/data/zebra/', data_cfg=data_cfg_copy, dataset_info=dataset_info, pipeline=[], test_mode=True) custom_dataset = dataset_class(ann_file='tests/data/zebra/test_zebra.json', img_prefix='tests/data/zebra/', data_cfg=data_cfg_copy, dataset_info=dataset_info, pipeline=[], test_mode=False) assert (custom_dataset.dataset_name == 'zebra') assert (custom_dataset.test_mode is False) assert (custom_dataset.num_images == 2) _ = custom_dataset[0] outputs = convert_db_to_output(custom_dataset.db) with tempfile.TemporaryDirectory() as tmpdir: infos = custom_dataset.evaluate(outputs, tmpdir, ['PCK']) assert_almost_equal(infos['PCK'], 1.0) with pytest.raises(KeyError): infos = custom_dataset.evaluate(outputs, tmpdir, 'mAP')
class OpInstanceConfigGenerator(): def __init__(self, op_type_supported_kernels: dict, op_type_pcq: dict): self.op_type_supported_kernels = op_type_supported_kernels self.op_type_pcq = op_type_pcq assert (ConfigDictKeys.DEFAULTS in self.op_type_supported_kernels) assert (ConfigDictKeys.DEFAULTS in self.op_type_pcq) def generate(self, module: torch.nn.Module, op_type: str) -> dict: def _generate_pcq(self, module: torch.nn.Module) -> bool: pcq = False onnx_types = map_torch_types_to_onnx.get(type(module), []) onnx_types_in_config = set(onnx_types).intersection(self.op_type_pcq) if onnx_types_in_config: for onnx_type in onnx_types_in_config: if self.op_type_pcq[onnx_type]: pcq = True break elif self.op_type_pcq[ConfigDictKeys.DEFAULTS]: pcq = True return pcq
def block_layer(inputs, filters, bottleneck, block_fn, blocks, strides, training, name, data_format): filters_out = ((filters * 4) if bottleneck else filters) def projection_shortcut(inputs): return conv2d_fixed_padding(inputs=inputs, filters=filters_out, kernel_size=1, strides=strides, data_format=data_format) inputs = block_fn(inputs, filters, training, projection_shortcut, strides, data_format) for _ in range(1, blocks): inputs = block_fn(inputs, filters, training, None, 1, data_format) return tf.identity(inputs, name)
def _normalize_msid(msid, normalization, n, k, ts): normed_msid = msid.copy() if (normalization == 'empty'): normed_msid /= n elif (normalization == 'complete'): normed_msid /= (1 + ((n - 1) * np.exp(((- (1 + (1 / (n - 1)))) * ts)))) elif (normalization == 'er'): xs = np.linspace(0, 1, n) er_spectrum = ((((4 / np.sqrt(k)) * xs) + 1) - (2 / np.sqrt(k))) er_msid = np.exp((- np.outer(ts, er_spectrum))).sum((- 1)) normed_msid = (normed_msid / (er_msid + EPSILON)) elif ((normalization == 'none') or (normalization is None)): pass else: raise ValueError('Unknown normalization parameter!') return normed_msid
def deprocess_fit(coef, intercept, pre_pro_out, fit_intercept): coef = np.array(coef) is_mr = is_multi_response(coef) if (not is_mr): coef = coef.ravel() if ((pre_pro_out is not None) and ('X_scale' in pre_pro_out)): coef = (diags((1 / pre_pro_out['X_scale'])) coef) if fit_intercept: if ((pre_pro_out is not None) and ('X_offset' in pre_pro_out)): intercept -= (coef.T pre_pro_out['X_offset']) if ((pre_pro_out is not None) and ('y_offset' in pre_pro_out)): intercept += pre_pro_out['y_offset'] elif is_mr: intercept = np.zeros(coef.shape[1]) else: intercept = 0 return (coef, intercept)
def test_disabled_command_not_in_history(disable_commands_app): message_to_print = 'These commands are currently disabled' disable_commands_app.disable_command('has_helper_funcs', message_to_print) saved_len = len(disable_commands_app.history) run_cmd(disable_commands_app, 'has_helper_funcs') assert (saved_len == len(disable_commands_app.history))
.functions (df=categoricaldf_strategy()) (deadline=None) def test_all_cat_not_None(df): result = df.encode_categorical(numbers=np.array([3, 1, 2])) categories = pd.CategoricalDtype(categories=[3, 1, 2], ordered=True) expected = df.astype({'numbers': categories}) assert expected['numbers'].equals(result['numbers'])
def test_unpacking_starred_and_dicts_in_assignment() -> None: node = extract_node('\n a, *b = {1:2, 2:3, 3:4}\n b\n ') inferred = next(node.infer()) assert isinstance(inferred, nodes.List) assert (inferred.as_string() == '[2, 3]') node = extract_node('\n a, *b = {1:2}\n b\n ') inferred = next(node.infer()) assert isinstance(inferred, nodes.List) assert (inferred.as_string() == '[]')
('pymodbus.transport.transport_serial.serial.serial_for_url', mock.MagicMock()) class TestBasicSerial(): (name='use_port') def get_port_in_class(base_ports): base_ports[__class__.__name__] += 1 return base_ports[__class__.__name__] async def test_init(self): SerialTransport(asyncio.get_running_loop(), mock.Mock(), 'dummy') async def test_abstract_methods(self): comm = SerialTransport(asyncio.get_running_loop(), mock.Mock(), 'dummy') assert comm.loop comm.get_protocol() comm.set_protocol(None) comm.get_write_buffer_limits() comm.can_write_eof() comm.write_eof() comm.set_write_buffer_limits(1024, 1) comm.get_write_buffer_size() comm.is_reading() comm.pause_reading() comm.resume_reading() comm.is_closing() async def test_external_methods(self): comm = SerialTransport(mock.MagicMock(), mock.Mock(), 'dummy') comm.sync_serial.read = mock.MagicMock(return_value='abcd') comm.sync_serial.write = mock.MagicMock(return_value=4) comm.sync_serial.fileno = mock.MagicMock(return_value=2) comm.sync_serial.async_loop.add_writer = mock.MagicMock() comm.sync_serial.async_loop.add_reader = mock.MagicMock() comm.sync_serial.async_loop.remove_writer = mock.MagicMock() comm.sync_serial.async_loop.remove_reader = mock.MagicMock() comm.sync_serial.in_waiting = False comm.write(b'abcd') comm.flush() comm.close() comm = SerialTransport(mock.MagicMock(), mock.Mock(), 'dummy') comm.abort() (transport, protocol) = (await create_serial_connection(asyncio.get_running_loop(), mock.Mock, url='dummy')) (await asyncio.sleep(0.1)) assert transport assert protocol transport.close()
def notification(subject, body, urgency=None, timeout=None): cmds = [] urgs = {0: 'low', 1: 'normal', 2: 'critical'} urg_level = urgs.get(urgency, 'normal') if (urg_level != 'normal'): cmds += ['-u', urg_level] if timeout: cmds += ['-t', '{}'.format(timeout)] cmds += [subject, body] text = '<span weight="bold">' if (urg_level != 'normal'): text += '<span color="{{colour}}">' text += '{subject}' if (urg_level != 'normal'): text += '</span>' text += '</span> - {body}' text = text.format(subject=subject, body=body) return (text, cmds)
class PrioritizedReplayBuffer(ReplayBuffer): def __init__(self, size, alpha): super(PrioritizedReplayBuffer, self).__init__(size) assert (alpha > 0) self._alpha = alpha it_capacity = 1 while (it_capacity < size): it_capacity *= 2 self._it_sum = SumSegmentTree(it_capacity) self._it_min = MinSegmentTree(it_capacity) self._max_priority = 1.0 def add(self, *args, **kwargs): idx = self._next_idx super().add(*args, **kwargs) self._it_sum[idx] = (self._max_priority ** self._alpha) self._it_min[idx] = (self._max_priority ** self._alpha) def _sample_proportional(self, batch_size): res = [] for _ in range(batch_size): mass = (random.random() * self._it_sum.sum(0, (len(self._storage) - 1))) idx = self._it_sum.find_prefixsum_idx(mass) res.append(idx) return res def sample(self, batch_size, beta): assert (beta > 0) idxes = self._sample_proportional(batch_size) weights = [] p_min = (self._it_min.min() / self._it_sum.sum()) max_weight = ((p_min * len(self._storage)) ** (- beta)) for idx in idxes: p_sample = (self._it_sum[idx] / self._it_sum.sum()) weight = ((p_sample * len(self._storage)) ** (- beta)) weights.append((weight / max_weight)) weights = np.array(weights) encoded_sample = self._encode_sample(idxes) return tuple((list(encoded_sample) + [weights, idxes])) def update_priorities(self, idxes, priorities): assert (len(idxes) == len(priorities)) for (idx, priority) in zip(idxes, priorities): assert (priority > 0) assert (0 <= idx < len(self._storage)) self._it_sum[idx] = (priority ** self._alpha) self._it_min[idx] = (priority ** self._alpha) self._max_priority = max(self._max_priority, priority)
def read_smiles(file_path): if any([('gz' in ext) for ext in os.path.basename(file_path).split('.')[1:]]): logger.debug("'gz' found in file path: using gzip") with gzip.open(file_path) as f: smiles = f.read().splitlines() smiles = [smi.decode('utf-8') for smi in smiles] else: with open(file_path, 'rt') as f: smiles = f.read().splitlines() return smiles
def upgrade(op, tables, tester): op.create_table('tagtorepositorytag', sa.Column('id', sa.Integer(), nullable=False), sa.Column('repository_id', sa.Integer(), nullable=False), sa.Column('tag_id', sa.Integer(), nullable=False), sa.Column('repository_tag_id', sa.Integer(), nullable=False), sa.ForeignKeyConstraint(['repository_id'], ['repository.id'], name=op.f('fk_tagtorepositorytag_repository_id_repository')), sa.ForeignKeyConstraint(['repository_tag_id'], ['repositorytag.id'], name=op.f('fk_tagtorepositorytag_repository_tag_id_repositorytag')), sa.ForeignKeyConstraint(['tag_id'], ['tag.id'], name=op.f('fk_tagtorepositorytag_tag_id_tag')), sa.PrimaryKeyConstraint('id', name=op.f('pk_tagtorepositorytag'))) op.create_index('tagtorepositorytag_repository_id', 'tagtorepositorytag', ['repository_id'], unique=False) op.create_index('tagtorepositorytag_repository_tag_id', 'tagtorepositorytag', ['repository_tag_id'], unique=True) op.create_index('tagtorepositorytag_tag_id', 'tagtorepositorytag', ['tag_id'], unique=True) tester.populate_table('tagtorepositorytag', [('repository_id', tester.TestDataType.Foreign('repository')), ('tag_id', tester.TestDataType.Foreign('tag')), ('repository_tag_id', tester.TestDataType.Foreign('repositorytag'))])
def test_AddValueToZero_simple_matrix(): dm = skcriteria.mkdm(matrix=[[1, 0, 3], [0, 5, 6]], objectives=[min, max, min], weights=[1, 2, 0]) expected = skcriteria.mkdm(matrix=[[1.5, 0.5, 3], [0.5, 5.5, 6]], objectives=[min, max, min], weights=[1, 2, 0]) scaler = AddValueToZero(value=0.5, target='matrix') result = scaler.transform(dm) assert result.equals(expected)
def _legacy_decay_learning_rate(network: Model, initial_learning_rate: float, epochs: int) -> None: current_learning_rate = K.get_value(network.optimizer.lr) new_learning_rate = (current_learning_rate - ((initial_learning_rate - LEGACY_FINAL_LEARNING_RATE) / epochs)) K.set_value(network.optimizer.lr, new_learning_rate)
def get_seq_bkg(seq, kid, start=0): frames = sorted(os.listdir(seq)) depths = [] for frame in frames[start:]: depth_file = join(seq, frame, f'k{kid}.depth.png') depth = cv2.imread(depth_file, cv2.IMREAD_ANYDEPTH) if (depth is not None): depths.append(depth) avg = np.stack(depths, axis=(- 1)).mean(axis=(- 1)) return avg
class TestKaldiIO(unittest.TestCase): def testClassifyRxfilename(self): self.assertEqual(InputType.STANDARD_INPUT, classify_rxfilename('')) self.assertEqual(InputType.NO_INPUT, classify_rxfilename(' ')) self.assertEqual(InputType.NO_INPUT, classify_rxfilename(' a ')) self.assertEqual(InputType.NO_INPUT, classify_rxfilename('a ')) self.assertEqual(InputType.FILE_INPUT, classify_rxfilename('a')) self.assertEqual(InputType.STANDARD_INPUT, classify_rxfilename('-')) self.assertEqual(InputType.PIPE_INPUT, classify_rxfilename('b|')) self.assertEqual(InputType.NO_INPUT, classify_rxfilename('|b')) self.assertEqual(InputType.PIPE_INPUT, classify_rxfilename('b c|')) self.assertEqual(InputType.OFFSET_FILE_INPUT, classify_rxfilename('a b c:123')) self.assertEqual(InputType.OFFSET_FILE_INPUT, classify_rxfilename('a b c:3')) self.assertEqual(InputType.FILE_INPUT, classify_rxfilename('a b c:')) self.assertEqual(InputType.FILE_INPUT, classify_rxfilename('a b c/3')) def testClassifyWxfilename(self): self.assertEqual(OutputType.STANDARD_OUTPUT, classify_wxfilename('')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename(' ')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename(' a ')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename('a ')) self.assertEqual(OutputType.FILE_OUTPUT, classify_wxfilename('a')) self.assertEqual(OutputType.STANDARD_OUTPUT, classify_wxfilename('-')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename('b|')) self.assertEqual(OutputType.PIPE_OUTPUT, classify_wxfilename('|b')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename('b c|')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename('a b c:123')) self.assertEqual(OutputType.NO_OUTPUT, classify_wxfilename('a b c:3')) self.assertEqual(OutputType.FILE_OUTPUT, classify_wxfilename('a b c:')) self.assertEqual(OutputType.FILE_OUTPUT, classify_wxfilename('a b c/3')) def test_text_io(self): filename = 'tmpf' lines = ['400\t500\t600', '700\td'] with Output(filename, False) as ko: for line in lines: print(line, file=ko) with Input(filename, False) as ki: for (i, line) in enumerate(ki): self.assertEqual(line.strip(), lines[i]) os.remove(filename) def test_binary_io(self): filename = 'tmpf' lines = [b'\t500\t600\n', b'700\td\n'] with Output(filename) as ko: for line in lines: ko.write(line) with Input(filename) as ki: self.assertTrue(ki.binary) for (i, line) in enumerate(ki): self.assertEqual(line, lines[i]) os.remove(filename) def test_xopen(self): filename = 'tmpf' lines = [b'\t500\t600\n', b'700\td\n'] with xopen(filename, 'w') as ko: ko.writelines(lines) with xopen(filename) as ki: self.assertTrue(ki.binary) for (i, line) in enumerate(ki): self.assertEqual(line, lines[i]) os.remove(filename)
class Loss(torch.nn.Module): def __init__(self, batch_size, args): super().__init__() self.rot_loss = torch.nn.CrossEntropyLoss().cuda() self.recon_loss = torch.nn.L1Loss().cuda() self.contrast_loss = Contrast(args, batch_size).cuda() self.alpha1 = 1.0 self.alpha2 = 1.0 self.alpha3 = 1.0 def __call__(self, output_rot, target_rot, output_contrastive, target_contrastive, output_recons, target_recons): rot_loss = (self.alpha1 * self.rot_loss(output_rot, target_rot)) contrast_loss = (self.alpha2 * self.contrast_loss(output_contrastive, target_contrastive)) recon_loss = (self.alpha3 * self.recon_loss(output_recons, target_recons)) total_loss = ((rot_loss + contrast_loss) + recon_loss) return (total_loss, (rot_loss, contrast_loss, recon_loss))
def _generate_markdown(cwl_spec: str, conformance: str, failed_tests: list[str]) -> str: time = datetime.now().strftime('%Y-%m-%d') (passed, failed, unsupported) = conformance.split(',') tests_list = ''.join([f''' - {test} ''' for test in failed_tests]) return f''' # CWL {cwl_spec} specification conformance results REANA {__version__} tested on {time} - {passed} - {failed.strip()} {tests_list}- {unsupported.strip()} '''
class LruWrappedModel(objectmodel.FunctionModel): def attr___wrapped__(self): return self._instance def attr_cache_info(self): cache_info = extract_node('\n from functools import _CacheInfo\n _CacheInfo(0, 0, 0, 0)\n ') class CacheInfoBoundMethod(BoundMethod): def infer_call_result(self, caller: (SuccessfulInferenceResult | None), context: (InferenceContext | None)=None) -> Iterator[InferenceResult]: res = safe_infer(cache_info) assert (res is not None) (yield res) return CacheInfoBoundMethod(proxy=self._instance, bound=self._instance) def attr_cache_clear(self): node = extract_node('def cache_clear(self): pass') return BoundMethod(proxy=node, bound=self._instance.parent.scope())
class BasicBlock(nn.Module): def __init__(self, inplanes, expansion=1, growthRate=12, dropRate=0): super(BasicBlock, self).__init__() planes = (expansion * growthRate) self.bn1 = nn.BatchNorm2d(inplanes) self.conv1 = nn.Conv2d(inplanes, growthRate, kernel_size=3, padding=1, bias=False) self.relu = nn.ReLU(inplace=True) self.dropRate = dropRate def forward(self, x): out = self.bn1(x) out = self.relu(out) out = self.conv1(out) if (self.dropRate > 0): out = F.dropout(out, p=self.dropRate, training=self.training) out = torch.cat((x, out), 1) return out
def forward_for_loss(model, loader, loss): model.eval() model.zero_grad() loss_total = 0 for (batch_idx, (x, y)) in enumerate(loader): (x, y) = (x.cuda(), y.cuda()) (loss_batch, pred_y) = loss(x, y, model) loss_total += loss_batch loss_total /= len(loader) return loss_total
def test_expert_mapping_3(device=rank): if (dist.get_world_size() != 4): return dgrid = DistributionGrid(expert_parallel_group_size=2, expert_parallel_replica_group_size=2) ((nrank_0, nid_0), (nrank_1, nid_1)) = dgrid.map_expert_id_global_to_local(64, 42) assert ((nrank_0 == 1) and (nid_0 == 10) and (nrank_1 == 3) and (nid_1 == 10)) (grank, replica_id) = dgrid.map_expert_id_local_to_global(64, 14) if (rank == 0): assert ((grank == 14) and (replica_id == 0)) elif (rank == 1): assert ((grank == 46) and (replica_id == 0)) elif (rank == 2): assert ((grank == 14) and (replica_id == 1)) elif (rank == 3): assert ((grank == 46) and (replica_id == 1))
(epilog=fragdb_constants_epilog, name='fragdb_constants') ('--min-count', type=nonnegative_int()) ('--max-count', type=nonnegative_int()) ('--min-frequency', '--min-freq', type=frequency_type()) ('--max-frequency', '--max-freq', type=frequency_type()) ('--min-heavies-per-const-frag', type=nonnegative_int(), help='Lower bound on the number of heavies in the smallest fragment in the constant part') ('--min-heavies-total-const-frag', type=nonnegative_int(), default=0, help='Lower bound on the number of heavies in the constant part') ('--limit', metavar='K', type=positive_int(), help="Limit the output to the 'K' most common constants") ('--output', '-o', 'output_file', default='-', type=GzipFile('w'), help='Write the result to the named file (default: stdout)') ('--header / --no-header', default=True, help='The default, --header, includes the header in output') _multiple_databases_parameters() _obj def fragdb_constants(reporter, databases_options, min_count, max_count, min_frequency, max_frequency, min_heavies_per_const_frag, min_heavies_total_const_frag, limit, output_file, header): from ..index_algorithm import get_num_heavies with open_frag_dbs(databases_options) as frag_dbs: num_fragmentations = frag_dbs.get_num_fragmentations(reporter=reporter) const_frag_filter = ((min_heavies_per_const_frag is not None) and (min_heavies_per_const_frag > 0)) if (min_count is None): min_count = 0 if (max_count is None): max_count = num_fragmentations if (min_frequency is not None): min_freq_count = int(math.ceil((min_frequency * num_fragmentations))) min_count = max(min_count, min_freq_count) if (max_frequency is not None): max_freq_count = int(math.floor((max_frequency * num_fragmentations))) max_count = min(max_count, max_freq_count) assert isinstance(min_count, int) assert isinstance(max_count, int) c = frag_dbs.iter_constants(min_heavies_total_const_frag, min_count, max_count, reporter=reporter) if (limit is None): limit = (2 ** 63) i = 0 for (constant_smiles, n) in c: if header: output_file.write(f'''constant N ''') header = False if (i >= limit): break if const_frag_filter: terms = constant_smiles.split('.') if any(((get_num_heavies(term) < min_heavies_per_const_frag) for term in terms)): continue i += 1 output_file.write(f'''{constant_smiles} {n} ''') output_file.close()
def test_no_ipywidget_repr(monkeypatch, capsys): pytest.importorskip('ipywidgets') import ipywidgets source = Stream() source._ipython_display_() assert ('Output()' in capsys.readouterr().out) def get(*_, **__): raise ImportError monkeypatch.setattr(ipywidgets.Output, '__init__', get) out = source._ipython_display_() assert ('Stream' in capsys.readouterr().out)
def make_res_layer(block, inplanes, planes, blocks, stride=1, dilation=1, groups=1, base_width=4, style='pytorch', with_cp=False, conv_cfg=None, norm_cfg=dict(type='BN'), dcn=None, gcb=None): downsample = None if ((stride != 1) or (inplanes != (planes * block.expansion))): downsample = nn.Sequential(build_conv_layer(conv_cfg, inplanes, (planes * block.expansion), kernel_size=1, stride=stride, bias=False), build_norm_layer(norm_cfg, (planes * block.expansion))[1]) layers = [] layers.append(block(inplanes=inplanes, planes=planes, stride=stride, dilation=dilation, downsample=downsample, groups=groups, base_width=base_width, style=style, with_cp=with_cp, conv_cfg=conv_cfg, norm_cfg=norm_cfg, dcn=dcn, gcb=gcb)) inplanes = (planes * block.expansion) for i in range(1, blocks): layers.append(block(inplanes=inplanes, planes=planes, stride=1, dilation=dilation, groups=groups, base_width=base_width, style=style, with_cp=with_cp, conv_cfg=conv_cfg, norm_cfg=norm_cfg, dcn=dcn, gcb=gcb)) return nn.Sequential(*layers)
class LGLBlock(nn.Module): def __init__(self, dim, num_heads, mlp_ratio=4.0, qkv_bias=False, qk_scale=None, drop=0.0, attn_drop=0.0, drop_path=0.0, act_layer=nn.GELU, norm_layer=nn.LayerNorm, sr_ratio=1.0): super().__init__() if (sr_ratio > 1): self.LocalAgg = LocalAgg(dim, num_heads, mlp_ratio, qkv_bias, qk_scale, drop, attn_drop, drop_path, act_layer, norm_layer) else: self.LocalAgg = nn.Identity() self.SelfAttn = SelfAttn(dim, num_heads, mlp_ratio, qkv_bias, qk_scale, drop, attn_drop, drop_path, act_layer, norm_layer, sr_ratio) def forward(self, x): x = self.LocalAgg(x) x = self.SelfAttn(x) return x
def generate(cfg): set_seed(cfg.seed) if cfg.input.endswith('.bvh'): base_dir = osp.join(cfg.output_dir, cfg.input.split('/')[(- 1)].split('.')[0]) motion_data = [BVHMotion(cfg.input, skeleton_name=cfg.skeleton_name, repr=cfg.repr, use_velo=cfg.use_velo, keep_up_pos=cfg.keep_up_pos, up_axis=cfg.up_axis, padding_last=cfg.padding_last, requires_contact=cfg.requires_contact, joint_reduction=cfg.joint_reduction)] elif cfg.input.endswith('.txt'): base_dir = osp.join(cfg.output_dir, cfg.input.split('/')[(- 2)], cfg.input.split('/')[(- 1)].split('.')[0]) motion_data = load_multiple_dataset(name_list=cfg.input, skeleton_name=cfg.skeleton_name, repr=cfg.repr, use_velo=cfg.use_velo, keep_up_pos=cfg.keep_up_pos, up_axis=cfg.up_axis, padding_last=cfg.padding_last, requires_contact=cfg.requires_contact, joint_reduction=cfg.joint_reduction) else: raise ValueError('exemplar must be a bvh file or a txt file') prefix = f's{cfg.seed}+{cfg.num_frames}+{cfg.repr}+use_velo_{cfg.use_velo}+kypose_{cfg.keep_up_pos}+padding_{cfg.padding_last}+contact_{cfg.requires_contact}+jredu_{cfg.joint_reduction}+n{cfg.noise_sigma}+pyr{cfg.pyr_factor}+r{cfg.coarse_ratio}_{cfg.coarse_ratio_factor}+itr{cfg.num_steps}+ps_{cfg.patch_size}+alpha_{cfg.alpha}+loop_{cfg.loop}' model = GenMM(device=cfg.device, silent=(True if (cfg.mode == 'eval') else False)) criteria = PatchCoherentLoss(patch_size=cfg.patch_size, alpha=cfg.alpha, loop=cfg.loop, cache=True) syn = model.run(motion_data, criteria, num_frames=cfg.num_frames, num_steps=cfg.num_steps, noise_sigma=cfg.noise_sigma, patch_size=cfg.patch_size, coarse_ratio=cfg.coarse_ratio, pyr_factor=cfg.pyr_factor, debug_dir=(save_dir if (cfg.mode == 'debug') else None)) save_dir = osp.join(base_dir, prefix) os.makedirs(save_dir, exist_ok=True) motion_data[0].write(f'{save_dir}/syn.bvh', syn) if cfg.post_precess: cmd = f'python fix_contact.py --prefix {osp.abspath(save_dir)} --name syn --skeleton_name={cfg.skeleton_name}' os.system(cmd)
.usefixtures('log_extension_output') def test_command_set_invalid_command(caplog, fake_qtile): extension = CommandSet(pre_commands=['run pre-command'], commands={'missing': 'run testcommand'}) extension._configure(fake_qtile) extension.run() assert (caplog.record_tuples == [('libqtile', logging.WARNING, 'run pre-command')])
class MeasurementGoodput(Measurement): FILESIZE = (10 * MB) _result = 0.0 def name(): return 'goodput' def unit() -> str: return 'kbps' def testname(p: Perspective): return 'transfer' def abbreviation(): return 'G' def desc(): return 'Measures connection goodput over a 10Mbps link.' def repetitions() -> int: return 5 def get_paths(self): self._files = [self._generate_random_file(self.FILESIZE)] return self._files def check(self) -> TestResult: num_handshakes = self._count_handshakes() if (num_handshakes != 1): logging.info('Expected exactly 1 handshake. Got: %d', num_handshakes) return TestResult.FAILED if (not self._check_version_and_files()): return TestResult.FAILED (packets, first, last) = self._client_trace().get_1rtt_sniff_times(Direction.FROM_SERVER) if ((last - first) == 0): return TestResult.FAILED time = ((last - first) / timedelta(milliseconds=1)) goodput = ((8 * self.FILESIZE) / time) logging.debug('Transfering %d MB took %d ms. Goodput: %d kbps', (self.FILESIZE / MB), time, goodput) self._result = goodput return TestResult.SUCCEEDED def result(self) -> float: return self._result
class Migration(migrations.Migration): dependencies = [('questions', '0054_meta'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('projects', '0046_project_mptt')] operations = [migrations.CreateModel(name='Continuation', fields=[('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created', models.DateTimeField(editable=False, verbose_name='created')), ('updated', models.DateTimeField(editable=False, verbose_name='updated')), ('project', models.ForeignKey(help_text='The project for this continuation.', on_delete=django.db.models.deletion.CASCADE, related_name='+', to='projects.Project', verbose_name='Project')), ('questionset', models.ForeignKey(help_text='The question set for this continuation.', on_delete=django.db.models.deletion.CASCADE, related_name='+', to='questions.QuestionSet', verbose_name='Question set')), ('user', models.ForeignKey(help_text='The user for this continuation.', on_delete=django.db.models.deletion.CASCADE, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='User'))], options={'verbose_name': 'Continuation', 'verbose_name_plural': 'Continuations', 'ordering': ('user', 'project')})]
class NestedTensor(object): def __init__(self, tensors, mask: Optional[Tensor]): self.tensors = tensors self.mask = mask def to(self, device): cast_tensor = self.tensors.to(device) mask = self.mask if (mask is not None): assert (mask is not None) cast_mask = mask.to(device) else: cast_mask = None return NestedTensor(cast_tensor, cast_mask) def decompose(self): return (self.tensors, self.mask) def pin_memory(self): self.tensors = self.tensors.pin_memory() self.mask = self.mask.pin_memory() return self def __repr__(self): return str(self.tensors)
def build_backbone(args): position_embedding = build_position_encoding(args) backbone = Backbone(backbone_name=args.backbone, num_feature_levels=args.num_feature_levels, pretrained=args.pretrained, use_checkpoint=args.use_checkpoint, dilation=args.dilation) model = Joiner(backbone, position_embedding) return model
def test_from_recap_union(): converter = ProtobufConverter() recap_type = UnionType(types=[IntType(signed=True, bits=32, name='some_int'), StringType(bytes_=100, name='some_string')], name='some_union') struct_type = StructType(fields=[recap_type], alias='build.recap.MyStruct') result = converter.from_recap(struct_type) assert isinstance(result, ast.File) assert (len(result.file_elements) == 2) package = result.file_elements[0] assert isinstance(package, ast.Package) assert (package.name == 'build.recap') message = result.file_elements[1] assert isinstance(message, ast.Message) assert (message.name == 'MyStruct') assert (len(message.elements) == 1) oneof_field = message.elements[0] assert isinstance(oneof_field, ast.OneOf) assert (oneof_field.name == 'some_union') assert (len(oneof_field.elements) == 2) int_field = oneof_field.elements[0] assert isinstance(int_field, ast.Field) assert (int_field.name == 'some_int') assert (int_field.type == 'int32') assert (int_field.number == 1) string_field = oneof_field.elements[1] assert isinstance(string_field, ast.Field) assert (string_field.name == 'some_string') assert (string_field.type == 'string') assert (string_field.number == 2)
def uninstall_nvpmodel(args): if os.path.isfile('/usr/bin/nvpmodel'): print('Removing nvpmodel') os.remove('/usr/bin/nvpmodel') if os.path.isfile('/etc/nvpmodel.conf'): print('Removing /etc/nvpmodel.conf') os.remove('/etc/nvpmodel.conf') if os.path.isfile('/tmp/nvp_model_test'): print('Removing /tmp/nvp_model_test') os.remove('/tmp/nvp_model_test')
.parametrize('linker', [VMLinker(allow_partial_eval=True, use_cloop=False), 'cvm']) def test_partial_function_with_output_keys(linker): x = scalar('input') y = (3 * x) f = function([x], {'a': (y * 5), 'b': (y - 7)}, mode=Mode(optimizer=None, linker=linker)) assert (f(5, output_subset=['a'])['a'] == f(5)['a'])
class TestOrbitsGappyOrbitLatData(TestOrbitsGappyData): def setup_method(self): self.testInst = pysat.Instrument('pysat', 'testing', clean_level='clean', orbit_info={'index': 'latitude', 'kind': 'polar'}, use_header=True) self.stime = pysat.instruments.pysat_testing._test_dates[''][''] self.gaps = (self.stime + self.deltime) self.testInst.custom_attach(filter_data, kwargs={'times': self.gaps}) return def teardown_method(self): del self.testInst, self.stime, self.gaps return
class RedisSearcher(BaseSearcher): search_params = {} client = None parser = RedisConditionParser() def init_client(cls, host, distance, connection_params: dict, search_params: dict): cls.client = redis.Redis(host=host, port=REDIS_PORT, db=0) cls.search_params = search_params def search_one(cls, vector, meta_conditions, top) -> List[Tuple[(int, float)]]: conditions = cls.parser.parse(meta_conditions) if (conditions is None): prefilter_condition = '*' params = {} else: (prefilter_condition, params) = conditions q = Query(f'{prefilter_condition}=>[KNN $K $vec_param EF_RUNTIME $EF AS vector_score]').sort_by('vector_score', asc=False).paging(0, top).return_fields('vector_score').dialect(2) params_dict = {'vec_param': np.array(vector).astype(np.float32).tobytes(), 'K': top, 'EF': cls.search_params['search_params']['ef'], **params} results = cls.client.ft().search(q, query_params=params_dict) return [(int(result.id), float(result.vector_score)) for result in results.docs]
def watch_zookeeper_nodes(zookeeper: KazooClient, nodes: Any) -> NoReturn: for node in nodes: watcher = NodeWatcher(node.dest, node.owner, node.group, node.mode) zookeeper.DataWatch(node.source, watcher.on_change) while True: time.sleep(HEARTBEAT_INTERVAL) if zookeeper.connected: for node in nodes: try: logger.debug('Heartbeating %s', node.dest) os.utime(node.dest, None) except OSError as exc: logger.warning('%s: could not heartbeat: %s', node.dest, exc)
def validate_rest(text): settings = docutils.frontend.get_default_settings(rst.Parser) document = docutils.utils.new_document('', settings) rst.Parser().parse(text, document) try: document.walk(ReSTValidatorVisitor(document)) return (False, None) except InvalidReSTError as e: return (e.args[0], e.args[1])
def list_file_names(image_dir=None, file_ext=None): if (file_ext is None): file_ext = get_image_extension() if (image_dir is None): image_dir = get_local_data_folder() if (not image_dir.endswith('/')): image_dir += '/' file_names = glob.glob(((image_dir + '*') + file_ext)) file_names = sorted(file_names, key=(lambda f: os.path.getsize(f))) return file_names
class TestCaseBlackhole(TestCase): def name(): return 'blackhole' def testname(p: Perspective): return 'transfer' def abbreviation(): return 'B' def desc(): return 'Transfer succeeds despite underlying network blacking out for a few seconds.' def scenario() -> str: return 'blackhole --delay=15ms --bandwidth=10Mbps --queue=25 --on=5s --off=2s' def get_paths(self): self._files = [self._generate_random_file((10 * MB))] return self._files def check(self) -> TestResult: num_handshakes = self._count_handshakes() if (num_handshakes != 1): logging.info('Expected exactly 1 handshake. Got: %d', num_handshakes) return TestResult.FAILED if (not self._check_version_and_files()): return TestResult.FAILED return TestResult.SUCCEEDED
def crawl_board_list(top_n: Optional[int]=None) -> Iterator[DcardBoard]: url = f'{DCARD_BASE_URL}/forums' resp = requests.get(url, headers=headers) logger.info('Crawl dcard board list') for (i, board) in enumerate(resp.json()): created_at = datetime.strptime(board['createdAt'], ISO_FORMAT) updated_at = datetime.strptime(board['updatedAt'], ISO_FORMAT) (yield DcardBoard(id=board['id'], name=board['name'], alias=board['alias'], description=board['description'], is_school=board['isSchool'], created_at=created_at, updated_at=updated_at)) if (top_n and (i > top_n)): break
(frozen=True, slots=True) class Region(): name: str areas: list[Area] extra: dict[(str, typing.Any)] def __repr__(self) -> str: return f'World[{self.name}]' def dark_name(self) -> (str | None): return self.extra.get('dark_name') def all_nodes(self) -> Iterator[Node]: for area in self.areas: (yield from area.nodes) def pickup_indices(self) -> Iterator[PickupIndex]: for area in self.areas: (yield from area.pickup_indices) def area_by_name(self, area_name: str, is_dark_aether: (bool | None)=None) -> Area: for area in self.areas: if ((is_dark_aether is not None) and (area.in_dark_aether != is_dark_aether)): continue if (area.name == area_name): return area raise KeyError(f'Unknown name: {area_name}') def area_by_identifier(self, location: AreaIdentifier) -> Area: if (self.name != location.region_name): raise ValueError(f'Attempting to use AreaIdentifier for {location.region_name} with region {self.name}') return self.area_by_name(location.area_name) def correct_name(self, use_dark_name: bool) -> str: if (use_dark_name and (self.dark_name is not None)): return self.dark_name return self.name def duplicate(self) -> Region: return dataclasses.replace(self, areas=[area.duplicate() for area in self.areas])
def main_run(arglist, security_override=False): discovered_actions = actions_mgr.get_actions_dict() parsed_args = arguments.parse(arglist, 'rdiff-backup {ver}'.format(ver=Globals.version), actions_mgr.get_generic_parsers(), discovered_actions) if (parsed_args.terminal_verbosity is not None): log.Log.setterm_verbosity(parsed_args.terminal_verbosity) log.Log.setverbosity(parsed_args.verbosity) _parse_cmdlineoptions_compat201(parsed_args) action = discovered_actions[parsed_args.action](parsed_args) log.Log('Runtime information =>{ri}<='.format(ri=Globals.get_runtime_info(parsed=vars(parsed_args))), log.DEBUG) ret_val = action.pre_check() if (ret_val & Globals.RET_CODE_ERR): log.Log('Action {ac} failed on step {st}'.format(ac=parsed_args.action, st='pre_check'), log.ERROR) return ret_val with action.connect() as conn_act: if (not conn_act.is_connection_ok()): log.Log('Action {ac} failed on step {st}'.format(ac=parsed_args.action, st='connect'), log.ERROR) return conn_act.conn_status if security_override: from rdiff_backup import Security Security._security_level = 'override' ret_val |= conn_act.check() if (ret_val & Globals.RET_CODE_ERR): log.Log('Action {ac} failed on step {st}'.format(ac=parsed_args.action, st='check'), log.ERROR) return ret_val ret_val |= conn_act.setup() if (ret_val & Globals.RET_CODE_ERR): log.Log('Action {ac} failed on step {st}'.format(ac=parsed_args.action, st='setup'), log.ERROR) return ret_val ret_val |= conn_act.run() if (ret_val & Globals.RET_CODE_ERR): log.Log('Action {ac} failed on step {st}'.format(ac=parsed_args.action, st='run'), log.ERROR) return ret_val if (ret_val & Globals.RET_CODE_WARN): log.Log('Action {ac} emitted warnings, see previous messages for details'.format(ac=parsed_args.action), log.WARNING) if (ret_val & Globals.RET_CODE_FILE_ERR): log.Log('Action {ac} failed on one or more files, see previous messages for details'.format(ac=parsed_args.action), log.WARNING) if (ret_val & Globals.RET_CODE_FILE_WARN): log.Log('Action {ac} emitted a warning on one or more files, see previous messages for details'.format(ac=parsed_args.action), log.WARNING) return ret_val
def get_water(water=None): tip3p = '<ForceField>\n <AtomTypes>\n <Type name="tip3p-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip3p-H" class="HW" element="H" mass="1.007947"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip3p-O"/>\n <Atom name="H1" type="tip3p-H"/>\n <Atom name="H2" type="tip3p-H"/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.09572" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip3p-O" charge="-0.834" sigma="0." epsilon="0.635968"/>\n <Atom type="tip3p-H" charge="0.417" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' spce = '<ForceField>\n <AtomTypes>\n <Type name="spce-O" class="OW" element="O" mass="15.99943"/>\n <Type name="spce-H" class="HW" element="H" mass="1.007947"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="spce-O"/>\n <Atom name="H1" type="spce-H"/>\n <Atom name="H2" type="spce-H"/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.1" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="spce-O" charge="-0.8476" sigma="0." epsilon="0.6497752"/>\n <Atom type="spce-H" charge="0.4238" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' tip4pew = '<ForceField>\n <AtomTypes>\n <Type name="tip4pew-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip4pew-H" class="HW" element="H" mass="1.007947"/>\n <Type name="tip4pew-M" class="MW" mass="0"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip4pew-O"/>\n <Atom name="H1" type="tip4pew-H"/>\n <Atom name="H2" type="tip4pew-H"/>\n <Atom name="M" type="tip4pew-M"/>\n <VirtualSite type="average3" siteName="M" atomName1="O" atomName2="H1" atomName3="H2" weight1="0." weight2="0." weight3="0."/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.09572" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip4pew-O" charge="0" sigma="0.316435" epsilon="0.680946"/>\n <Atom type="tip4pew-H" charge="0.52422" sigma="1" epsilon="0"/>\n <Atom type="tip4pew-M" charge="-1.04844" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' tip5p = '<ForceField>\n <AtomTypes>\n <Type name="tip5p-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip5p-H" class="HW" element="H" mass="1.007947"/>\n <Type name="tip5p-M" class="MW" mass="0"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip5p-O"/>\n <Atom name="H1" type="tip5p-H"/>\n <Atom name="H2" type="tip5p-H"/>\n <Atom name="M1" type="tip5p-M"/>\n <Atom name="M2" type="tip5p-M"/>\n <VirtualSite type="outOfPlane" siteName="M1" atomName1="O" atomName2="H1" atomName3="H2" weight12="-0." weight13="-0." weightCross="-6.4437903"/>\n <VirtualSite type="outOfPlane" siteName="M2" atomName1="O" atomName2="H1" atomName3="H2" weight12="-0." weight13="-0." weightCross="6.4437903"/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.09572" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip5p-O" charge="0" sigma="0.312" epsilon="0.66944"/>\n <Atom type="tip5p-H" charge="0.241" sigma="1" epsilon="0"/>\n <Atom type="tip5p-M" charge="-0.241" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' tip3pfb = '<ForceField>\n <Info>\n <DateGenerated>2014-05-28</DateGenerated>\n <Reference>Lee-Ping Wang, Todd J. Martinez and Vijay S. Pande. Building force fields - an automatic, systematic and reproducible approach. Journal of Physical Chemistry Letters, 2014, 5, pp 1885-1891. DOI:10.1021/jz500737m</Reference>\n </Info>\n <AtomTypes>\n <Type name="tip3p-fb-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip3p-fb-H" class="HW" element="H" mass="1.007947"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip3p-fb-O"/>\n <Atom name="H1" type="tip3p-fb-H"/>\n <Atom name="H2" type="tip3p-fb-H"/>\n <Bond from="0" to="1"/>\n <Bond from="0" to="2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0." k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip3p-fb-O" charge="-0." sigma="0." epsilon="0." />\n <Atom type="tip3p-fb-H" charge="0." sigma="1" epsilon="0" />\n </NonbondedForce>\n</ForceField>' tip4pfb = '<ForceField>\n <Info>\n <DateGenerated>2014-05-28</DateGenerated>\n <Reference>Lee-Ping Wang, Todd J. Martinez and Vijay S. Pande. Building force fields - an automatic, systematic and reproducible approach. Journal of Physical Chemistry Letters, 2014, 5, pp 1885-1891. DOI:10.1021/jz500737m</Reference>\n </Info>\n <AtomTypes>\n <Type name="tip4p-fb-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip4p-fb-H" class="HW" element="H" mass="1.007947"/>\n <Type name="tip4p-fb-M" class="MW" mass="0"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip4p-fb-O"/>\n <Atom name="H1" type="tip4p-fb-H"/>\n <Atom name="H2" type="tip4p-fb-H"/>\n <Atom name="M" type="tip4p-fb-M"/>\n <VirtualSite type="average3" index="3" atom1="0" atom2="1" atom3="2" weight1="8.e-01" weight2="8.e-02" weight3="8.e-02" />\n <Bond from="0" to="1"/>\n <Bond from="0" to="2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.09572" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip4p-fb-O" charge="0" sigma="3.e-01" epsilon="7.e-01" />\n <Atom type="tip4p-fb-H" charge="5.e-01" sigma="1" epsilon="0" />\n <Atom type="tip4p-fb-M" charge="-1.e+00" sigma="1" epsilon="0" />\n </NonbondedForce>\n</ForceField>' tip4pd = '<ForceField>\n <Info>\n <Reference>Water Dispersion Interactions Strongly Influence Simulated Structural Properties of Disordered Protein States\nStefano Piana, Alexander G. Donchev, Paul Robustelli, and David E. Shaw\nThe Journal of Physical Chemistry B 2015 119 (16), 5113-5123\nDOI: 10.1021/jp508971m </Reference>\n </Info>\n <AtomTypes>\n <Type name="tip4pew-O" class="OW" element="O" mass="15.99943"/>\n <Type name="tip4pew-H" class="HW" element="H" mass="1.007947"/>\n <Type name="tip4pew-M" class="MW" mass="0"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="tip4pew-O"/>\n <Atom name="H1" type="tip4pew-H"/>\n <Atom name="H2" type="tip4pew-H"/>\n <Atom name="M" type="tip4pew-M"/>\n <VirtualSite type="average3" siteName="M" atomName1="O" atomName2="H1" atomName3="H2" weight1="0." weight2="0." weight3="0."/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.09572" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="tip4pew-O" charge="0" sigma="0.316435" epsilon="0.936554"/>\n <Atom type="tip4pew-H" charge="0.58" sigma="1" epsilon="0"/>\n <Atom type="tip4pew-M" charge="-1.16" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' opc = '<ForceField>\n <Info>\n <Reference>Water Dispersion Interactions Strongly Influence Simulated Structural Properties of Disordered Protein States\nStefano Piana, Alexander G. Donchev, Paul Robustelli, and David E. Shaw\nThe Journal of Physical Chemistry B 2015 119 (16), 5113-5123\nDOI: 10.1021/jp508971m</Reference>\n </Info>\n <AtomTypes>\n <Type name="opc-O" class="OW" element="O" mass="15.99943"/>\n <Type name="opc-H" class="HW" element="H" mass="1.007947"/>\n <Type name="opc-M" class="MW" mass="0"/>\n </AtomTypes>\n <Residues>\n <Residue name="HOH">\n <Atom name="O" type="opc-O"/>\n <Atom name="H1" type="opc-H"/>\n <Atom name="H2" type="opc-H"/>\n <Atom name="M" type="opc-M"/>\n <VirtualSite type="localCoords" index="3" atom1="0" atom2="1" atom3="2" wo1="1.0" wo2="0.0" wo3="0.0" wx1="-1.0" wx2="1.0" wx3="0.0" wy1="-1.0" wy2="0.0" wy3="1.0" p1="0.00986" p2="0.01253" p3="0.000"/>\n <Bond atomName1="O" atomName2="H1"/>\n <Bond atomName1="O" atomName2="H2"/>\n </Residue>\n </Residues>\n <HarmonicBondForce>\n <Bond class1="OW" class2="HW" length="0.08724" k="462750.4"/>\n </HarmonicBondForce>\n <HarmonicAngleForce>\n <Angle class1="HW" class2="OW" class3="HW" angle="1." k="836.8"/>\n </HarmonicAngleForce>\n <NonbondedForce coulomb14scale="0.5" lj14scale="0.5">\n <Atom type="opc-O" charge="0" sigma="0.316655" epsilon="0.89036"/>\n <Atom type="opc-H" charge="0.6791" sigma="1" epsilon="0"/>\n <Atom type="opc-M" charge="-1.3582" sigma="1" epsilon="0"/>\n </NonbondedForce>\n</ForceField>' water_dict = {'tip3p': tip3p, 'spce': spce, 'tip3pfb': tip3pfb, 'tip4p': tip4pew, 'tip4pew': tip4pew, 'tip4p-d': tip4pd, 'tip4pfb': tip4pfb, 'opc': opc, 'tip5p': tip5p} if ((not water) or (water == 'help')): print('Please enter a water model from the current options:\nOpenMM standard models:\ntip3p\ntip4pew\ntip5p\nspce\nForcebalance models:\ntip3pfb\ntip4pfb\nExtras:\ntip4p-d\nopc') else: with open(f'QUBE_{water}.xml', 'w+') as xml: xml.write(water_dict[water])
class QtHandler(QtHandlerBase): pin_signal = pyqtSignal(object, object) matrix_signal = pyqtSignal(object) close_matrix_dialog_signal = pyqtSignal() def __init__(self, win, pin_matrix_widget_class, device): super(QtHandler, self).__init__(win, device) self.pin_signal.connect(self.pin_dialog) self.matrix_signal.connect(self.matrix_recovery_dialog) self.close_matrix_dialog_signal.connect(self._close_matrix_dialog) self.pin_matrix_widget_class = pin_matrix_widget_class self.matrix_dialog = None self.passphrase_on_device = False def get_pin(self, msg, *, show_strength=True): self.done.clear() self.pin_signal.emit(msg, show_strength) self.done.wait() return self.response def get_matrix(self, msg): self.done.clear() self.matrix_signal.emit(msg) self.done.wait() data = self.matrix_dialog.data if (data == 'x'): self.close_matrix_dialog() return data def _close_matrix_dialog(self): if self.matrix_dialog: self.matrix_dialog.accept() self.matrix_dialog = None def close_matrix_dialog(self): self.close_matrix_dialog_signal.emit() def pin_dialog(self, msg, show_strength): self.clear_dialog() dialog = WindowModalDialog(self.top_level_window(), _('Enter PIN')) matrix = self.pin_matrix_widget_class(show_strength) vbox = QVBoxLayout() vbox.addWidget(QLabel(msg)) vbox.addWidget(matrix) vbox.addLayout(Buttons(CancelButton(dialog), OkButton(dialog))) dialog.setLayout(vbox) dialog.exec_() self.response = str(matrix.get_value()) self.done.set() def matrix_recovery_dialog(self, msg): if (not self.matrix_dialog): self.matrix_dialog = MatrixDialog(self.top_level_window()) self.matrix_dialog.get_matrix(msg) self.done.set() def passphrase_dialog(self, msg, confirm): parent = self.top_level_window() d = WindowModalDialog(parent, _('Enter Passphrase')) OK_button = OkButton(d, _('Enter Passphrase')) OnDevice_button = QPushButton(_('Enter Passphrase on Device')) new_pw = PasswordLineEdit() conf_pw = PasswordLineEdit() vbox = QVBoxLayout() label = QLabel((msg + '\n')) label.setWordWrap(True) grid = QGridLayout() grid.setSpacing(8) grid.setColumnMinimumWidth(0, 150) grid.setColumnMinimumWidth(1, 100) grid.setColumnStretch(1, 1) vbox.addWidget(label) grid.addWidget(QLabel(_('Passphrase:')), 0, 0) grid.addWidget(new_pw, 0, 1) if confirm: grid.addWidget(QLabel(_('Confirm Passphrase:')), 1, 0) grid.addWidget(conf_pw, 1, 1) vbox.addLayout(grid) def enable_OK(): if (not confirm): ok = True else: ok = (new_pw.text() == conf_pw.text()) OK_button.setEnabled(ok) new_pw.textChanged.connect(enable_OK) conf_pw.textChanged.connect(enable_OK) vbox.addWidget(OK_button) if self.passphrase_on_device: vbox.addWidget(OnDevice_button) d.setLayout(vbox) self.passphrase = None def ok_clicked(): self.passphrase = new_pw.text() def on_device_clicked(): self.passphrase = PASSPHRASE_ON_DEVICE OK_button.clicked.connect(ok_clicked) OnDevice_button.clicked.connect(on_device_clicked) OnDevice_button.clicked.connect(d.accept) d.exec_() self.done.set()
class IGANet(nn.Module): def __init__(self, depth, embed_dim, adj, drop_rate=0.1, length=27): super().__init__() drop_path_rate = 0.2 norm_layer = partial(nn.LayerNorm, eps=1e-06) dpr = [x.item() for x in torch.linspace(0, drop_path_rate, depth)] self.blocks = nn.ModuleList([Block(length, embed_dim, adj, drop=drop_rate, drop_path=dpr[i], norm_layer=norm_layer) for i in range(depth)]) self.norm = norm_layer(embed_dim) def forward(self, x): for blk in self.blocks: x = blk(x) x = self.norm(x) return x
class VideoLoader(object): def __init__(self, image_name_formatter, image_loader=None): self.image_name_formatter = image_name_formatter if (image_loader is None): self.image_loader = ImageLoaderPIL() else: self.image_loader = image_loader def __call__(self, video_path, frame_indices): video = [] for i in frame_indices: image_path = (video_path / self.image_name_formatter(i)) if image_path.exists(): video.append(self.image_loader(image_path)) return video
def _test_TestModuleNonBlockingIfc(cls): A = cls() A.elaborate() A.apply(GenDAGPass()) A.apply(OpenLoopCLPass()) A.sim_reset() rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert rdy print('- push 13!') A.push(13) assert A.pull.rdy() ret = A.pull() print('- pull!', ret) assert (ret == 413) assert (not A.pull.rdy()) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert (not rdy) rdy = A.push.rdy() print('- push_rdy?', rdy) assert rdy print('- push 33!') A.push(33) assert A.pull.rdy() ret = A.pull() print('- pull!', ret) assert (ret == 933) assert (not A.pull.rdy()) return A.sim_cycle_count()
def test_branch_name_with_period(project): branch_name = 'my.branch.name' branch = project.branches.create({'branch': branch_name, 'ref': 'main'}) assert (branch.name == branch_name) fetched_branch = project.branches.get(branch_name) assert (branch.name == fetched_branch.name) branch.delete()
def test_pytest_fixture_setup_and_post_finalizer_hook(pytester: Pytester) -> None: pytester.makeconftest("\n def pytest_fixture_setup(fixturedef, request):\n print('ROOT setup hook called for {0} from {1}'.format(fixturedef.argname, request.node.name))\n def pytest_fixture_post_finalizer(fixturedef, request):\n print('ROOT finalizer hook called for {0} from {1}'.format(fixturedef.argname, request.node.name))\n ") pytester.makepyfile(**{'tests/conftest.py': "\n def pytest_fixture_setup(fixturedef, request):\n print('TESTS setup hook called for {0} from {1}'.format(fixturedef.argname, request.node.name))\n def pytest_fixture_post_finalizer(fixturedef, request):\n print('TESTS finalizer hook called for {0} from {1}'.format(fixturedef.argname, request.node.name))\n ", 'tests/test_hooks.py': "\n import pytest\n\n ()\n def my_fixture():\n return 'some'\n\n def test_func(my_fixture):\n print('TEST test_func')\n assert my_fixture == 'some'\n "}) result = pytester.runpytest('-s') assert (result.ret == 0) result.stdout.fnmatch_lines(['*TESTS setup hook called for my_fixture from test_func*', '*ROOT setup hook called for my_fixture from test_func*', '*TEST test_func*', '*TESTS finalizer hook called for my_fixture from test_func*', '*ROOT finalizer hook called for my_fixture from test_func*'])
class QFlaskApplication(Singleton): version = '0.1' def init_app(self): self.flask_app = None self.init_flask_app() def _set_base_url(self, base_url): base_url = base_url.strip() if (not base_url.startswith('/')): base_url = ('/' + base_url) self.base_url = base_url def set_wsgi_app(self, app, base_url=None): if (base_url is None): base_url = self.base_url if (base_url != '/'): self.wsgi_app = DispatcherMiddleware(simple_404_app, {base_url: app}) else: self.wsgi_app = app def configure(self): cfg.CONF(sys.argv[1:], project=self.__class__.__name__, version=self.version, default_config_files=None) self._set_base_url(CONF.web.base_url) self.set_wsgi_app(self.flask_app) def init_flask_app(self, flask_args=None, flask_kwargs=None): flask_args = ([] if (flask_args is None) else flask_args) flask_kwargs = ({} if (flask_kwargs is None) else flask_kwargs) flask_args.insert(0, self.name) self.flask_app = Flask(*flask_args, **flask_kwargs) self.flask_app.debug = CONF.debug self.flask_app.config['PROPAGATE_EXCEPTIONS'] = True def register_blueprint(self, *args, **kwargs): self.flask_app.register_blueprint(*args, **kwargs) def name(self): return self.__class__.__name__